diff --git a/.github/workflows/build_retrodeck.yml b/.github/workflows/build_retrodeck.yml new file mode 100644 index 00000000..9998ae07 --- /dev/null +++ b/.github/workflows/build_retrodeck.yml @@ -0,0 +1,431 @@ +name: "Build RetroDECK" + +on: + push: + branches: + - main + - cooker* + - feat* + - branch/cooker* + paths: + - '.github/workflows/**' + - 'automation_tools/**' + - 'config/**' + - 'functions/**' + - 'rd-submodules/**' + - '*.sh' + - 'net.retrodeck.retrodeck.yml' + - 'net.retrodeck.retrodeck.metainfo.xml' + pull_request_target: + types: [opened, synchronize, reopened] + branches: + - main + - cooker* + - feat/* + pull_request: + types: [opened, synchronize, reopened] + branches: + - main + - cooker* + - feat/* + + workflow_dispatch: + +permissions: + contents: write + pull-requests: write + +jobs: + + # Build RetroDECK Job + Build_RetroDECK: + runs-on: retrodeck + outputs: + TAG: ${{ steps.version-tag.outputs.TAG }} + RELEASE_BODY: "${{ needs.Build_RetroDECK.outputs.RELEASE_BODY_FILE }} || No release body found" + MAKE_LATEST: ${{ steps.version-tag.outputs.MAKE_LATEST }} + + steps: + # Remove Stuck Mounts + - name: Remove stuck mounts + run: | + sudo umount -f /home/ubuntu/actions-runner/_work/RetroDECK/RetroDECK/.flatpak-builder/rofiles/* + sudo umount -f $HOME/actions-run/_work/RetroDECK/RetroDECK/.flatpak-builder/rofiles/* + continue-on-error: true + + # Clone Repository + - name: Clone RetroDECK repo + if: github.event_name != 'pull_request_target' + uses: actions/checkout@v4 + with: + submodules: true + + # Clone the target branch (eg. cooker) + - name: Clone Target Branch + if: github.event_name == 'pull_request_target' + uses: actions/checkout@v4 + with: + ref: ${{ github.event.pull_request.base.ref }} # Branch target + submodules: true + + # Because we're using pull_request_target, we need to merge the PR code + - name: Merge PR Code + if: github.event_name == 'pull_request_target' + run: | + git fetch origin pull/${{ github.event.pull_request.number }}/head:pr + git merge --no-ff pr || { + echo "Merge conflict detected. Please resolve conflicts manually."; + exit 1; + } + # In case of PR we merged the code so we want to check that is consistent + - name: Validate Merged Code + if: github.event_name == 'pull_request_target' + run: | + echo "Branch after merge:" + git branch + echo "Last commit:" + git log -1 --oneline + + # Install Dependencies + - name: Install dependencies + run: curl "https://raw.githubusercontent.com/RetroDECK/components-template/main/automation_tools/install_dependencies.sh" | bash + + # Generate Build ID for Cooker Branches + - name: Generate cooker build ID + if: github.ref != 'refs/heads/main' + run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/cooker_build_id.sh" + + # Getting branch name, this needs as PR should be managed in a different way + - name: Get Branch Name + run: | + if [[ "$GITHUB_EVENT_NAME" == "pull_request" || "$GITHUB_EVENT_NAME" == "pull_request_target" ]]; then + branch_name="$GITHUB_HEAD_REF" + else + branch_name="$GITHUB_REF_NAME" + fi + echo "Branch name: $branch_name" + echo "BRANCH_NAME=$branch_name" >> $GITHUB_ENV + + # Generates a version tag based on the event type (main branch, PR, or cooker) and sets it as output. + - name: Generate Version Tag + id: version-tag + run: | + # Source the version extractor script and fetch the manifest version + source automation_tools/version_extractor.sh + MANIFEST_VERSION="$(fetch_manifest_version)" + + # Ensure the manifest version was successfully extracted + if [[ -z "$MANIFEST_VERSION" ]]; then + echo "[ERROR] Failed to extract the manifest version." + exit 1 + fi + + # Determine the tag based on the GitHub event context + if [[ "$GITHUB_REF" == "refs/heads/main" ]]; then + # Main branch tag + TAG="$MANIFEST_VERSION" + MAKE_LATEST=true + elif [[ "$GITHUB_EVENT_NAME" == "pull_request" || "$GITHUB_EVENT_NAME" == "pull_request_target" ]]; then + # Pull request tag, sanitize the source branch + source_branch="${GITHUB_HEAD_REF//\//-}" + TAG="PR-$source_branch-${{ github.run_id }}" + MAKE_LATEST=false + else + # Other branches (cooker branches) + TAG="$MANIFEST_VERSION-${{ env.BUILD_ID }}" + MAKE_LATEST=true + fi + + echo "TAG=$TAG" >> $GITHUB_ENV + echo "MAKE_LATEST=$MAKE_LATEST" >> $GITHUB_ENV + + echo "TAG=$TAG" >> $GITHUB_OUTPUT + echo "MAKE_LATEST=$MAKE_LATEST" >> $GITHUB_OUTPUT + + # backing up manifest in case download fails and hashes must be recalculated + - name: Manifest backup + run: "cp ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak" + + - name: Run pre-build automation tasks + run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/manifest_placeholder_replacer.sh" + + - name: "Adding flatpak portal for automated updates (Cooker only)" + if: github.ref != 'refs/heads/main' + run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/cooker_flatpak_portal_add.sh" + + # Temporary disabled as the script is broken + # - name: "Updating release notes in metainfo" + # run: "automation_tools/metainfo_management.sh" + + - name: "[DEBUG] Outputting manifest" + run: cat net.retrodeck.retrodeck.yml + + # Get Commits Since Last Published Release (Cooker only) + - name: Get commits since last published release + id: get-commits + if: github.ref != 'refs/heads/main' + run: | + # Get the latest published release tag + LATEST_TAG=$(git describe --tags $(git rev-list --tags --max-count=1) 2>/dev/null || echo "") + + if [ -z "$LATEST_TAG" ]; then + echo "[INFO] No previous release found. Using all commits." + COMMITS=$(git log HEAD --pretty=format:"- %s") + else + echo "[INFO] Latest published release tag: $LATEST_TAG" + COMMITS=$(git log ${LATEST_TAG}..HEAD --pretty=format:"- %s") + fi + + # Debug: Print the commits list + echo "Commits since $LATEST_TAG:" + echo "$COMMITS" + + # Write the commits list to a file + echo "$COMMITS" > commits_list.txt + + # Set the commits list as an environment variable + echo "COMMITS_FILE=commits_list.txt" >> $GITHUB_ENV + + + # - name: Extract XML Description + # uses: Mudlet/xmlstarlet-action@master + # id: extract-description + # with: + # args: sel -t -v "/component/releases/release[1]/description//text()" ./net.retrodeck.retrodeck.metainfo.xml + + # Generate Release Body + - name: Generate release body text + id: generate-body + run: | + # Initialize the release body text + RELEASE_BODY_FILE="release_body.md" + echo "# Release Notes" > $RELEASE_BODY_FILE + echo "This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{ github.sha }}." >> $RELEASE_BODY_FILE + echo "On branch [${{ env.BRANCH_NAME }}](https://repo.retrodeck.net/RetroDECK/RetroDECK/src/branch/${{ env.BRANCH_NAME }})." >> $RELEASE_BODY_FILE + echo "## Commits since last release" >> $RELEASE_BODY_FILE + echo "" >> $RELEASE_BODY_FILE + + # Append commits from the file to the release body + if [ -f "${{ env.COMMITS_FILE }}" ]; then + echo "${{ env.COMMITS_FILE }}" >> $RELEASE_BODY_FILE + echo "" >> $RELEASE_BODY_FILE + else + echo "[ERROR] Commits file not found: ${{ env.COMMITS_FILE }}" + echo "[ERROR] Commits file not found" >> $RELEASE_BODY_FILE + fi + + # Debug: Print the release body so far + echo "[DEBUG] Current release body contents:" + cat $RELEASE_BODY_FILE + + # Process raw description (if needed) + #raw_description="${{ steps.extract-description.outputs.result }}" + + # Convert

tags to markdown headers using sed + # raw_description="${{ steps.extract-description.outputs.result }}" + markdown_description=$(echo "$raw_description" | sed -e 's|

|\n### |g' -e 's|

||g') + + # Convert
  • tags to bullet points and trim spaces + markdown_description=$(echo "$markdown_description" | sed -e 's|||g' -e 's|
  • |- |g' -e 's|
  • ||g' | awk '{$1=$1;print}') + + # Remove any remaining XML tags + markdown_description=$(echo "$markdown_description" | sed -e 's/<[^>]*>//g') + + # Debug: Print the markdown description + echo "Markdown Description:" + echo "$markdown_description" + + # Append markdown content to the release body file + echo "$markdown_description" >> $RELEASE_BODY_FILE + + # Output the file path to the environment and output variables + echo "RELEASE_BODY_FILE=$RELEASE_BODY_FILE" >> $GITHUB_ENV + echo "RELEASE_BODY_FILE=$RELEASE_BODY_FILE" >> $GITHUB_OUTPUT + + echo "[DEBUG] CHECKPOINT 8" + + - name: Generate a token for Rekku + id: generate-rekku-token + uses: actions/create-github-app-token@v1 + with: + app-id: ${{ vars.REKKU_APP_ID }} + private-key: ${{ secrets.REKKU_PRIVATE_KEY }} + repositories: "RetroDECK,Cooker" + owner: "RetroDECK" + + - name: "Build flatpak: download only" + id: flatpak-download + run: | + git config --global credential.helper store + echo "https://${{ steps.generate-rekku-token.outputs.token }}@github.com" > ~/.git-credentials + "${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh" + + # Sometimes flatpak download fails, in this case it tries a second time + - name: "Build flatpak: download only (retry)" + if: steps.flatpak-download.outcome == 'failure' + run: | + git config --global credential.helper store + echo "https://${{ steps.generate-rekku-token.outputs.token }}@github.com" > ~/.git-credentials + echo "Download failed, maybe some hash changed since the build start." + echo "Recalculating hashes and retrying download..." + rm -f "{GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml" + cp "${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak" "${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml" + "${GITHUB_WORKSPACE}/automation_tools/manifest_placeholder_replacer.sh" + "${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh" + + - name: Build flatpak + run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_only.sh" + + - name: Create Bundle + run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_bundle.sh" + + # Upload artifacts for other jobs + - name: Upload Build Artifacts + uses: actions/upload-artifact@v4 + with: + name: retrodeck-artifacts + include-hidden-files: true + path: | + RetroDECK*.flatpak + RetroDECK*.flatpak.sha + RetroDECK*Artifact.tar.gz + + GitHub-publish: + runs-on: ubuntu-latest + needs: Build_RetroDECK + env: + TAG: ${{ needs.Build_RetroDECK.outputs.TAG }} + RELEASE_BODY: "${{ needs.Build_RetroDECK.outputs.RELEASE_BODY_FILE }} || No release body found" + MAKE_LATEST: ${{ needs.Build_RetroDECK.outputs.MAKE_LATEST }} + steps: + + - name: Generate a token for Rekku + id: generate-rekku-token + uses: actions/create-github-app-token@v1 + with: + app-id: ${{ vars.REKKU_APP_ID }} + private-key: ${{ secrets.REKKU_PRIVATE_KEY }} + repositories: "RetroDECK,Cooker" + owner: "RetroDECK" + + - name: Download all workflow run artifacts + uses: actions/download-artifact@v4.1.8 + + # Determine if Target Repository is Main or not, in that case is a Cooker build + - name: Determine target repository + id: set-repo + run: | + if [[ "$GITHUB_REF" == "refs/heads/main" ]]; then + echo "REPO_NAME=RetroDECK" >> $GITHUB_ENV + else + echo "REPO_NAME=Cooker" >> $GITHUB_ENV + fi + + # Publish Release + - name: Publish release + uses: ncipollo/release-action@v1 + with: + tag: ${{ env.TAG }} + name: "RetroDECK ${{ env.TAG }}" + body: ${{ env.RELEASE_BODY }} + artifacts: "retrodeck-artifacts/*.flatpak,retrodeck-artifacts/*.flatpak.sha,retrodeck-artifacts/*Artifact.tar.gz" + allowUpdates: true + makeLatest: ${{ env.MAKE_LATEST }} + repo: ${{ env.REPO_NAME }} + token: ${{ steps.generate-rekku-token.outputs.token }} + + - name: Post PR comment with artifacts + if: github.event_name == 'pull_request_target' || github.event_name == 'pull_request' + uses: marocchino/sticky-pull-request-comment@v2 + with: + GITHUB_TOKEN: ${{ steps.generate-rekku-token.outputs.token }} + header: "RetroDECK Build Artifacts" + message: | + A build for this pull request has completed successfully. + Codenname: ${{ env.TAG }} + Build artifacts can be find [here]((https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}#artifact-retrodeck-artifacts)) and they include: + - RetroDECK Flatpak: RetroDECK.flatpak + - Flatpak file SHA256 checksum: RetroDECK.flatpak.sha + - Flatpak Artifact Bundle: RetroDECKArtifact.tar.gz, not useful for testing or end users + + # Rewrite Tag (for Main Branch Only) + - name: Rewrite Tag + if: github.ref == 'refs/heads/main' + run: | + git submodule deinit -f --all + git fetch --tags + if git rev-parse --verify "${{ env.TAG }}" >/dev/null 2>&1; then + git tag -d "${{ env.TAG }}" + git push --delete origin "${{ env.TAG }}" + fi + git tag "${{ env.TAG }}" + git push origin "${{ env.TAG }}" + env: + GITHUB_TOKEN: ${{ steps.generate-rekku-token.outputs.token }} + + # As backup we're even publishing the build on our own selfhosted Fogejo instance + # Forgejo Publish Job if main branch + # Forgejo-publish: + # runs-on: ubuntu-latest + # needs: Build_RetroDECK + # env: + # TAG: ${{ needs.Build_RetroDECK.outputs.TAG }} + # RELEASE_BODY: "${{ needs.Build_RetroDECK.outputs.RELEASE_BODY_FILE }} || No release body found" + # MAKE_LATEST: ${{ needs.Build_RetroDECK.outputs.MAKE_LATEST }} + # steps: + # + # - name: Download all workflow run artifacts + # uses: actions/download-artifact@v4.1.8 + # + # - name: Forgejo-publish + # if: github.ref == 'refs/heads/main' + # uses: RetroDECK/components-template/.github/workflows/fogejo_publish_release.yml@main + # with: + # release_body: "${{ needs.Build_RetroDECK.outputs.RELEASE_BODY_FILE }} || No release body found" + # artifacts: "retrodeck-artifacts/*.flatpak,retrodeck-artifacts/*.flatpak.sha,retrodeck-artifacts/*Artifact.tar.gz" + # tag: ${{ env.TAG }} + + + # Automated Tests + Automated_Tests: + runs-on: ubuntu-latest + needs: Build_RetroDECK + continue-on-error: true + + steps: + + # Clone Repository + - name: Clone RetroDECK repo + uses: actions/checkout@v4 + with: + submodules: true + + # Download RetroDECK Artifacts + - name: Download all workflow run artifacts + uses: actions/download-artifact@v4.1.8 + + # Install Dependencies + - name: Install dependencies + run: curl "https://raw.githubusercontent.com/RetroDECK/components-template/main/automation_tools/install_dependencies.sh" | bash + + # Install RetroDECK Flatpak + - name: Install RetroDECK Flatpak + continue-on-error: true + run: | + ls -lah retrodeck-artifacts + flatpak install --user --bundle --noninteractive -y "retrodeck-artifacts/RetroDECK"*".flatpak + + # Run Post Build Checks + - name: Run Post Build Checks + continue-on-error: true + run: /bin/bash ./automation_tools/post_build_check.sh + + # Search for Missing Libraries + - name: Search for Missing Libraries + continue-on-error: true + run: /bin/bash ./automation_tools/search_missing_libs.sh + + # Uninstall RetroDECK Flatpak - Not needed on a thorwaway ubuntu-latest + # - name: Uninstall RetroDECK Flatpak + # run: | + # flatpak remove --user --noninteractive -y net.retrodeck.retrodeck \ No newline at end of file diff --git a/.github/workflows/cooker-selfhosted.yml b/.github/workflows/cooker-selfhosted.yml deleted file mode 100644 index 37bf8bce..00000000 --- a/.github/workflows/cooker-selfhosted.yml +++ /dev/null @@ -1,240 +0,0 @@ -name: "Build cooker" - -on: - push: - branches: - - cooker* - - feat* - - branch/cooker* - paths: - - '.github/workflows/**' - - 'automation_tools/**' - - 'emu-configs/**' - - 'es-configs/**' - - 'functions/**' - - 'rd-submodules/**' - - '*.sh' - - 'net.retrodeck.retrodeck.yml' - - 'net.retrodeck.retrodeck.appdata.xml' - pull_request: - branches: - - cooker* - - # Italy (CET): 11:00 PM - # Japan (JST): 7:00 AM - # schedule: - # - cron: '0 22 * * *' - - workflow_dispatch: - -jobs: - - Building_RetroDECK: - runs-on: retrodeck - steps: - - # Circumventing this bug: https://github.com/flatpak/flatpak-builder/issues/317 - - name: Remove stuck mounts - run: sudo umount -f /home/ubuntu/retrodeck-runner/_work/RetroDECK/RetroDECK/.flatpak-builder/rofiles/* - continue-on-error: true - - - name: Clone RetroDECK repo - uses: actions/checkout@v3 - with: - submodules: 'true' - - - name: "Install dependencies" - run: "automation_tools/install_dependencies.sh" - - - name: Generate cooker build ID - run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/cooker_build_id.sh" - - - name: Get branch name - id: branch_name - run: echo "BRANCH_NAME=$(echo $GITHUB_REF | sed 's|refs/heads/||')" >> $GITHUB_ENV - - # if it's a feature branch it will not marked as "latest" cooker version - - name: "Set makeLatest (cooker only)" - run: | - if [[ "$BRANCH_NAME" == 'feat/'* || "$BRANCH_NAME" == 'refs/'* ]]; then - echo "MAKE_LATEST=false" >> $GITHUB_ENV - else - echo "MAKE_LATEST=true" >> $GITHUB_ENV - fi - - # if the branch is coming from a PR the tag should be manually built - - name: "Generate version tag" - run: | - source automation_tools/version_extractor.sh - MANIFEST_VERSION="$(fetch_manifest_version)" - echo "MANIFEST_VERSION=$MANIFEST_VERSION" >> $GITHUB_ENV - if [[ "$BRANCH_NAME" == 'refs/'* ]]; then - pr_number=$(echo ${{env.BRANCH_NAME}} | awk -F'/' '{print $3}') - source_branch=$(curl -s "https://api.github.com/repos/XargonWan/RetroDECK/pulls/$pr_number" | jq -r '.head.ref') - source_branch=${source_branch//\//-} - echo "[DEBUG] source branch is: $source_branch" - echo "TAG=PR-$pr_number-$source_branch-${{ env.buildid }}" >> $GITHUB_ENV - else - TAG="$MANIFEST_VERSION-${{ env.buildid }}" - echo "TAG=$TAG" >> $GITHUB_ENV - fi - echo "MANIFEST_VERSION: $MANIFEST_VERSION" - echo "Version TAG: $TAG" - - # backing up manifest in case download fails and hashes must be recalculated - - name: Manifest backup - run: "cp ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak" - - - name: Run pre-build automation tasks - run : "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/pre_build_automation.sh" - - - name: "Adding flatpak portal for automated updates (cooker only)" - run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/cooker_flatpak_portal_add.sh" - - - name: "Updating release notes in appdata" - run: "automation_tools/appdata_management.sh" - - - name: "[DEBUG] Outputting manifest" - run: cat net.retrodeck.retrodeck.yml - - - name: "Build flatpak: download only" - id: "flatpak-download" - run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh" - continue-on-error: true - - # Sometimes flatpak download fails, in this case it tries a second time - - name: "Build flatpak: download only (retry)" - if: steps.flatpak-download.outcome == 'failure' - run: | - echo "Download failed, maybe some hash changed since the build start." - echo "Recalculating hashes and retrying download..." - rm -f "{GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml" - cp "${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak" "${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml" - "${GITHUB_WORKSPACE}/automation_tools/pre_build_automation.sh" - "${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh" - - - name: Build flatpak - run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_only.sh" - - - name: Create Artifact for flathub - run: | - tar -czf ${GITHUB_WORKSPACE}/RetroDECK-Artifact-cooker.tar.gz -C ${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker . - hash=($(sha256sum ${GITHUB_WORKSPACE}/RetroDECK-Artifact-cooker.tar.gz)) - echo $hash > ${GITHUB_WORKSPACE}/RetroDECK-Artifact-cooker.sha - mv -f RetroDECK-Artifact-cooker.* ${{ secrets.ARTIFACT_REPO }} - continue-on-error: true - - - name: Create Bundle - run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_bundle.sh" - - - name: Set environment variable with current branch name - run: echo "GITHUB_REF_SLUG=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV - - - name: Get commits since last release - run: | - # Get the latest release tag - LATEST_TAG=$(git describe --tags --abbrev=0) - # Get all commits since the latest release tag - COMMITS=$(git log $LATEST_TAG..HEAD --pretty=format:"- %s") - # Set the output variable - echo "::set-output name=commits::$COMMITS" - id: commits - continue-on-error: true - - - name: Publish the flatpak in a new cooker release - uses: ncipollo/release-action@v1 - with: - tag: "${{env.TAG}}" - body: | - # Release Notes (Cooker) - This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}. - On branch [${{env.BRANCH_NAME}}](https://github.com/XargonWan/RetroDECK/tree/${{env.BRANCH_NAME}}). - - ## Commits since last release - ${{ steps.commits.outputs.commits }} - - For the full release note for this build please refer to the channel [#BETA-TESTING](https://discord.gg/WDc5C9YWMx) on our Discord server. - - Cooker channel is provided for the community to test fixes and explore new functionality. - Please DO NOT open issues or ask support on this build. - - artifacts: "RetroDECK-cooker.flatpak,RetroDECK-cooker.flatpak.sha,RetroDECK-Artifact.tar.gz" - allowUpdates: true - makeLatest: ${{env.MAKE_LATEST}} # if it's a feat branch is not considered the latest build - token: ${{ secrets.TRIGGER_BUILD_TOKEN }} - repo: Cooker - continue-on-error: true - - - name: Rewrite Tag - run: | - git submodule deinit -f --all - git fetch --tags - if git rev-parse --verify "${{ env.TAG }}" >/dev/null 2>&1; then # if the tag exists - git tag -d "${{ env.TAG }}" # remove it from local repo - git push --delete origin "${{ env.TAG }}" # and from remote - fi - git tag "${{ env.TAG }}" # Create the tag locally - git push origin "${{ env.TAG }}" # Push the new tag in the remote repo - - # In case it cannot publish the release at least it's providing the flatpak file for creating a manual release - - name: Upload RetroDECK-cooker.flatpak - uses: actions/upload-artifact@v3 - with: - name: retrodeck-flatpak - path: RetroDECK-cooker.flatpak - continue-on-error: true - - # - name: Upload RetroDECK-cooker.flatpak to Gitea Release - # run: | - # # Set variables for Gitea host, organization, repository, access token, and release details - # GITEA_HOST="repo.retrodeck.net" - # UPLOAD_HOST="upload.retrodeck.net" - # ORGANIZATION="RetroDECK" - # REPO="RetroDECK-cooker" - # GITEA_TOKEN="${{ secrets.GITEA_TRIGGER_BUILD_TOKEN }}" - # RELEASE_NAME="RetroDECK ${{env.TAG}}" - # TAG="${{env.TAG}}" - # RELEASE_BODY="# Release Notes (Cooker) - # This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}. - # On branch [${{env.BRANCH_NAME}}](https://repo.retrodeck.net/RetroDECK/RetroDECK/src/branch/${{env.BRANCH_NAME}}). - - # ## Commits since last release - # ${{ steps.commits.outputs.commits }} - - # For the full release note for this build please refer to the channel [#BETA-TESTING](https://discord.gg/WDc5C9YWMx) on our Discord server. - - # Cooker channel is provided for the community to test fixes and explore new functionality. - # Please DO NOT open issues or ask support on this build." - - # # Create a release using curl and capture the release ID - # release_response=$(curl -X POST \ - # -H "Authorization: token ${GITEA_TOKEN}" \ - # -H "Content-Type: application/json" \ - # -d "{\"tag_name\":\"$TAG\",\"name\":\"$RELEASE_NAME\",\"body\":\"$RELEASE_BODY\"}" \ - # "http://$GITEA_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases") - - # # Extract the release ID from the response - # release_id=$(echo $release_response | jq -r '.id') - - # # Upload artifacts - # curl -X POST \ - # -H "Authorization: token ${GITEA_TOKEN}" \ - # -H "X-GitHub-Token: ${{ secrets.UPLOAD_TOKEN }}" \ - # -H "Content-Type: multipart/form-data" \ - # -F "attachment=@RetroDECK-cooker.flatpak" \ - # "http://$UPLOAD_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases/$release_id/assets?name=RetroDECK-cooker.flatpak" - - # # Upload artifacts sha - # curl -X POST \ - # -H "Authorization: token ${GITEA_TOKEN}" \ - # -H "X-GitHub-Token: ${{ secrets.UPLOAD_TOKEN }}" \ - # -H "Content-Type: multipart/form-data" \ - # -F "attachment=@RetroDECK-cooker.flatpak.sha" \ - # "http://$UPLOAD_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases/$release_id/assets?name=RetroDECK-cooker.flatpak.sha" - - # curl -X POST \ - # -H "Authorization: token ${GITEA_TOKEN}" \ - # -H "X-GitHub-Token: ${{ secrets.UPLOAD_TOKEN }}" \ - # -H "Content-Type: multipart/form-data" \ - # -F "attachment=@RetroDECK-Artifact.tar.gz" \ - # "http://$UPLOAD_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases/$release_id/assets?name=RetroDECK-Artifact.tar.gz" diff --git a/.github/workflows/flathub_push_main.yml b/.github/workflows/flathub_push_main.yml index 2579194d..d3af4f7f 100644 --- a/.github/workflows/flathub_push_main.yml +++ b/.github/workflows/flathub_push_main.yml @@ -84,7 +84,7 @@ jobs: # curl -sL \ # -H "Accept: application/vnd.github+json" \ # -H "Authorization: Bearer ${{ secrets.TRIGGER_BUILD_TOKEN }}" \ - # https://api.github.com/repos/XargonWan/RetroDECK-cooker/releases \ + # https://api.github.com/repos/RetroDECK/Cooker/releases \ # | jq .[0].tag_name \ # | tr -d \" \ # ) diff --git a/.github/workflows/main-selfhosted.yml b/.github/workflows/main-selfhosted.yml deleted file mode 100644 index 5b0ddc4d..00000000 --- a/.github/workflows/main-selfhosted.yml +++ /dev/null @@ -1,191 +0,0 @@ -name: "Build main" - -on: - push: - branches: - - main - paths: - - '.github/workflows/**' - - 'automation_tools/**' - - 'emu-configs/**' - - 'es-configs/**' - - 'functions/**' - - 'rd-submodules/**' - - '*.sh' - - 'net.retrodeck.retrodeck.yml' - - 'net.retrodeck.retrodeck.appdata.xml' - pull_request: - branches: - - main - - workflow_dispatch: - - -jobs: - - Building_RetroDECK: - runs-on: retrodeck - steps: - - # Circumventing this bug: https://github.com/flatpak/flatpak-builder/issues/317 - - name: Remove stuck mounts - run: sudo umount -f /home/ubuntu/retrodeck-runner/_work/RetroDECK/RetroDECK/.flatpak-builder/rofiles/* - continue-on-error: true - - - name: Clone RetroDECK repo - uses: actions/checkout@v3 - with: - submodules: 'true' - - - name: "Install dependencies" - run: "automation_tools/install_dependencies.sh" - - # backing up manifest in case download fails and hashes must be recalculated - - name: Manifest backup - run: "cp ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak" - - - name: Run pre-build automation tasks - run : "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/pre_build_automation.sh" - - - name: Read manifest content - id: read_manifest - run: echo "::set-output name=file_content::$(cat net.retrodeck.retrodeck.yml)" - - # - name: "Updating release notes in appdata" - # run: "automation_tools/appdata_management.sh" - - - name: Check versions (main only) - id: check_version_string - run: "automation_tools/main_version_checker.sh" - - - name: "[DEBUG] Outputting manifest" - run: cat net.retrodeck.retrodeck.yml - - - name: "Build flatpak: download only" - id: "flatpak-download" - run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh" - continue-on-error: true - - # Sometimes flatpak download fails, in this case it tries a second time - - name: "Build flatpak: download only (retry)" - if: steps.flatpak-download.outcome == 'failure' - run: | - echo "Download failed, maybe some hash changed since the build start." - echo "Recalculating hashes and retrying download..." - rm -f "{GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml" - cp "${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak" "${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml" - "${GITHUB_WORKSPACE}/automation_tools/pre_build_automation.sh" - "${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh" - - - name: Build flatpak - run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_only.sh" - - - name: Create Artifact for flathub - run: | - tar -czf ${GITHUB_WORKSPACE}/RetroDECK-Artifact.tar.gz -C ${GITHUB_WORKSPACE}/retrodeck-flatpak-main . - hash=($(sha256sum ${GITHUB_WORKSPACE}/RetroDECK-Artifact.tar.gz)) - echo $hash > ${GITHUB_WORKSPACE}/RetroDECK-Artifact.sha - mv -f RetroDECK-Artifact.* ${{ secrets.ARTIFACT_REPO }} - - - name: Create Bundle - run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_bundle.sh" - - - name: Getting version info - id: version - run: | - appdata="https://raw.githubusercontent.com/XargonWan/RetroDECK/main/net.retrodeck.retrodeck.appdata.xml" - REL_VER=$(curl -s $appdata | xmlstarlet sel -t -v "//release/@version" | head -1) - DES="$(curl -s $appdata | xmlstarlet sel -t -m "//release[1]" -v "description" -n | sed '1,2d;$d;s/^ */- /;/^- $/d')" - echo "REL_VER=$REL_VER" >> $GITHUB_ENV - echo -e "# Release Notes\n" >> "body.md" - echo "$DES" >> "body.md" - - - name: Publish the flatpak in a new release - uses: ncipollo/release-action@v1 - env: - REL_VER: ${{ env.REL_VER }} - with: - tag: ${{ env.REL_VER }} - name: "RetroDECK v${{ env.REL_VER }}" - bodyFile: "body.md" - artifacts: "RetroDECK.flatpak,RetroDECK.flatpak.sha,RetroDECK-Artifact.tar.gz" - allowUpdates: true - makeLatest: true - token: ${{ secrets.TRIGGER_BUILD_TOKEN }} - repo: RetroDECK - continue-on-error: true - - - name: Rewrite Tag - run: | - git submodule deinit -f --all - git fetch --tags - if git rev-parse --verify "${{ env.REL_VER }}" >/dev/null 2>&1; then # if the tag exists - git tag -d "${{ env.REL_VER }}" # remove it from local repo - git push --delete origin "${{ env.REL_VER }}" # and from remote - fi - git tag "${{ env.REL_VER }}" # Create the tag locally - git push origin "${{ env.REL_VER }}" # Push the new tag in the remote repo - - # In case it cannot publish the release at least it's providing the flatpak file for creating a manual release - - name: Upload RetroDECK.flatpak - uses: actions/upload-artifact@v3 - with: - name: retrodeck-flatpak - path: RetroDECK.flatpak - continue-on-error: true - - - name: Publish release on Gitea - run: | - # Set variables for Gitea host, organization, repository, access token, and release details - GITEA_HOST="repo.retrodeck.net" - UPLOAD_HOST="upload.retrodeck.net" - ORGANIZATION="RetroDECK" - REPO="RetroDECK" - GITEA_TOKEN="${{ secrets.GITEA_TRIGGER_BUILD_TOKEN }}" - RELEASE_NAME="RetroDECK v${{ env.REL_VER }}" - TAG="${{ env.REL_VER }}" - - payload=$(jq -cn \ - --arg tag_name "$TAG" \ - --arg name "$RELEASE_NAME" \ - --arg body "$(cat body.md)" \ - '{$tag_name, $name, $body}' - ) - - # Create a release using curl and capture the release ID - release_response=$(curl -X POST \ - -H "Authorization: token ${GITEA_TOKEN}" \ - -H "Content-Type: application/json" \ - -d "$payload" \ - "http://$GITEA_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases" - ) - - # Extract the release ID from the response - release_id=$(echo $release_response | jq -r '.id') - - # Upload artifacts - curl -X POST \ - -H "Authorization: token ${GITEA_TOKEN}" \ - -H "X-GitHub-Token: ${{ secrets.UPLOAD_TOKEN }}" \ - -H "Content-Type: multipart/form-data" \ - -F "attachment=@RetroDECK.flatpak" \ - "http://$UPLOAD_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases/$release_id/assets?name=RetroDECK-cooker.flatpak" - - curl -X POST \ - -H "Authorization: token ${GITEA_TOKEN}" \ - -H "X-GitHub-Token: ${{ secrets.UPLOAD_TOKEN }}" \ - -H "Content-Type: multipart/form-data" \ - -F "attachment=@RetroDECK-Artifact.tar.gz" \ - "http://$UPLOAD_HOST/api/v1/repos/$ORGANIZATION/$REPO/releases/$release_id/assets?name=RetroDECK-Artifact.tar.gz" - continue-on-error: true # this will be in place until we reate an artifacts website that bypasses cloudflare limit - - - name: Upload RetroDECK.flatpak.sha to Gitea Release - run: | - curl -X POST \ - -H "Authorization: token ${GITEA_TOKEN}" \ - -H "X-GitHub-Token: ${{ secrets.UPLOAD_TOKEN }}" \ - -F "file=@RetroDECK.flatpak.sha" \ - "https://$UPLOAD_HOST/RetroDECK/RetroDECK/releases/${{ env.REL_VER }}/assets?name=RetroDECK.flatpak.sha" - env: - GITEA_TOKEN: ${{ secrets.GITEA_TRIGGER_BUILD_TOKEN }} - continue-on-error: true # this will be in place until we reate an artifacts website that bypasses cloudflare limit diff --git a/.gitignore b/.gitignore index 393e53ca..ddd46a89 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,16 @@ retrodeck-repo buildid *.bak incconfigs/ +*.flatpak +*.flatpak.sha +net.retrodeck.retrodeck.cached.yml +placeholders.cache +RetroDECK*Artifact.tar.gz + +# Components artifacts # +############################ +*.AppImage +ruffle-*.tar.gz # Python # ########## diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index 6bcd59f5..00000000 --- a/.gitmodules +++ /dev/null @@ -1,9 +0,0 @@ -[submodule "rd-submodules/shared-modules"] - path = rd-submodules/shared-modules - url = https://github.com/flathub/shared-modules.git -[submodule "rd-submodules/retroarch"] - path = rd-submodules/retroarch - url = https://github.com/flathub/org.libretro.RetroArch.git -[submodule "rd-submodules/ryujinx"] - path = rd-submodules/ryujinx - url = https://github.com/flathub/org.ryujinx.Ryujinx diff --git a/README.md b/README.md index 0f646ebc..11888137 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@

    - RetroDECK logo + RetroDECK logo

    -screenshot -screenshot +screenshot +screenshot

    Instead of having several different emulators, engines and frontends on your Linux/SteamOS system you only need one flatpak: RetroDECK. @@ -12,7 +12,7 @@ Instead of having several different emulators, engines and frontends on your Lin ![Flathub](https://img.shields.io/flathub/downloads/net.retrodeck.retrodeck) ![Flathub](https://img.shields.io/flathub/v/net.retrodeck.retrodeck) ![Discord](https://img.shields.io/discord/951662718102962256?label=discord) -![GitHub](https://img.shields.io/github/license/XargonWan/RetroDECK) +![GitHub](https://img.shields.io/github/license/RetroDECK/RetroDECK) [![Documentation Status](https://readthedocs.org/projects/retrodeck/badge/?version=latest)](https://retrodeck.readthedocs.io/en/latest/?badge=latest) # What is RetroDECK? @@ -38,11 +38,50 @@ For more information read here: [Supported Systems](https://retrodeck.readthedocs.io/en/latest/wiki_general/supported-devices/) -## Is RetroDECK still Beta? +## What is RetroDECK? +RetroDECK is a [EmulationStation Desktop Edition](https://es-de.org) (ES-DE) powered Linux [Flatpak application](https://flathub.org/apps/net.retrodeck.retrodeck) that thanks to its `RetroDECK Framework` it builds-in and manage a variety of emulators and other software that allows you to play your favorite retro (and even not-so-retro) games in one complete package. -Yes, here you can read more about the beta period and our visions for a full release on the wiki: +### So what does that mean? +It means that RetroDECK provides all the emulators, systems and a frontend. RetroDECK configures them for you and puts them into one application you can download from Flathub. -[RetroDECK: Beta period](https://retrodeck.readthedocs.io/en/latest/wiki_general/beta-period/) +By being one application RetroDECK can put all important files in one location for all the emulators, instead of having them spread out over your entire system and even add features on top to orchestrate them seamlessly. + + +### The RetroDECK Framework +As previously mentioned, RetroDECK also adds the `RetroDECK Framework` on top of the emulators and ES-DE interface which allows deeper integrations between emulators and easier exposure to a variety of features that you otherwise need to set on a per emulator basis to create a uniformity between them. + +The `RetroDECK Configurator` is a `Utility` that exposes some parts of the `RetroDECK Framework` to the RetroDECK users. + +**What can the RetroDECK Framework and by extent the RetroDECK Configurator do?** + +It can help with: + +- Compressing games +- Easier `Texture Pack` and `Mod` management +- File management +- Tools for troubleshooting (BIOS Checker, Multi-File Structure Checker, Partial or full reset of functions) +- Auto installing some free BIOSes +- Install prebuilt Steam Input profiles for devices like the Steam Deck and external controllers +- Easier management of `mods`, `roms`, `texture_packs`, `scraped media`, `screenshots`, `saves / states` `gamelists` and more +- Give access to global presets that can be activated to configure things over many emulators in one go like: `RetroAchievements` + `Borders` `Widescreen Mode` `Swaping A/B X/Y for Nintendo Games` + +For our long term vision you can check out the following wiki page: +[RetroDECK: Visions and Goals](https://retrodeck.readthedocs.io/en/latest/wiki_about/visions-and-goals/) + +### How to get support? +Use the supports channels on [Discord](https://discord.gg/WDc5C9YWMx) `🤝-community-support` and `🆘-support`. +### The RetroDECK community: +[Website](https://retrodeck.net)
    +[Wiki](https://github.com/XargonWan/RetroDECK/wiki)
    +[Discord](https://discord.gg/WDc5C9YWMx)
    +[Lemmy](https://lemmy.zip/c/retrodeck)
    +[Subreddit](https://www.reddit.com/r/retrodeck) + +### Is RetroDECK in Beta? +Yes, here you can read more about the beta period: + +[RetroDECK: Beta period](https://retrodeck.readthedocs.io/en/latest/wiki_about/what-is-retrodeck/#retrodeck-is-currently-in-in-beta) ## How to get support and report issues? @@ -69,15 +108,26 @@ Yes, here you can read more about the beta period and our visions for a full rel Yes, off course! Read up here: -[How-to: Contribute to RetroDECK](https://retrodeck.readthedocs.io/en/latest/wiki_community/contibute-rd/) +[How to: Contribute to RetroDECK](https://retrodeck.readthedocs.io/en/latest/wiki_community/contibute-rd/) ## Our repositories: | Name | Description | |-------------------------------------------------------------|-----------------------------------------------------------| -| [RetroDECK](https://github.com/XargonWan/RetroDECK) | This one, our main repo where the core of the project is | -| [RetroDECK-cooker](https://github.com/XargonWan/RetroDECK-cooker) | Where we publish our test build, no code is hosted here | -| [RetroDECK-Wiki](https://github.com/XargonWan/RetroDECK-Wiki) | Where our wiki source code is | -| [RetroDECK-website](https://github.com/XargonWan/RetroDECK-website) | Where our website source code is | +| [RetroDECK](https://github.com/RetroDECK/RetroDECK) | This one, our main repo where the core of the project is | +| [Cooker](https://github.com/RetroDECK/Cooker) | Where we publish our test build, no code is hosted here | +| [RetroDECK/Wiki](https://github.com/RetroDECK/Wiki) | Where our wiki source code is | +| [RetroDECK-website](https://github.com/RetroDECK/RetroDECK-website) | Where our website source code is | | [RetroDECK on Flathub](https://github.com/flathub/net.retrodeck.retrodeck) | Our little space in Flathub's organization | | [RetroDECK-MAME](https://github.com/XargonWan/RetroDECK-MAME) | MAME is big to build, so it's pre-built here and then imported in the build | | [RetroDECK-ES-DE](https://github.com/XargonWan/RetroDECK-ES-DE) | This is where we store our patched fork of ES-DE | + + +# The RetroDECK Wiki + +Please check out the [Wiki](https://github.com/XargonWan/RetroDECK/wiki) for even more information. + +## The FAQ +The RetroDECK [FAQ](https://github.com/XargonWan/RetroDECK/wiki/FAQs%3A-Frequently-asked-questions) on the wiki has a vast variety of questions and answers. + +# How to get support? +Use the supports channels on [Discord](https://discord.gg/WDc5C9YWMx). diff --git a/automation_tools/automation_task_list.cfg b/automation_tools/automation_task_list.cfg index 6c6889f1..3b04fe01 100644 --- a/automation_tools/automation_task_list.cfg +++ b/automation_tools/automation_task_list.cfg @@ -1,15 +1,30 @@ # The proper format for this file is # ACTION^PLACEHOLDERTEXT^URL^REPO(Optional) # hash^DOOMSHAPLACEHOLDER^https://buildbot.libretro.com/assets/cores/DOOM/Doom%20%28Shareware%29.zip -#hash^DUCKSTATIONSHAPLACEHOLDER^https://github.com/stenzek/duckstation/releases/download/preview/DuckStation-x64.AppImage +# Please leave some newlines in the end of this file or it will break + +latestcommit^UNIVERSALDYNAMICINPUTCOMMITPLACEHOLDER^https://github.com/Venomalia/UniversalDynamicInput^main +outside_file^VERSIONPLACEHOLDER^${GITHUB_WORKSPACE}/buildid +# branch^THISBRANCH +# THISREPO^THISREPO + +#hash^RANIGHTLYSHAPLACEHOLDER^https://buildbot.libretro.com/nightly/linux/x86_64/RetroArch.7z hash^SAMEDUCKSHAPLACEHOLDER^https://buildbot.libretro.com/nightly/linux/x86_64/latest/sameduck_libretro.so.zip hash^PPSSPPBIOSHASHPLACEHOLDER^https://github.com/hrydgard/ppsspp/archive/refs/heads/master.zip hash^MSXBIOSHASHPLACEHOLDER^http://bluemsx.msxblue.com/rel_download/blueMSXv282full.zip hash^XEMUHDDHASHPLACEHOLDER^https://github.com/mborgerson/xemu-hdd-image/releases/latest/download/xbox_hdd.qcow2.zip hash^VITA3KSHAPLACEHOLDER^https://github.com/Vita3K/Vita3K/releases/download/continuous/ubuntu-latest.zip hash^RANIGHTLYCORESPLACEHOLDER^https://buildbot.libretro.com/nightly/linux/x86_64/RetroArch_cores.7z -hash^RETRODECKMAMEPLACEHOLDER^"https://github.com/RetroDECK/MAME/releases/download/$(curl -s https://api.github.com/repos/RetroDECK/MAME/releases/latest | grep -oP '"tag_name": "\K(.*?)(?=")')/RetroDECK-MAME-Artifact.tar.gz" -url^RETRODECKMAMEURLPLACEHOLDER^"https://github.com/RetroDECK/MAME/releases/download/$(curl -s https://api.github.com/repos/RetroDECK/MAME/releases/latest | grep -oP '"tag_name": "\K(.*?)(?=")')/RetroDECK-MAME-Artifact.tar.gz" -latestcommit^UNIVERSALDYNAMICINPUTCOMMITPLACEHOLDER^https://github.com/Venomalia/UniversalDynamicInput^main -outside_file^VERSIONPLACEHOLDER^${GITHUB_WORKSPACE}/buildid -branch^THISBRANCH + +hash^RETRODECKESDELATEST^https://github.com/RetroDECK/ES-DE/releases/latest/download/RetroDECK-ES-DE-Artifact.tar.gz +hash^RETRODECKPPSSPPLATEST^https://github.com/RetroDECK/org.ppsspp.PPSSPP/releases/latest/download/RetroDECK-Artifact.tar.gz +hash^RETRODECKDOLPHINLATEST^https://github.com/RetroDECK/org.DolphinEmu.dolphin-emu/releases/latest/download/RetroDECK-Artifact.tar.gz +hash^RETRODECKPRIMEHACKLATEST^https://github.com/RetroDECK/io.github.shiiion.primehack/releases/latest/download/RetroDECK-primehack-Artifact.tar.gz +hash^RETRODECKMELONDSLATEST^https://github.com/RetroDECK/net.kuribo64.melonDS/releases/latest/download/RetroDECK-melonds-Artifact.tar.gz +hash^RETRODECKSOLARUSLATEST^https://github.com/RetroDECK/org.solarus_games.solarus.Launcher/releases/latest/download/RetroDECK-solarus-Artifact.tar.gz +hash^RETRODECKGZDOOMLATEST^https://github.com/RetroDECK/org.zdoom.GZDoom/releases/latest/download/RetroDECK-Artifact.tar.gz +hash^RETRODECKMAMELATEST^https://github.com/RetroDECK/org.mamedev.MAME/releases/latest/download/RetroDECK-Artifact.tar.gz +hash^PORTMASTERLATESTSHA^https://github.com/PortsMaster/PortMaster-GUI/releases/latest/download/retrodeck.portmaster.zip +hash^RACITRAPLACEHOLDER^https://buildbot.libretro.com/nightly/linux/x86_64/latest/citra_libretro.so.zip +hash^RETRODECKRPCS3LATEST^https://github.com/RetroDECK/net.rpcs3.RPCS3/releases/latest/download/RetroDECK-Artifact.tar.gz +hash^RETRODECKLATESTVITA3KSHA^https://github.com/RetroDECK/Vita3K-bin/releases/latest/download/ubuntu-latest.zip diff --git a/automation_tools/codename_wordlist.txt b/automation_tools/codename_wordlist.txt index 6faa556b..39602aa6 100644 --- a/automation_tools/codename_wordlist.txt +++ b/automation_tools/codename_wordlist.txt @@ -1,3319 +1,428 @@ -aback -abase -abate -abaya -abbey -abbot -abets -abhor -abide -abode -abort -about -above -abuse -abuts -abyss -ached -aches -acids -acing -ackee -acorn -acres -acrid -acted -actin -actor -acute -adage -adapt -added -adder -addle -adept -adieu -adios -adits -adman -admin -admit -adobe -adobo -adopt -adore -adorn -adult -adzes -aegis -aeons -aerie -affix -afire -afoot -afore -after -again -agape -agate -agave -agent -aggro -agile -aging -aglow -agony -agora -agree -ahead -ahold -aided -aider -aides -ailed -aimed -aimer -aioli -aired -aisle -alarm -album -alder -aleph -alert -algae -algal -alias -alibi +advance +aesthetic alien -align -alike -alive -alkyd -alkyl -allay -alley -allot -allow -alloy -allyl -aloes -aloft -aloha -alone -along -aloof -aloud -alpha -altar -alter -altos -alums -amass -amaze -amber -ambit -amble -ambos -amend -amide -amine -amino -amiss -amity -amnio -among -amour -amped -ample -amply -amuse -ancho -angel -anger -angle -angry -angst -anima -anime -anion -anise -ankle -annas -annex -annoy -annul -anode -anole -antic -antis -antsy -anvil -aorta -apace -apart -aphid -apnea -apple -apply -apron -apses -apter -aptly -aquas -arbor -ardor -areal -areas -areca -arena -argon -argot -argue -argus -arias -arils -arise -armed +abduction +amateratsu +amazing +amiga +ann +apposai +arcade armor -aroma -arose -array -arrow -arses -arson -artsy -asana -ascot -ashen -ashes -aside -asked -asker -askew -aspen -aspic -assay -asses -asset -aster -astir -asura -atlas -atman -atoll -atoms -atone -atopy -attic -audio -audit -auger -aught -augur -aunts -aunty -aural -auras -autos -auxin -avail -avers -avert -avian -avoid -avows -await -awake -award -aware -awash -awful -awoke -axels -axial -axils -axing -axiom -axion -axles -axons -azide -azole -azure -babel -babes -babka -backs -bacon -baddy -badge -badly -bagel -baggy -bails -bairn -baits -baize -baked -baker -bakes -baldy -baled -baler -bales -balks -balky -balls -balms -balmy -balsa -banal -bands -bandy -banes -bangs -banjo -banks -barbs -bards -bared -barer -bares -barge -barks -barmy -barns -baron -barre -basal -based -baser -bases -basic -basil -basin -basis -basks -basso -bassy -baste -batch -bated -bathe -baths -batik -baton -batts -batty -bawdy -bawls -bayed -bayou -beach -beads -beady -beaks -beams -beamy -beans -beard -bears -beast -beats -beaus -beaut -beaux -bebop -becks -beech -beefs -beefy -beeps -beers -beery -beets -befit -began -beget -begin -begun -beige -being -belay -belch -belie -belle -bells -belly -below -belts -bench -bends -bendy -bento -bents -beret -bergs -berms -berry -berth -beryl -beset -bests -betas -betel -betta -bevel -bezel -bhaji -bible -bicep -biddy -bided -bides -bidet -bight -bigot -bijou -biked -biker -bikes -biles -bilge -bills -billy -bimbo -bindi -binds -binge -bingo -biome -biota -bipod -birch -birds -birth -bison -bitch -biter -bites -bitsy -bitty -black -blade -blame -bland -blank -blare -blase -blast -blaze -bleak -bleat -blebs -bleed -bleep -blend -bless -blimp -blind -bling -blini -blink -blips -bliss -blitz -bloat -blobs +atari +ataru +attendant +autobot +axe +babality +back +ball +baozi +barbarian +bat +better +blizzaga +blizzara block -blocs -blogs -bloke -blond -blood -bloom -bloop -blots -blown -blows -blued -blues -bluey -bluff -blunt -blurb -blurs -blurt -blush -board -boars -boast -boats -bobby -bocce -boche -boded -bodes -boffo -bogey -boggy -bogie -bogus -boils -bolas -boles -bolls -bolts -bolus -bombe -bombs -bonds -boned -boner -bones -boney -bongo -bongs -bonks -bonny -bonus -boobs -booby -booed -books -booms -boomy -boons -boors -boost -booth -boots -booty -booze -boozy -boppy -borax -bored -borer -bores -boric -borne -boron -bosom -boson -bossy -bosun -botch -bough -boule -bound -bouts -bowed -bowel -bower -bowls -boxed -boxer -boxes -boyar -boyos -bozos -brace -bract -brads -brags -braid -brain -brake -brand -brans -brash -brass -brats -brave -bravo -brawl -brawn -brays -braze -bread -break -bream -breed -brews -briar -bribe -brick -bride -brief -brier -brigs -brims -brine -bring -brink -briny -brisk -brits -broad -broch -broil -broke -brome -bronc -brood -brook -broom -broth +blue +bomb +bomber +bot +bow +bowser +boy +broken brown -brows -bruin -bruit -brunt brush -brute -bubba -bucks -buddy -budge -buffs -buggy -bugle -build -built -bulbs -bulge -bulks -bulky -bulla -bulls -bully -bumps -bumpy -bunch -bunds -bundt -bunks -bunny -bunts -buoys -burbs -burgs -burka -burly -burns -burnt -burps -burqa -burro -burrs -bursa -burst -bused -buses -bushy -busts -busty -butch -butte -butts -buxom -buyer -buzzy -bylaw -byres -bytes -byway -cabal -cabby -caber -cabin -cable -cacao -cache -cacti -caddy -cadet -cadre -cafes -caged -cages -cagey -cairn -caked -cakes -cakey -calfs -calif -calla -calls -calms -calve -calyx -camel -cameo -campo -camps -campy -canal -candy -caned -canes -canid -canna -canny -canoe -canon -canto -caped -caper -capes -capon -capos -caput -carat -carbo -carbs -cards -cared -carer -cares -cargo -carob -carol -carom -carps -carry -carte -carts -carve -cased -cases -casks -caste -casts -catch -cater -catty -caulk -cause -caved -caver -caves -cavil -cease -cecal -cecum -cedar -ceded -cedes -ceili -celeb -cello -cells -celts -cents -chads -chafe -chaff -chain -chair -chalk -champ -chana -chant -chaos -chaps -chard -charm -chars -chart -chase -chasm -chats -cheap +bulma +bumblebee +busters +cadillac +cage +call +capsule +captain +comeback +capumon +card +cart +cartdrige +cassette +cast +cdrom +cha +chan cheat -check -cheek -cheep -cheer -chefs -chemo -chert -chess -chest -chews -chewy -chica -chick -chico -chide -chief -child -chile -chili -chill -chime -chimp -china -chine -ching -chino -chins -chips -chirp -chits -chive -chock -choir -choke -chomp -chops -chord -chore -chose -chows -chubs -chuck -chuff -chugs -chump -chums -chunk -churn -chute -cider -cigar -cinch -circa -cisco -cited -cites -civet -civic -civil -civvy -clack -clade -claim -clamp -clams -clang -clank -clans -claps -clash -clasp -class -clave -claws -clays -clean -clear -cleat -clefs -cleft -clerk -click -cliff -climb -clime -cline -cling -clink -clips -cloak -clock -clods -clogs -clomp -clone -close -cloth -clots -cloud -clout -clove -clown -clubs -cluck -clued -clues -clump -clung -clunk -coach -coals -coast -coati -coats -cobia -cobra -cocci -cocks -cocky -cocoa -codas -codec -coded -coder -codes -codex -codon -coeds -cohos -coifs -coils -coins -cokes -colas -colds -coles -colic -colin -colon +chichi +chie +city +cleric +code +coin +cola +cold color -colts -comas -combo -combs -comer -comes -comet -comfy -comic -comma -commo -compo -comps -comte -conch -condo -coned -cones -conga -congo -conic -conks -cooed -cooks -cools -coops -coopt -coped -copes -copra -copse -coral -cords -cored -corer -cores -corgi -corks -corky -corms -corns -cornu -corny -corps -costs -cotta -couch -cough -could -count -coupe -coups -court -coven -cover -coves -covet -covey -cowed -cower -cowls -coyly -crabs -crack -craft -crags -cramp -crams -crane -crank -crape -craps -crash -crass -crate -crave -crawl -craws -craze +commodore +configurator +console +controller crazy -creak -cream -credo -creed -creek -creel -creep -creme -crepe -crept -cress -crest -crews -cribs -crick -cried -crier -cries -crime -crimp -crisp -crits -croak -crock -crocs -croft -crone -crony -crook -croon -crops -cross -croup -crowd -crown -crows -crude -cruel -cruet -crumb -cruse -crush -crust -crypt -cubby -cubed -cubes -cubic -cubit -cuddy -cuffs -culls -culpa -cults -cumin -cupid -cuppa -curbs -curds -cured -cures -curia -curio -curls -curly -curry -curse -curve -curvy -cushy -cusps -cuter -cutie -cutis -cutup -cycad -cycle -cyclo -cynic -cysts -czars -dacha -daddy -dados -daffy -daily -dairy +critical +crt +culo +curaga +curara +cure daisy -dales -dames -damns -damps dance -dandy -dared -dares -darks -darns -darts -dashi -dated -dater -dates -datum -daubs -daunt -davit -dawns -dazed -deals -dealt -deans -dears -deary -death -debit -debts -debug -debut -decaf -decal -decay -decks -decor -decoy -decry -deeds -deems -deeps -deers -defer -deify -deign -deism -deist -deity -dekes -delay -delft -delis -dells -delta -delve -demon -demos -demur -denim -dense -dents -depot -depth -derby -desks -deter -detox -deuce -devil -dewar -dhikr -dhows -dials -diary -diced -dices -dicey -dicky -dicta -diets -digit -diked -dikes -dills -dilly -dimer -dimes -dimly -dinar -dined -diner -dines -dingo -dings -dingy -dinks -dinky -dinos -diode -dippy -direr -dirge -dirty -disco -discs -dishy -disks -ditch -ditsy -ditto -ditty -ditzy -divan -divas -dived -diver -dives -divot -divvy -dizzy -docks -dodge -dodgy -dodos -doers -doffs -doges -doggy -dogma -doing -doled -doles -dolls -dolly -dolor -dolts -domed -domes -donee -dongs -donna -donor -donut -dooms -doomy -doors -doozy -doped -dopes -dopey -dorks -dorky -dorms -dosas -dosed -doses -doted -dotes -dotty -doubt -dough -doula -douse -doves -dowdy -dowel -dower -downs -downy -dowry -dowse -doyen -dozed -dozen -dozer -dozes -drabs -draft -drags -drain -drake -drama -drams -drank -drape -drawl -drawn -draws -drays -dread +data +decepticon +deck +delorean +desktop +dice +digi +digital +dinosaur +disc +doctor +dos +dot +dragon dream -dreck -dregs -dress -dribs -dried -drier -dries -drift -drill -drily -drink -drips drive -droid -droll -drone -drool -droop -drops -dross -drove -drown -drugs -druid -drums -drunk -drupe -dryad -dryer -dryly -duals -ducal -ducat -duchy -ducks -ducky -ducts -dudes -duels -duets -duffs -dukes -dulls -dully -dulse -dumbo -dummy -dumps -dumpy -dunce -dunes -dunks -duomo -duped -dupes -dural -durum -dusks -dusky -dusts -dusty -dutch -duvet -dwarf -dweeb -dwell -dwelt -dyads -dyers -dying -dykes -eager -eagle -eared -earls -early -earns -earth -eased -easel -easer -eases -eaten -eater -eaves -ebbed -ebony -ebook -echos -eclat -edema -edged -edger -edges -edict -edify -edits -eejit -eerie -egged -egret -eider -eidos -eight -eject -ejido -eland -elbow -elder -elect -elegy -elide -elite -elope -elude -elute -elven -elves -email -embed -ember -emcee -emery -emirs -emits -emote -empty -enact -ended -endow -enema -enemy -enjoy -ennui -enoki -enrol -ensue -enter -entry -envoy -eosin -epics -epoch -epoxy -equal -equip -erase -erect -ergot -erode -erred -error -erupt -essay -ether -ethic -ethos -ethyl -etude -euros -evade -evens -event -every -evict -evils -evoke -ewers -exact -exalt -exams -excel -execs -exert -exile -exist -exits -expat -expel -expos -extol -extra -exude -exult -exurb -eying -eyrie -fable -faced -facer -faces -facet -facia -facts -faded -fader -fades -faery -fails -faint -fairs +drome +dungeon +eggman +emerald +emulation +engine +evangelion +exe fairy -faith -faked -faker -fakes -fakie -fakir -falls -famed -fancy -fangs -fanny -farce -fared -fares -farms -farts -fasts -fatal -fated -fates -fatso -fatty -fatwa -fault -fauna -fauns -favas -faves -favor -fawns -faxed -faxes -fazed -fazes -fears -feast -feats -fecal -feces -feeds -feels -feign -feint -fella -fells -felon -felts -femme -femur -fence -fends -feral -feria -ferns -ferny -ferry -fests -fetal -fetch -feted -fetes -fetid -fetus -feuds -fever -fewer -fiats -fiber -fibre -fiche -ficus -fiefs -field -fiend -fiery -fifes -fifth -fifty +fall +family +fantasy +fatality fight -filch -filed -filer -files -filet -fills -filly -films -filmy -filth final -finca -finch -finds -fined -finer -fines -finis -finks -fiord -fired -fires -firms -first -fishy -fists -fitly -fiver -fives -fixed -fixer -fixes -fizzy -fjord -flack -flags -flail -flair -flake -flaky -flame -flank -flans -flaps -flare +fira +firaga +fire flash -flask -flats -flaws -flays -fleas -fleck -flees -fleet -flesh -flick -flier -flies -fling -float -flood -floor -flour -flown -flows -fluid -flyer -focal -focus -folks -fonts -foods -force -forms -forth -forty -forum -found -frame -fraud -fresh -fried -fries -front -frost -fruit -fuels -fully -funds -funny -gains -games +floppy +floral +friendship +futaba +future +gainax +galleon +game gamma -gases -gates -gauge -gears -genes -genre +ganon +gantz +gear +genesis +genie +genma +germano ghost -giant -gifts -girls -given -gives -gland -glass -globe -glory -gloss -glove -glued -goals -goats -going -goods -grace -grade -grain -grams -grand -grant -grape -graph -grasp -grass -grave -great -greek -green -greet -grief -grill -grind -grips -gross -group -grove -grown -grows -guard -guess -guest -guide -guild -guilt -habit -hairs -halls -hands -handy -hangs -happy -harsh -hated -hates -haven -hawks -heads -heard -heart -heavy -hedge -heels -hello -helps -hence -herbs -highs -hills -hints -hired -hobby -holds -holes -holly -homes -honey -honor -hooks -hoped -hopes -horns -horse -hosts -hotel -hours +ghosts +goblins +god +gohan +goku +golden +gon +gun +gundam +gurren +guy +hadoken +hame +handheld +haru +horror +hot house -hover -human -humor -hurts -icons -ideal -ideas -idiot -image -imply -inbox -incur -index -indie -inner -input -intro -issue -items -inert -infer -infix -infos -infra -ingan -ingle -ingot -inion -inked -inker -inkle -inlay -inlet -inned -inner -innie -innit -inorb -input -inrun -insee -inset -inspo -intel -inter -intis -intra -intro -inula -inure -inurn -invar -inver -inwit -iodic -iodin -ionic -ioras -iotas -ippon -irade -iring -irked -iroko -irons -irony -isbas -ishes -isled -isles -islet -isnae -idler -idles -idlis -idola -idols -idyll -idyls -iftar -igapo -igged -igloo -iglus -ignis -ihram -ikans -ikats -ikons -ileac -ileal -ileum -ileus -iliac -iliad -ilial -ilium -iller -illth -image -imago -imams -imari -imaum -imbar -imbos -imbue -imide -imido -imids -imine -imino -imlis -immew -immit -immix -imped -impel -impis -imply -impot -impro -imshi -imshy -inane -inapt -inarm -inbox -inbye -incas -incel -incog -incur -incus -incut -index -india -indie -indol -indri -indue -inept -issei -issue -istle -itchy -items -ivied -ivies -ivory -ixias -ixnay -ixora -ixtle -izard -izars -izzat -jeans -jelly -jewel -joins -joint -jokes -judge -juice -juicy -jumps -jabot -jacal -jacks -jacky -jaded -jades -jager -jaggy -jails -jakes -jalap -jalee -jalor -jalur -jambe -jambs -jammy -janes -janky -japan -japed -japer -japes -jarls -jasey -jaspe -jatis -jatos -jaunt -jaups -jawan -jawed -jazzy -jeans -jebel -jedis -jeers -jefes -jehad -jello -jells -jelly -jemmy -jenny -keeps -kicks -kills -kinda -kinds -kings -knees -knife -knock -knots -known -knows -keeps -kills -kench -kilos -knelt -koala -knead -kayak -kevel -knack -knoll -kooky -kicks -kaput -khaki -knees -knock -krill -kudos -kempt -kiosk -knell -knife -krait -kites -keeve -kiddy -kneel -knobs -knurl -kaama -kabab -kabar -kabob -kacha -kacks -kadai -kades -kadis -kails -kaims -kaing -kains -kajal -kakas -kakis -kalam -kalas -kales -kalif -kalis -kalpa -kalua -kanae -kanal -kanas -kanat -kandy -kaneh -kanes -karns -karoo -karos -karri -karst -karsy -karts -karzy -kasha -katal -katas -katis -katti -kerry -kesar -kests -ketas -ketch -ketol -kevil -kexes -keyed -keyer -kibbe -kibbi -kibei -kibes -kibla -kicky -kiddo -kidel -kidge -kiefs -kiers -kieve -kiley -kilig -kilps -kilts -kilty -kinda -kinds -kindy -kines -kings -kingy -label -labor -lacks -lakes -lamps -lands -lanes -large -laser -lasts -later -laugh -layer -leads -leaks -learn -lease -least -leave -legal -lemon +hunter +igor +ikki +inaba +install +inu +island +izanagi +izanami +jackrabbit +jaguar +jazz +jill +johnny +joker +jolly +joystick +jump +junes +jurassic +jusenkyo +kabuto +kawaii +kame +kami +kang +kanji +kart +kasumi +katana +keeper +keihan +kernel +kick +kitsune +kitty +klonoa +knuckles +kombat +konami +koopa +kotone +kuma +kun +kuno +kunoichi +kuwagata +kyoto +lagan +landlubber level -lever -light -liked -likes -limbs -limit -lined -linen -liner -lines -links -lions -lists -lived -liver -lives -loads -loans -lobby -local -locks -lodge -logic -logos -looks -loops -loose -lords -loses -loved -lover -loves -lower -loyal -lucky -lunar -lunch -lungs -lying -lacey -lacis -lacka -lacks -laddu -laddy -laded -ladee -laden -lader -ladle -ladoo -lairs -lairy -laith -laity -laked -laker -lakes -lance -lanch -lande -lands -laned -lanes -lanky -lants -lapas -lapel -lapin -lapis -lapje -lappa -lappy -lapse -larch -lards -lardy -laree -larva -lased -laser -lases -lassi -lasso -lassy -lasts -latah -latch -later -leany -leaps -leapt -learn -lears -leary -lease -leash -least -leats -leave -leavy -leaze -leben -leccy -leche -ledes -leeps -leers -leery -leese -leets -leeze -lefte -lefts -lefty -legal -leger -leges -legge -leggo -macro -magic -major +libman +link +linux +lisa +little +lose +luigi +lum +machine +macintosh +mage +majin +make maker -makes -males -maple -march -marks -marry -masks -match -mates -maths -matte -maybe -mayor -meals -means -meant -meats +makoto +mall +man +mandrake +maneki +manju +margaret +marie +mario +master +matrix +mayonaka medal -media -meets -melee -menus -mercy -merge -merit -merry -messy +mega +megatron +megazord +men +mendokusai +metabee metal -meter -metro -micro -midst -might -miles -minds -mines -minor -minus -mixed -mixer -mixes -model -modem -modes -moist -money -month -moral -motor -mount -mouse -mouth -moved -moves -movie -music -myths -nails -naked -named -names -nasal -nasty -naval -needs -nerve -never -newer -newly -nexus -nicer -niche +midnight +mini +mochi +mode +monk +monkey +monster +moroboshi +mosconi +must +mutten +nabiki +navi +neko +nen +neon night ninja -ninth -noble -nodes -noise -noisy -norms -north -notch -noted -notes -novel -nurse -nylon -oasis -occur +noclip +nova +novice +obaba +obake ocean -offer -often -older -olive +okage +okonomi omega -onion -onset -opens -opera -opted -optic -orbit -order -organ -other -ought -ounce -outer -owned -owner -oxide -ocker -ocote -ocrea -octad -octal -octan -octas -octet -octic -octli -octyl -oculi -odahs -odals -odder -oddly -odeon -odeum -odist -odium -odoom -odors -odour -odsos -odums -odyle -odyls -oecus -ofays -offal -offed -offer -oflag -often -ofuro -ogams -ogees -oggin -ogham -ogive -ogled -ogler -ogles -ogmic -ogres -ohelo -ohias -ohing -ohmic -oicks -oidia -oiled -oiler -oints -oiran -ojime -okapi -okays -okehs -okies -oking -packs -pages -pains -paint -pairs -panel -panic -pants -paper -parks -parts +one +onizuka +onsen +optimus +oracle +osaka +overlord +paladin +palm +panda +panther +parry party pasta -paste -patch -paths -patio -pause -peace peach -peaks -pearl -pedal -peers -penis -penny -perks -pests -petty -phase -phone -photo -piano -picks -piece -piles -pills -pilot -pinch -pipes -pitch -pixel +pentium +pepsi +persona +phantasy +piccolo +pika +pirate pizza -place -plain -plane -plans -plant -plate -plays +planet +play plaza -plots -plugs -poems -point +plus +pocket poker -polar -poles -polls -pools -porch -pores -ports -posed -poses -posts -pouch -pound +pony +portable power +predacon +predator press -price -pride prime -print -prior -prize -probe -promo -prone -proof -props -proud -prove -proxy -psalm -pulls -pulse -pumps +princess punch -pupil -puppy -purse -queen -query -quest -queue -quick -quiet -quilt -quite -quote -qadis -qaids -qajaq -qanat -qapik -qibla -qilas -qipao -qophs -qorma -quabs -quack -quads -quaff -quags -quail -quair -quais -quake -quaky -quale -qualm -qualy -quank -quant -quare -quark -quarl -quart -quash -queek -queem -queen -queer -quell -queme -quena -quern -query -queso -quest -quete -queue -queyn -queys -queyu -quibs -quich -races -racks -radar -radio -rails -rainy -raise -rally -ranch -range -ranks -rapid -rated -rates -ratio -razor -reach -react -reads -ready -realm -rebel -refer -reign -relax -relay -renal -renew -reply -reset -resin +puyo +pyros +rainbow +rancher +ranger +rangers +raptor +redmond +rekku +retort retro -rider -rides -ridge -rifle -right -rigid -rings -rinse -risen -rises -risks -risky -rival -river -roads +rex +rick +ring robot -rocks +robotnik rocky -rogue -roles -rolls -roman -rooms -roots -ropes -roses -rough +rokusho +roll +room round -route -royal -rugby -ruins -ruled -ruler -rules -rural -rakee -raker -rakes -rakhi -rakia -rakis -rakki -raksi -rakus -rales -ralli -rally -ralph -ramal -ramee -ramen -rames -ramet -ramie -ramin -ramis -rammy -ramon -ramps -ramus -ranas -rance -ranch -rando -rands -randy -ranee -ranes -ranga -range -rangi -rangy -ranid -ranis -ranke -ranks -sadly -safer -salad -sales -salon -sandy -satin -sauce -saved -saves -scale -scalp -scans -scare -scarf -scary -scene -scent -scoop -scope -score -scout -scrap -screw -seals -seams -seats -seeds -seeks -seems -sells -sends -sense -serum -serve +ruby +rupie +ryoga +ryuji +saint +sakura +urusai +sakurambo +sama +samurai +samus +san +saotome +saturn +saul +saver +scanlines +scorpion +screen +scumm +scurvy +select setup -seven -sewer -shade -shaft -shake -shall -shame -shape -share -shark -sharp -sheep -sheer -sheet -shelf -shell -shift -shine -shiny -ships -shirt -shock -shoes -shook -shoot -shops -shore -short -shots -shown -shows -sides -siege -sight -sigma -signs -silly -since -sites -sixth -sized -sizes -skies +sh +shadow +shampoo +shinji +ship +shogun +shonen +shoppe +shoryuken +shoujo +show +sixtyfour skill -skins -skirt -skull -slate -slave -sleek -sleep -slept -slice -slide -slope -slots -small -smart -smell -smile -smoke -snack -snake -sneak -socks -soils -solar -solid -solve -songs +slug +soda sonic -sorry -sorts -souls +sorcerer sound -south -space -spare -spark -speak -specs -speed -spell -spend -spent -sperm -spice -spicy -spike -spine -spite -split -spoke -spoon -sport -spots -spray -spurs +spectacular +spider +spy squad -stack -staff -stage -stain -stake -stamp -stand -stark -stars +star start -state -stats -stays -steak -steal +station steam -steel -steep -steer -stems -steps -stick -stiff -still -stock -stole -stone -stood -stool -stops -store -storm -story -stove -strap -straw -strip -stuck -study -stuff -style -sucks -sugar -suite -suits -sunny -super -surge +sub +suit sushi -swear -sweat -sweet -swept -swift -swing -swiss +swan sword -syrup -table -taken -takes -tales -talks -tanks -tapes -tasks -taste -tasty -taxes -teach -teams -tears -teens -teeth -tells -tempo -tends -tenth -tents -terms -tests -texts -thank -theft -their -theme -there -these -thick -thief -thigh -thing -think -third -those -three -threw -throw -thumb +system +tails +tale +tan +tanuki +tardis +tarot +taxi +team +temple +tendo +terminator +tetris +thundaga +thundara +thunder tiger -tight -tiles -timer -times -tired -tires -title -toast -today -token -tones -tools -tooth -topic -torch -total -touch -tough -tours -towel -tower -towns -toxic -trace -track -tract -trade -trail -train -trait -trans -traps -trash -treat -trees -trend -trial -tribe -trick -tried -tries -trips -trout -truck -truly -trump -trunk -trust -truth -tubes -tumor -tuned -tunes -turbo -turns -tutor -tweet -twice -twins -twist -types -tyres -ultra -uncle -under -union -unite -units -unity -until -upper -upset -urban -urged -urine -usage -users -using -usual -unsaw -unsay -unsee -unset -unsew -unsub -untag -untax -untie -until -unwed -unwet -unwit -unwon -unzip -upbow -upbye -updos -updry -upend -upjet -uplay -upled -uplit -upped -upper -upran -uprun -upsee -upset -upsey -upter -uptie -uraei -urali -uraos -urare -urari -urase -urate -urban -urbex -urbia -urdee -ureal -ureas -uredo -ureic -ureid -urena -urged -urger -urges -urial -urine -vague -valid -value +time +toad +tokyo +tombi +transformer +tux +tv +txt +ufo +ultimate +unlock valve vapor -vault -vegan -veins -vents -venue -verse +vegeta +velvet +vhs video -views -villa -vinyl -viral -virus -visas -visit -vital -vivid -vocal -vodka -voice -volts -voted -voter -votes -verbs -verde -verge -verra -verre -verry -versa -verse -verso -verst -verte -verts -vertu -verve -vespa -vesta -vests -vetch -veuve -veves -vexed -vexer -vexes -vexil -vezir -vials -viand -vibed -vibes -vibex -vibey -vicar -vices -vichy -vicus -wages -wagon -waist -walks -walls -wants -warns -waste -watch -water -watts -waves -wears -weeds -weeks -weigh -weird -wells -welsh -whale -wheat -wheel -where -which -while -white -whole -whose -wider -widow -width -winds -wines -wings -wiped -wired -wires -witch -wives +vim +wario +warrior +wave +weapon +who +wildcard +wizard woman -women -woods -words -works -world -worms -worry -worse -worst -worth -would -wound -wrath -wrist -write -wrong -wrote -waacs -wacke -wacko -wacks -wacky -wadds -waddy -waded -wader -wades -wadis -wafer -waffs -wafts -waged -wager -wages -wagga -wagon -wahoo -waide -waifs -wails -wains -wairs -waist -waits -waive -wakas -waked -waken -waker -wakes -wakfs -waldo -walds -waled -waler -wales -walis -walks -walla -walls -wally -walty -waltz -wamed -wames -wamus -wands -wanes -waney -wangs -wanks -wanky -wanle -wanly -wanna -wants -wanty -wanze -waqfs -warbs -xebec -xenia -xenic -xenon -xeric -xerox -xerus -xoana -xrays -xylan -xylem -xylic -xylol -xylyl -xysti -xysts -yacht -yards -years -yeast -yield -young -yours -youth -yummy -yacca -yacht -yacka -yacks -yadda -yadim -yaffs -yager -yagis -yagna -yahoo -yajes -yajna -yakka -yakow -yales -yamen -yampa -yampy -yamun -yandy -yangs -yanks -yapok -yapon -yapps -yappy -yarak -yarco -yards -yarer -yarfa -yarks -yarns -yarra -yarrs -yarta -yarto -yasss -yates -yatra -yauds -yauld -yaups -yawed -yawey -yawls -yawns -zones -zebra -zests -zesty -zetas -zorse -zouks -zowee -zowie -zacks -zaddy -zafus -zaida -zaide -zaidy -zaire -zakah -zakat -zamac -zamak -zaman -zambo -zamia -zamis -zanja -zante -zanza -zanze -zappy -zarda -zarfs -zaris -zatar -zatis -zawns -zaxes -zayde -zerks -zeros -zests -zesty -zetas -zexes -zezes -zhlob -zhlub -zhomo -zhush -zhuzh -zibet -ziffs -zigan -zikrs -zilas -zilch -zilla -zills -zimbi -zimbs -zinco -zincs -zincy -zineb -zines -zings -zingy -zinke -zinky -zinos -zippo -zippy -ziram -zitis -zitti -zitty -zizel -zizit -zlote -zloty -zoaea -zobos -zobus -zocco -zoeae -zoeal +won +wonder +wrap +yaki +yamcha +yen +yoshi +yu +yukiko +zelda +zero +zombie +quest \ No newline at end of file diff --git a/automation_tools/cooker_build_id.sh b/automation_tools/cooker_build_id.sh index ff4c8119..b1175e56 100755 --- a/automation_tools/cooker_build_id.sh +++ b/automation_tools/cooker_build_id.sh @@ -6,5 +6,5 @@ word2=$(shuf -n 1 ${GITHUB_WORKSPACE}/automation_tools/codename_wordlist.txt) capitalized_word2="$(tr '[:lower:]' '[:upper:]' <<< ${word2:0:1})${word2:1}" result=$capitalized_word1$capitalized_word2 echo $result > ${GITHUB_WORKSPACE}/buildid -echo "buildid=$result" >> $GITHUB_ENV +echo "BUILD_ID=$result" >> $GITHUB_ENV echo "VersionID is $result" \ No newline at end of file diff --git a/automation_tools/flatpak_build_only.sh b/automation_tools/flatpak_build_only.sh index 33276379..21d50ee4 100755 --- a/automation_tools/flatpak_build_only.sh +++ b/automation_tools/flatpak_build_only.sh @@ -15,10 +15,20 @@ fi mkdir -vp ${GITHUB_WORKSPACE}/retrodeck-repo mkdir -vp ${GITHUB_WORKSPACE}/"$FOLDER" -flatpak-builder --user --force-clean \ +# Pass the args to Flatpak Builder +FLATPAK_BUILD_EXTRA_ARGS="${@}" +echo "Passing additional args to flatpak builder: $FLATPAK_BUILD_EXTRA_ARGS" + +command="flatpak-builder --user --force-clean $FLATPAK_BUILD_EXTRA_ARGS \ --install-deps-from=flathub \ --install-deps-from=flathub-beta \ --repo=${GITHUB_WORKSPACE}/retrodeck-repo \ - --disable-download \ - "${GITHUB_WORKSPACE}/$FOLDER" \ - net.retrodeck.retrodeck.yml \ No newline at end of file + --disable-download $FLATPAK_BUILDER_CCACHE\ + \"${GITHUB_WORKSPACE}/$FOLDER\" \ + net.retrodeck.retrodeck.yml" + +# Echo the command for verification +echo -e "Executing command:\n$command" + +# Execute the command +eval $command \ No newline at end of file diff --git a/automation_tools/install_dependencies.sh b/automation_tools/install_dependencies.sh deleted file mode 100755 index 3daa4edb..00000000 --- a/automation_tools/install_dependencies.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash -# This script is installing the required dependencies to correctly run the pipeline and build the flatpak - -unset pkg_mgr - -# rpm-ostree must be checked before dnf because a dnf (wrapper) command also works on rpm-ostree distros (not what we want) -for potential_pkg_mgr in apt pacman rpm-ostree dnf; do - command -v "$potential_pkg_mgr" &> /dev/null && pkg_mgr="$potential_pkg_mgr" && break -done - -case "$pkg_mgr" in - apt) - sudo apt install -y flatpak flatpak-builder p7zip-full xmlstarlet bzip2 curl jq - ;; - pacman) - sudo pacman -S --noconfirm flatpak flatpak-builder p7zip xmlstarlet bzip2 - ;; - rpm-ostree) - echo "When using a distro with rpm-ostree, you shouldn't build directly on the host. Try using a distrobox." - exit 1 - ;; - dnf) - sudo dnf install -y flatpak flatpak-builder p7zip p7zip-plugins xmlstarlet bzip2 curl - ;; - *) - echo "Package manager $pkg_mgr not supported. Please open an issue." - ;; -esac - -flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo -flatpak remote-add --user --if-not-exists flathub-beta https://flathub.org/beta-repo/flathub-beta.flatpakrepo diff --git a/automation_tools/libman.sh b/automation_tools/libman.sh new file mode 100644 index 00000000..eb860c8f --- /dev/null +++ b/automation_tools/libman.sh @@ -0,0 +1,179 @@ +#!/bin/bash + +# Be aware that this script deletes the source directory after copying the files. It is intended to be used only by the flatpak builder. + + +# List of user-defined libraries to exclude +excluded_libraries=() + +# General libraries +excluded_libraries=("libselinux.so.1" "libwayland-egl.so.1" "libwayland-cursor.so.0" "libxkbcommon.so.0") +# Qt libraries +excluded_libraries+=("libQt6Multimedia.so.6" "libQt6Core.so.6" "libQt6DBus.so.6" "libQt6Gui.so.6" "libQt6OpenGL.so.6" "libQt6Svg.so.6" "libQt6WaylandClient.so.6" "libQt6WaylandEglClientHwIntegration.so.6" "libQt6Widgets.so.6" "libQt6XcbQpa.so.6") +# SDL libraries +excluded_libraries+=("libSDL2_net-2.0.so.0.200.0" "libSDL2_mixer-2.0.so.0.600.3" "libSDL2-2.0.so.0" "libSDL2_mixer-2.0.so.0" "libSDL2_image-2.0.so.0" "libSDL2-2.0.so.0.2800.5" "libSDL2_ttf-2.0.so.0" "libSDL2_net-2.0.so.0" "libSDL2_image-2.0.so.0.600.3" "libSDL2_ttf-2.0.so.0.2200.0") +# FFMPEG libraries +excluded_libraries+=("libavcodec.so" "libavformat.so" "libavutil.so" "libavfilter.so" "libavdevice" "libswresample.so" "libswscale.so") + +# Add libraries from /lib/x86_64-linux-gnu/ to the excluded list +for lib in /lib/x86_64-linux-gnu/*.so*; do + excluded_libraries+=("$(basename "$lib")") +done + +# Add libraries from /lib to the excluded list +for lib in /lib/*.so*; do + excluded_libraries+=("$(basename "$lib")") +done + +# Add libraries from /lib64 to the excluded list +for lib in /lib64/*.so*; do + excluded_libraries+=("$(basename "$lib")") +done + +# Define target directory +target_dir="${FLATPAK_DEST}/lib" + +# Define debug directory +debug_dir="${target_dir}/debug" + +echo "Worry not, LibMan is here!" + +# Set default destination if FLATPAK_DEST is not set +if [ -z "$FLATPAK_DEST" ]; then + export FLATPAK_DEST="/app" +fi + +# Check if source directory is provided +if [ -z "$1" ]; then + echo "Usage: $0 " + exit 0 +fi + +# Ensure the target directory exists +if ! mkdir -p "$target_dir"; then + echo "Error: Failed to create target directory $target_dir" + exit 0 +fi + +# Ensure the debug directory exists +if ! mkdir -p "$debug_dir"; then + echo "Error: Failed to create debug directory $debug_dir" + exit 0 +fi + +# Function to check if a file is in the excluded libraries list +is_excluded() { + local file="$1" + for excluded in "${excluded_libraries[@]}"; do + if [[ "$file" == $excluded ]]; then # NOTE excluded is not quoted to allow for wildcard matching + return 0 + fi + done + return 1 +} + +# Find and copy files +copied_files=() +failed_files=() + +# First, copy all regular files +for file in $(find "$1" -type f -name "*.so*" ! -type l); do + # Check if the file is in the debug folder + if [[ "$file" == *"/debug/"* ]]; then + dest_file="$debug_dir/$(basename "$file")" + else + dest_file="$target_dir/$(basename "$file")" + fi + + # Skip if the file is in the list of excluded libraries + if is_excluded "$(basename "$file")"; then + reason="library is in the exclusion list" + echo "Skipped $file as it is $reason" + failed_files+=("$file, $reason") + continue + fi + + # Skip if the destination file already exists + if [ -e "$dest_file" ]; then + echo "Skipped $file as $dest_file already exists" + continue + fi + + # Attempt to copy the file + if install -D "$file" "$dest_file" 2>error_log; then + echo "Copied $file to $dest_file" + copied_files+=("$file") + else + error_message=$(error_log; then + echo "Copied symlink target $symlink_target to $dest_symlink_target" + copied_files+=("$symlink_target") + else + error_message=$(error_log; then + echo "Created symlink $dest_file -> $dest_symlink_target" + copied_files+=("$file") + else + error_message=$( appdata_parts[i])); then + if ((manifest_parts[i] > metainfo_parts[i])); then return 1 # Manifest version is greater - elif ((manifest_parts[i] < appdata_parts[i])); then - return 2 # Appdata version is greater + elif ((manifest_parts[i] < metainfo_parts[i])); then + return 2 # Metainfo version is greater fi done @@ -38,8 +38,8 @@ echo -e "Online repository:\t$repo_version" manifest_version=$(fetch_manifest_version) echo -e "Manifest:\t\t$manifest_version" -appdata_version=$(fetch_appdata_version) -echo -e "Appdata:\t\t$appdata_version" +metainfo_version=$(fetch_metainfo_version) +echo -e "Metainfo:\t\t$metainfo_version" # Additional checks if [[ "$manifest_version" == "main" || "$manifest_version" == "THISBRANCH" || "$manifest_version" == *"cooker"* ]]; then @@ -47,8 +47,8 @@ if [[ "$manifest_version" == "main" || "$manifest_version" == "THISBRANCH" || "$ exit 1 fi -if [[ "$appdata_version" != "$manifest_version" ]]; then - echo "Appdata version is not equal to manifest version. Please fix it." +if [[ "$metainfo_version" != "$manifest_version" ]]; then + echo "Metainfo version is not equal to manifest version. Please fix it." exit 1 fi diff --git a/automation_tools/manifest_placeholder_replacer.sh b/automation_tools/manifest_placeholder_replacer.sh new file mode 100755 index 00000000..ae6d0645 --- /dev/null +++ b/automation_tools/manifest_placeholder_replacer.sh @@ -0,0 +1,239 @@ +#!/bin/bash + +# Set script to exit immediately on any error +set -e + +# For the file paths to work correctly, call this script with this command from the cloned repo folder root: +# sh automation_tools/manifest_placeholder_replacer.sh +# Different actions need different information in the task list file +# branch: This changes the placeholder text to the currently-detected GIT branch if an automated build was started from a PR environment. +# hash: Finds the SHA256 hash of a file online and updates the placeholder in the manifest. +# Needs the URL of the file, in this line format: hash^PLACEHOLDERTEXT^url +# latestcommit: Finds the most recent commit of a git repo and updates the placeholder in the manifest. +# Needs the URL of the repo and the branch to find the latest commit from, in this line format: latestcommit^PLACEHOLDERTEXT^url^branch +# latestghtag: Finds the most recent tag on a GitHub repo, for repos that don't have normal releases, but also shouldn't use the latest commit +# Needs the URL of the repo, in this line format: latestghtag^PLACEHOLDERTEXT^url +# latestghrelease: Finds the download URL and SHA256 hash of the latest release from a git repo. +# Needs the API URL of the repo, in this line format: latestghrelease^PLACEHOLDERTEXT^https://api.github.com/repos///releases/latest^ +# As this command updates two different placeholders (one for the URL, one for the file hash) in the manifest, +# the URL that would be used in the above example is "PLACEHOLDERTEXT" and the hash placeholder text would be "HASHPLACEHOLDERTEXT" +# The "HASH" prefix of the hash placeholder text is hardcoded in the script. +# The will be the file extension or other identifying suffix at the end of the file name that can be used to select from multiple releases. +# Example: If there are these file options for a given release: +# yuzu-mainline-20240205-149629642.AppImage +# yuzu-linux-20240205-149629642-source.tar.xz +# yuzu-linux-20240205-149629642-debug.tar.xz +# Entering "AppImage" (without quotes) for the will identify yuzu-mainline-20240205-149629642.AppImage +# Entering "source-.tar.xz" (without quotes) for the will identify yuzu-linux-20240205-149629642-source.tar.xz +# Entering "debug-tar.xz" (without quotes) for the will identify yuzu-linux-20240205-149629642-debug.tar.xz +# As a file extension like ".tar.xz" can apply to multiple file options, the entire part that is appended to each release name should be included. +# The will also only consider entries where the given suffix is at the end of the file name. So "AppImage" will identify "file.AppImage" but not "file.AppImage.zsync" +# latestghreleasesha: Finds the SHA256 hash of a specific asset in the latest release from a git repo. +# Needs the API URL of the repo, in this line format: latestghreleasesha^PLACEHOLDERTEXT^https://api.github.com/repos///releases/latest^ +# This command updates the placeholder in the manifest with the SHA256 hash of the specified asset. +# outside_file: Prints the contents of a file from the build environment (such as the buildid file) and replaces the placeholder text with those contents. +# outside_env_var: Gets the value of an environmental variable from the build environment (the output of "echo $var" from the terminal) and replaces the placeholder text with that value. +# custom_command: Runs a single command explicitly as written in the $URL field of the task list, including variable and command expansion. This should work the same as if you were running the command directly from the terminal. +# This command does not need a PLACEHOLDERTEXT field in the task list, so needs to be in this syntax: custom_command^^$COMMAND +# url: This is used to calculate a dynamic URL and the value to the $calculated_url environmental variable, for use in other subsequent commands. + +# Define paths +rd_manifest="${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml" +automation_task_list="${GITHUB_WORKSPACE}/automation_tools/automation_task_list.cfg" +cache_file="${GITHUB_WORKSPACE}/placeholders.cache" + +# Check if cache file exists +if [ -f "$cache_file" ]; then + echo "Warning: Cache file $cache_file is being used. If you encounter issues with hashes, consider deleting this file." +fi + +# Retrieve current git branch +get_current_branch() { + local branch=$(git rev-parse --abbrev-ref HEAD) + if [ "$branch" == "HEAD" ]; then + echo "$GITHUB_REF" | sed 's@refs/heads/@@' + else + echo "$branch" + fi +} + +# Retrieve the repository URL +get_repo_url() { + local repo_url=$(git config --get remote.origin.url) + # Convert SSH URL to HTTPS if needed + if [[ "$repo_url" == git@* ]]; then + repo_url=$(echo "$repo_url" | sed -e 's|git@|https://|' -e 's|:|/|') + fi + echo "$repo_url" +} + +current_branch=$(get_current_branch) +current_repo_url=$(get_repo_url) + +echo "Manifest location: $rd_manifest" +echo "Automation task list location: $automation_task_list" +echo +echo "Task list contents:" +cat "$automation_task_list" +echo + +# Function to get hash from cache or calculate it +get_hash() { + local url="$1" + local hash + + # Check if cache should be used and if cache file exists + # the use_cache variable is initialized by build_retrodeck_locally only so in the pipeline it will never use cache + if [ "$use_cache" == "true" ] && [ -f "$cache_file" ]; then + # Try to retrieve hash from cache + hash=$(grep "^$url " "$cache_file" | cut -d ' ' -f2) + fi + + # If hash is not found in cache, calculate it + if [ -z "$hash" ]; then + hash=$(curl -sL "$url" | sha256sum | cut -d ' ' -f1) + # Save the calculated hash to cache if caching is enabled + if [ "$use_cache" == "true" ]; then + echo "$url $hash" >> "$cache_file" + fi + fi + + # Return the hash + echo "$hash" +} + +# Functions to handle different actions +handle_branch() { + local placeholder="$1" + echo "Replacing placeholder $placeholder with branch $current_branch" + /bin/sed -i 's^'"$placeholder"'^'"$current_branch"'^g' "$rd_manifest" +} + +handle_hash() { + local placeholder="$1" + local url="$2" + local calculated_url=$(eval echo "$url") + local hash=$(get_hash "$calculated_url") + echo "Replacing placeholder $placeholder with hash $hash" + /bin/sed -i 's^'"$placeholder"'^'"$hash"'^g' "$rd_manifest" +} + +handle_latestcommit() { + local placeholder="$1" + local url="$2" + local branch="$3" + local commit=$(git ls-remote "$url" "$branch" | cut -f1) + echo "Replacing placeholder $placeholder with latest commit $commit" + /bin/sed -i 's^'"$placeholder"'^'"$commit"'^g' "$rd_manifest" +} + +handle_latestghtag() { + local placeholder="$1" + local url="$2" + local tag=$(git ls-remote --tags "$url" | tail -n 1 | cut -f2 | sed 's|refs/tags/||') + echo "Replacing placeholder $placeholder with latest tag $tag" + /bin/sed -i 's^'"$placeholder"'^'"$tag"'^g' "$rd_manifest" +} + +handle_latestghrelease() { + local placeholder="$1" + local url="$2" + local suffix="$3" + echo "Fetching release data from: $url" + local release_data=$(curl -s "$url") + echo "Release data fetched." + local ghreleaseurl=$(echo "$release_data" | jq -r ".assets[] | select(.name | endswith(\"$suffix\")).browser_download_url") + + if [[ -z "$ghreleaseurl" ]]; then + echo "Error: No asset found with suffix $suffix" + exit 1 + fi + + local ghreleasehash=$(get_hash "$ghreleaseurl") + + echo "Replacing placeholder $placeholder with URL $ghreleaseurl and hash $ghreleasehash" + /bin/sed -i 's^'"$placeholder"'^'"$ghreleaseurl"'^g' "$rd_manifest" + /bin/sed -i 's^'"HASHFOR$placeholder"'^'"$ghreleasehash"'^g' "$rd_manifest" +} + +handle_latestghreleasesha() { + local placeholder="$1" + local url="$2" + local suffix="$3" + echo "Fetching release data from: $url" + local release_data=$(curl -s "$url") + echo "Release data fetched." + local ghreleaseurl=$(echo "$release_data" | jq -r ".assets[] | select(.name | endswith(\"$suffix\")).browser_download_url") + + if [[ -z "$ghreleaseurl" ]]; then + echo "Error: No asset found with suffix $suffix" + exit 1 + fi + + local ghreleasehash=$(get_hash "$ghreleaseurl") + + echo "Replacing placeholder $placeholder with hash $ghreleasehash" + /bin/sed -i 's^'"$placeholder"'^'"$ghreleasehash"'^g' "$rd_manifest" +} + +handle_outside_file() { + local placeholder="$1" + local file_path="$2" + if [[ "$file_path" == \$* ]]; then + eval file_path="$file_path" + fi + local content=$(cat "$file_path") + echo "Replacing placeholder $placeholder with content of file $file_path" + /bin/sed -i 's^'"$placeholder"'^'"$content"'^g' "$rd_manifest" +} + +handle_outside_env_var() { + local placeholder="$1" + local var_name="$2" + if [[ "$var_name" == \$* ]]; then + eval var_name="$var_name" + fi + local value=$(echo "$var_name") + echo "Replacing placeholder $placeholder with environment variable $value" + /bin/sed -i 's^'"$placeholder"'^'"$value"'^g' "$rd_manifest" +} + +handle_custom_command() { + local command="$1" + echo "Executing custom command: $command" + eval "$command" +} + +handle_url() { + local placeholder="$1" + local url="$2" + local calculated_url=$(eval echo "$url") + echo "Replacing placeholder $placeholder with calculated URL $calculated_url" + /bin/sed -i 's^'"$placeholder"'^'"$calculated_url"'^g' "$rd_manifest" +} + +# Handle the THISREPO placeholder +handle_thisrepo() { + local placeholder="$1" + echo "Replacing placeholder $placeholder with repository URL $current_repo_url" + /bin/sed -i 's^'"$placeholder"'^'"$current_repo_url"'^g' "$rd_manifest" +} + +# Process the task list +while IFS="^" read -r action placeholder url branch || [[ -n "$action" ]]; do + if [[ ! "$action" == "#"* ]] && [[ -n "$action" ]]; then + case "$action" in + "branch" ) handle_branch "$placeholder" ;; + "hash" ) handle_hash "$placeholder" "$url" ;; + "latestcommit" ) handle_latestcommit "$placeholder" "$url" "$branch" ;; + "latestghtag" ) handle_latestghtag "$placeholder" "$url" ;; + "latestghrelease" ) handle_latestghrelease "$placeholder" "$url" "$branch" ;; + "latestghreleasesha" ) handle_latestghreleasesha "$placeholder" "$url" "$branch" ;; + "outside_file" ) handle_outside_file "$placeholder" "$url" ;; + "outside_env_var" ) handle_outside_env_var "$placeholder" "$url" ;; + "custom_command" ) handle_custom_command "$url" ;; + "url" ) handle_url "$placeholder" "$url" ;; + "THISREPO" ) handle_thisrepo "$placeholder" ;; + esac + fi +done < "$automation_task_list" diff --git a/automation_tools/appdata_management.sh b/automation_tools/metainfo_management.sh similarity index 69% rename from automation_tools/appdata_management.sh rename to automation_tools/metainfo_management.sh index 9eb2ba4e..69be02b1 100755 --- a/automation_tools/appdata_management.sh +++ b/automation_tools/metainfo_management.sh @@ -1,47 +1,48 @@ #!/bin/bash # THIS SCRIPT IS BROKEN HENCE DISABLED FTM -# This script is getting the latest release notes from the wiki and add them to the appdata +# This script is getting the latest release notes from the wiki and add them to the metainfo source automation_tools/version_extractor.sh -# Fetch appdata version -appdata_version=$(fetch_appdata_version) -log i "Appdata:\t\t$appdata_version" +# Fetch metainfo version +metainfo_version=$(fetch_metainfo_version) +echo -e "metainfo:\t\t$metainfo_version" # Defining manifest file location -appdata_file="net.retrodeck.retrodeck.appdata.xml" +metainfo_file="net.retrodeck.retrodeck.metainfo.xml" -# Check if release with appdata_version already exists -if grep -q "version=\"$appdata_version\"" "$appdata_file"; then - log i "Deleting existing release version $appdata_version..." +# Check if release with metainfo_version already exists +if grep -q "version=\"$metainfo_version\"" "$metainfo_file"; then + echo -e "Deleting existing release version $metainfo_version..." # Remove the existing release entry - sed -i "//d" "$appdata_file" + sed -i "//d" "$metainfo_file" fi -log i "Adding new release version $appdata_version..." +echo -e "Adding new release version $metainfo_version..." # Get today's date in the required format (YYYY-MM-DD) today_date=$(date +"%Y-%m-%d") -log i "Today is $today_date" +echo -e "Today is $today_date" # Construct the release snippet release_snippet="\ - - https://github.com/XargonWan/RetroDECK/releases/tag/$appdata_version + + https://github.com/RetroDECK/RetroDECK/releases/tag/$metainfo_version RELEASE_NOTES_PLACEHOLDER " # Read the entire content of the XML file -xml_content=$(cat "$appdata_file") +xml_content=$(cat "$metainfo_file") # Replace RELEASE_NOTES_PLACEHOLDER with the actual release notes # TODO -git clone https://github.com/XargonWan/RetroDECK.wiki.git /tmp/wiki +rm -rf /tmp/wiki +git clone https://github.com/RetroDECK/RetroDECK.wiki.git /tmp/wiki # Path to the markdown file wiki="/tmp/wiki/Version-history:-Patch-Notes.md" @@ -88,7 +89,7 @@ release_description="${release_snippet/RELEASE_NOTES_PLACEHOLDER/$section_list}" modified_xml_content="${xml_content//$release_description}" # Overwrite the original XML file with the modified content -echo "$modified_xml_content" > "$appdata_file" +echo "$modified_xml_content" > "$metainfo_file" # Format the XML file -#xmlstarlet fo --omit-decl "$appdata_file" +#xmlstarlet fo --omit-decl "$metainfo_file" diff --git a/automation_tools/post_build_check.sh b/automation_tools/post_build_check.sh new file mode 100755 index 00000000..17f0655f --- /dev/null +++ b/automation_tools/post_build_check.sh @@ -0,0 +1,93 @@ +#!/bin/bash +# This script runs entirely inside the Flatpak sandbox for net.retrodeck.retrodeck + +# Flatpak App ID +FLATPAK_APP_ID="net.retrodeck.retrodeck" + +# Log file inside the Flatpak sandbox +LOG_FILE="$HOME/retrodeck-post-build-check.log" + +# Clear previous log +> "$LOG_FILE" + +# Ensure global.sh is sourced inside the Flatpak sandbox +GLOBAL_SH_PATH="/app/libexec/global.sh" + +# Check if the global.sh script exists +if ! flatpak run --command=ls "$FLATPAK_APP_ID" "$GLOBAL_SH_PATH" &> /dev/null; then + echo "✗ global.sh not found at $GLOBAL_SH_PATH" | tee -a "$LOG_FILE" + exit 1 +fi + +# Source global.sh to load the `features` variable +echo "Sourcing $GLOBAL_SH_PATH to load features" | tee -a "$LOG_FILE" +features=$(flatpak run --command=bash "$FLATPAK_APP_ID" -c "source $GLOBAL_SH_PATH && echo \$features") + +# Ensure `features` variable is set +if [ -z "$features" ]; then + echo "✗ Failed to load features from $GLOBAL_SH_PATH" | tee -a "$LOG_FILE" + exit 1 +fi + +# Extract launch commands using jq +echo "Extracting launch commands from $features" | tee -a "$LOG_FILE" +commands=($(flatpak run --command=jq "$FLATPAK_APP_ID" -r '.emulator | to_entries[] | .value.launch' "$features")) +echo "Extracted launch commands: ${commands[@]}" | tee -a "$LOG_FILE" + +# Timeout duration in seconds +TIMEOUT=3 + +# Function to run command with timeout +run_and_check() { + local cmd="$1" + + echo "Validating command: \"$cmd\"" | tee -a "$LOG_FILE" + + # Verify command exists within the Flatpak sandbox + if ! flatpak run --command=which "$FLATPAK_APP_ID" "$cmd" &> /dev/null; then + echo "✗ Command not found: $cmd (Exit Code: 127)" | tee -a "$LOG_FILE" + return 127 + fi + + # Run command with timeout inside the sandbox + flatpak run --command=timeout "$FLATPAK_APP_ID" -s TERM $TIMEOUT "$cmd" &> /dev/null & + local pid=$! + sleep $TIMEOUT + + # Ensure the process is terminated + if kill -0 $pid 2>/dev/null; then + #echo "✗ $cmd did not terminate, killing process" | tee -a "$LOG_FILE" + kill -9 $pid + fi + + local exit_code=$? + + # Log the results + echo "Command: $cmd, Exit Code: $exit_code" | tee -a "$LOG_FILE" + + case $exit_code in + 0) + echo "✓ $cmd completed successfully" | tee -a "$LOG_FILE" + ;; + 124) + echo "✗ $cmd terminated after $TIMEOUT seconds" | tee -a "$LOG_FILE" + ;; + 137) + echo "✗ $cmd killed after timeout" | tee -a "$LOG_FILE" + ;; + *) + echo "✗ $cmd failed" | tee -a "$LOG_FILE" + ;; + esac + + return $exit_code +} + +# Execute commands inside the Flatpak sandbox +for cmd in "${commands[@]}"; do + run_and_check "$cmd" +done + +echo "$LOG_FILE" + +grep "✗" "$LOG_FILE" \ No newline at end of file diff --git a/automation_tools/pre_build_automation.sh b/automation_tools/pre_build_automation.sh deleted file mode 100755 index 5d9a7c91..00000000 --- a/automation_tools/pre_build_automation.sh +++ /dev/null @@ -1,151 +0,0 @@ -#!/bin/bash - -# For the file paths to work correctly, call this script with this command from the cloned repo folder root: -# sh automation_tools/pre_build_automation.sh -# Different actions need different information in the task list file -# branch: This changes the placeholder text to the currently-detected GIT branch if an automated build was started from a PR environment. -# hash: Finds the SHA256 hash of a file online and updates the placeholder in the manifest. -# Needs the URL of the file, in this line format: hash^PLACEHOLDERTEXT^url -# latestcommit: Finds the most recent commit of a git repo and updated the placeholder in the manifest. -# Needs the URL of the repo and the branch to find the latest commit from, in this line format: latestcommit^PLACEHOLDERTEXT^url^branch -# latestghtag: Finds the most recent tag on a GitHub repo, for repos that don't have normal releases, but also shouldn't use the latest commit -# Needs the URL of the repo, in this line format: latestghtag^PLACEHOLDERTEXT^url -# latestghrelease: Finds the download URL and SHA256 hash of the latest release from a git repo. -# Needs the API URL of the repo, in this line format: latestappimage^PLACEHOLDERTEXT^https://api.github.com/repos///releases/latest^ -# As this command updates two different placeholders (one for the URL, one for the file hash) in the manifest, -# the URL that would be used in the above example is "PLACEHOLDERTEXT" and the hash placeholder text would be "HASHPLACEHOLDERTEXT" -# The "HASH" prefix of the placeholder text is hardcoded in the script -# The will be the file extension or other identifying suffix at the end of the file name that can be used to select from multiple releases. -# Example: If there are these file options for a given release: -# yuzu-mainline-20240205-149629642.AppImage -# yuzu-linux-20240205-149629642-source.tar.xz -# yuzu-linux-20240205-149629642-debug.tar.xz -# Entering "AppImage" (without quotes) for the will identify yuzu-mainline-20240205-149629642.AppImage -# Entering "source-.tar.xz" (without quotes) for the will identify yuzu-linux-20240205-149629642-source.tar.xz -# Entering "debug-tar.xz" (without quotes) for the will identify yuzu-linux-20240205-149629642-debug.tar.xz -# As a file extension like ".tar.zx" can apply to multiple file options, the entire part that is appended to each release name should be included. -# The will also only consider entries where the given suffix is at the end of the file name. So "AppImage" will identify "file.AppImage" but not "file.AppImage.zsync" -# outside_file: Prints the contents of a file from the build environment (such as the buildid file) and replaces the placeholder text with those contents. -# outside_env_var: Gets the value of an environmental variable from the build environment (the output of "echo $var" from the terminal) and replaces the placeholder text with that value. -# custom_command: Runs a single command explicitly as written in the $URL field of the task list, including variable and command expansion. This should work the same as if you were runnig the command directly from the terminal. -# This command does not need a PLACEHOLDERTEXT field in the task list, so needs to be in this syntax: custom_command^^$COMMAND -# url: This is used to calculate a dynamic URL and the value to the $caluculated_url environmental variable, for use in other subsequent commands. - -rd_manifest=${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml -automation_task_list=${GITHUB_WORKSPACE}/automation_tools/automation_task_list.cfg -current_branch=$(git rev-parse --abbrev-ref HEAD) - -# During the PR automated tests instead of the branch name is returned "HEAD", fixing it -if [ $current_branch == "HEAD" ]; then - echo "Looks like we are on a PR environment, retrieving the branch name from which the PR is raised." - current_branch=$(echo $GITHUB_REF | sed 's@refs/heads/@@') - echo "The branch name from which the PR is raised is \"$current_branch\"." -fi - -echo "Manifest location: $rd_manifest" -echo "Automation task list location: $automation_task_list" -echo -echo "Task list contents:" -cat "$automation_task_list" -echo - -# Update all collected information -while IFS="^" read -r action placeholder url branch || [[ -n "$action" ]]; -do - if [[ ! $action == "#"* ]] && [[ ! -z "$action" ]]; then - case "$action" in - - "branch" ) - echo - echo "Placeholder text: $placeholder" - echo "Current branch:" "$current_branch" - echo - /bin/sed -i 's^'"$placeholder"'^'"$current_branch"'^g' $rd_manifest - ;; - - "hash" ) - echo - echo "Placeholder text: $placeholder" - calculated_url=$(eval echo "$url") # in case the url has to be calculated from an expression - echo "URL to hash: $calculated_url" - echo - hash=$(curl -sL "$calculated_url" | sha256sum | cut -d ' ' -f1) - echo "Hash found: $hash" - /bin/sed -i 's^'"$placeholder"'^'"$hash"'^' $rd_manifest - ;; - - "latestcommit" ) - echo - echo "Placeholder text: $placeholder" - echo "Repo to get latest commit from: $url branch: $branch" - echo - commit=$(git ls-remote "$url" "$branch" | cut -f1) - echo "Commit found: $commit" - /bin/sed -i 's^'"$placeholder"'^'"$commit"'^' $rd_manifest - ;; - - "latestghtag" ) - echo - echo "Placeholder text: $placeholder" - echo "Repo to get the latest tag from: $url" - echo - tag=$(git ls-remote "$url" | tail -n 1 | cut -f2 | sed 's|refs/tags/||') - echo "Tag found: $tag" - /bin/sed -i 's^'"$placeholder"'^'"$tag"'^' $rd_manifest - ;; - - "latestghrelease" ) - echo - echo "Placeholder text: $placeholder" - echo "Repo to look for latest releases: $url" - echo - ghreleaseurl=$(curl -s "$url" | grep browser_download_url | grep "$branch\""$ | cut -d : -f 2,3 | tr -d \" | sed -n 1p | tr -d ' ') - echo "GitHub release URL found: $ghreleaseurl" - /bin/sed -i 's^'"$placeholder"'^'"$ghreleaseurl"'^' $rd_manifest - ghreleasehash=$(curl -sL "$ghreleaseurl" | sha256sum | cut -d ' ' -f1) - echo "GitHub release hash found: $ghreleasehash" - /bin/sed -i 's^'"HASHFOR$placeholder"'^'"$ghreleasehash"'^' $rd_manifest - ;; - - "outside_file" ) - if [[ "$url" = \$* ]]; then # If value is a reference to a variable name - eval url="$url" - fi - echo - echo "Placeholder text: $placeholder" - echo "Information being injected: $(cat $url)" - echo - /bin/sed -i 's^'"$placeholder"'^'"$(cat $url)"'^' $rd_manifest - ;; - - "outside_env_var" ) - if [[ "$url" = \$* ]]; then # If value is a reference to a variable name - eval url="$url" - fi - echo - echo "Placeholder text: $placeholder" - echo "Information being injected: $(echo $url)" - echo - /bin/sed -i 's^'"$placeholder"'^'"$(echo $url)"'^' $rd_manifest - ;; - - "custom_command" ) - echo - echo "Command to run: $url" - echo - eval "$url" - ;; - - "url" ) - # this is used to calculate a dynamic url - echo - echo "Placeholder text: $placeholder" - calculated_url=$(eval echo "$url") - echo "Information being injected: $calculated_url" - echo - /bin/sed -i 's^'"$placeholder"'^'"$calculated_url"'^' $rd_manifest - ;; - - esac - fi -done < "$automation_task_list" diff --git a/automation_tools/search_missing_libs.sh b/automation_tools/search_missing_libs.sh new file mode 100755 index 00000000..8f1652b2 --- /dev/null +++ b/automation_tools/search_missing_libs.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +# Search for missing libraries +missing_libs=$(flatpak run --command=sh net.retrodeck.retrodeck -c \ +"find /app/bin -type f -exec ldd {} + 2>/dev/null | grep 'not found' | awk '{print \$2}' | tr -d ':' | xargs -n 1 basename | sort | uniq | tr '\n' ' '") + +# If there is any missing library, it will be printed, and the step will fail +if [ -n "$missing_libs" ]; then + echo "The following libraries are missing:" + echo "$missing_libs" + exit 1 +else + echo "TEST OK: No missing libraries are found" +fi diff --git a/automation_tools/update_dates.sh b/automation_tools/update_dates.sh new file mode 100755 index 00000000..b04a1d61 --- /dev/null +++ b/automation_tools/update_dates.sh @@ -0,0 +1,86 @@ +#!/bin/bash + +# Path to the configuration file +CONFIG_FILE="config/retrodeck/reference_lists/features.json" + +# Check if file exists +if [ ! -f "$CONFIG_FILE" ]; then + echo "Error: $CONFIG_FILE not found" + exit 1 +fi + +# Get today's date in the format YYYY-MM-DD +TODAYS_DATE=$(date +%Y-%m-%d) + +# Update dates using jq +jq ' +def is_leap_year($year): ($year % 4 == 0 and $year % 100 != 0) or ($year % 400 == 0); + +def increment_date($date): + if $date | length == 4 then + ($date[0:2] | tonumber) as $month | + ($date[2:4] | tonumber) as $day | + if $month == 12 and $day == 31 then + "0101" + elif $month == 2 and $day == 28 and is_leap_year(2024) then + "0229" + elif $month == 2 and ($day == 28 or $day == 29) then + "0301" + elif $day == 30 and ($month == 4 or $month == 6 or $month == 9 or $month == 11) then + (if ($month + 1) < 10 then "0" else "" end + (($month + 1) | tostring)) + "01" + elif $day == 31 then + (if ($month + 1) < 10 then "0" else "" end + (($month + 1) | tostring)) + "01" + else + (if $month < 10 then "0" else "" end + ($month | tostring)) + + (if ($day + 1) < 10 then "0" else "" end + (($day + 1) | tostring)) + end + elif $date | length == 10 then + ($date[0:4] | tonumber) as $year | + ($date[5:7] | tonumber) as $month | + ($date[8:10] | tonumber) as $day | + if $month == 12 and $day == 31 then + (($year + 1) | tostring) + "-01-01" + elif $month == 2 and $day == 28 and is_leap_year($year + 1) then + (($year + 1) | tostring) + "-02-29" + elif $month == 2 and ($day == 28 or $day == 29) then + (($year + 1) | tostring) + "-03-01" + elif $day == 30 and ($month == 4 or $month == 6 or $month == 9 or $month == 11) then + (($year + 1) | tostring) + "-" + + (if ($month + 1) < 10 then "0" else "" end + (($month + 1) | tostring)) + "-01" + elif $day == 31 then + (($year + 1) | tostring) + "-" + + (if ($month + 1) < 10 then "0" else "" end + (($month + 1) | tostring)) + "-01" + else + (($year + 1) | tostring) + "-" + + (if $month < 10 then "0" else "" end + ($month | tostring)) + "-" + + (if ($day + 1) < 10 then "0" else "" end + (($day + 1) | tostring)) + end + else . + end; + +.splash_screens |= with_entries( + .value |= ( + if has("start_date") then + if .start_date < "'$TODAYS_DATE'" then + .start_date = increment_date(.start_date) + else . end + else . end | + if has("end_date") then + if .end_date < "'$TODAYS_DATE'" then + .end_date = increment_date(.end_date) + else . end + else . end | + if has("full_start_date") then + if .full_start_date < "'$TODAYS_DATE'" then + .full_start_date = increment_date(.full_start_date) + else . end + else . end | + if has("full_end_date") then + if .full_end_date < "'$TODAYS_DATE'" then + .full_end_date = increment_date(.full_end_date) + else . end + else . end + ) +)' "$CONFIG_FILE" > "${CONFIG_FILE}.tmp" && mv "${CONFIG_FILE}.tmp" "$CONFIG_FILE" + +echo "All applicable dates rolled forward by one day." diff --git a/automation_tools/version_extractor.sh b/automation_tools/version_extractor.sh index f4714575..e9cc1cef 100755 --- a/automation_tools/version_extractor.sh +++ b/automation_tools/version_extractor.sh @@ -2,27 +2,27 @@ # This script is intended to gather version information from various sources: # RetroDECK repository -# Appdata.xml file +# Metainfo.xml file # Manifest YAML file # It consists of three functions, each responsible for retrieving a specific version-related data. -appdata="net.retrodeck.retrodeck.appdata.xml" +metainfo="net.retrodeck.retrodeck.metainfo.xml" manifest="net.retrodeck.retrodeck.yml" manifest_content=$(cat "$manifest") fetch_repo_version(){ # Getting latest RetroDECK release info - LATEST_RELEASE=$(curl -s "https://api.github.com/repos/XargonWan/RetroDECK/releases/latest") + LATEST_RELEASE=$(curl -s "https://api.github.com/repos/RetroDECK/RetroDECK/releases/latest") # Extracting tag name from the latest release repo_version=$(echo "$LATEST_RELEASE" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/') # Printing results echo "$repo_version" } -fetch_appdata_version(){ - # Extract the version from the net.retrodeck.retrodeck.appdata.xml file - appdata_version=$(grep -oPm1 "(?<= - 1 + 0 00000000000000000000000000000000 0 true diff --git a/emu-configs/citra/qt-config.ini b/config/citra/qt-config.ini similarity index 100% rename from emu-configs/citra/qt-config.ini rename to config/citra/qt-config.ini diff --git a/emu-configs/dolphin/DSUClient.ini b/config/dolphin/DSUClient.ini similarity index 100% rename from emu-configs/dolphin/DSUClient.ini rename to config/dolphin/DSUClient.ini diff --git a/emu-configs/dolphin/Dolphin.ini b/config/dolphin/Dolphin.ini similarity index 100% rename from emu-configs/dolphin/Dolphin.ini rename to config/dolphin/Dolphin.ini diff --git a/emu-configs/dolphin/FreeLookController.ini b/config/dolphin/FreeLookController.ini similarity index 100% rename from emu-configs/dolphin/FreeLookController.ini rename to config/dolphin/FreeLookController.ini diff --git a/emu-configs/dolphin/GBA.ini b/config/dolphin/GBA.ini similarity index 100% rename from emu-configs/dolphin/GBA.ini rename to config/dolphin/GBA.ini diff --git a/emu-configs/dolphin/GCKeyNew.ini b/config/dolphin/GCKeyNew.ini similarity index 100% rename from emu-configs/dolphin/GCKeyNew.ini rename to config/dolphin/GCKeyNew.ini diff --git a/emu-configs/dolphin/GCPadNew.ini b/config/dolphin/GCPadNew.ini similarity index 100% rename from emu-configs/dolphin/GCPadNew.ini rename to config/dolphin/GCPadNew.ini diff --git a/emu-configs/dolphin/GFX.ini b/config/dolphin/GFX.ini similarity index 97% rename from emu-configs/dolphin/GFX.ini rename to config/dolphin/GFX.ini index 3b7d355a..ca8498af 100644 --- a/emu-configs/dolphin/GFX.ini +++ b/config/dolphin/GFX.ini @@ -18,7 +18,7 @@ Lock Camera in Motion Puzzles = True ReduceBloom = True ToggleArmRePosition = True [Settings] -AspectRatio = 1 +AspectRatio = 0 BackendMultithreading = True DumpBaseTextures = True DumpMipTextures = True diff --git a/emu-configs/dolphin/Hotkeys.ini b/config/dolphin/Hotkeys.ini similarity index 100% rename from emu-configs/dolphin/Hotkeys.ini rename to config/dolphin/Hotkeys.ini diff --git a/emu-configs/dolphin/Logger.ini b/config/dolphin/Logger.ini similarity index 100% rename from emu-configs/dolphin/Logger.ini rename to config/dolphin/Logger.ini diff --git a/emu-configs/dolphin/Qt.ini b/config/dolphin/Qt.ini similarity index 100% rename from emu-configs/dolphin/Qt.ini rename to config/dolphin/Qt.ini diff --git a/emu-configs/dolphin/WiimoteNew.ini b/config/dolphin/WiimoteNew.ini similarity index 100% rename from emu-configs/dolphin/WiimoteNew.ini rename to config/dolphin/WiimoteNew.ini diff --git a/emu-configs/duckstation/settings.ini b/config/duckstation/settings.ini similarity index 87% rename from emu-configs/duckstation/settings.ini rename to config/duckstation/settings.ini index 65ca7e7b..a55559dd 100644 --- a/emu-configs/duckstation/settings.ini +++ b/config/duckstation/settings.ini @@ -42,7 +42,7 @@ FastmemMode = true [GPU] -Renderer = Vulkan +Renderer = OpenGL Adapter = AMD RADV VANGOGH ResolutionScale = 3 Multisamples = 1 @@ -412,12 +412,25 @@ Type = None [Hotkeys] -FastForward = Keyboard/Tab -TogglePause = Keyboard/Space -Screenshot = Keyboard/F10 -ToggleFullscreen = Keyboard/F11 -OpenPauseMenu = Keyboard/Escape -LoadSelectedSaveState = Keyboard/F1 -SaveSelectedSaveState = Keyboard/F2 -SelectPreviousSaveStateSlot = Keyboard/F3 -SelectNextSaveStateSlot = Keyboard/F4 +ToggleTurbo = Keyboard/Control & Keyboard/T +ToggleFullscreen = Keyboard/Control & Keyboard/Return +TogglePause = Keyboard/Control & Keyboard/P +Screenshot = Keyboard/Control & Keyboard/X +Reset = Keyboard/Control & Keyboard/R +ChangeDisc = Keyboard/Control & Keyboard/D +Rewind = Keyboard/Control & Keyboard/Minus +ToggleCheats = Keyboard/Control & Keyboard/C +IncreaseEmulationSpeed = Keyboard/Control & Keyboard/1 +DecreaseEmulationSpeed = Keyboard/Control & Keyboard/2 +ResetEmulationSpeed = Keyboard/Control & Keyboard/3 +IncreaseResolutionScale = Keyboard/Control & Keyboard/U +DecreaseResolutionScale = Keyboard/Control & Keyboard/Y +ToggleWidescreen = Keyboard/Control & Keyboard/W +LoadSelectedSaveState = Keyboard/Control & Keyboard/A +SaveSelectedSaveState = Keyboard/Control & Keyboard/S +SelectPreviousSaveStateSlot = Keyboard/Control & Keyboard/J +SelectNextSaveStateSlot = Keyboard/Control & Keyboard/K +PowerOff = Keyboard/Control & Keyboard/Q +UndoLoadState = Keyboard/Control & Keyboard/9 +OpenPauseMenu = Keyboard/Control & Keyboard/M +ToggleFastForward = Keyboard/Control & Keyboard/Plus diff --git a/emu-configs/ecwolf/ecwolf.sh.todo b/config/ecwolf/ecwolf.sh.todo similarity index 100% rename from emu-configs/ecwolf/ecwolf.sh.todo rename to config/ecwolf/ecwolf.sh.todo diff --git a/es-configs/es_settings.xml b/config/es-de/es_settings.xml similarity index 95% rename from es-configs/es_settings.xml rename to config/es-de/es_settings.xml index c1d69bd9..f4cf8055 100644 --- a/es-configs/es_settings.xml +++ b/config/es-de/es_settings.xml @@ -118,7 +118,7 @@ - + @@ -146,20 +146,19 @@ - + - + - - - + + - + \ No newline at end of file diff --git a/es-configs/rd_prepacks/doom/doom.zip b/config/es-de/rd_prepacks/doom/doom.zip similarity index 100% rename from es-configs/rd_prepacks/doom/doom.zip rename to config/es-de/rd_prepacks/doom/doom.zip diff --git a/es-configs/rd_prepacks/doom/gamelist.xml b/config/es-de/rd_prepacks/doom/gamelist.xml similarity index 100% rename from es-configs/rd_prepacks/doom/gamelist.xml rename to config/es-de/rd_prepacks/doom/gamelist.xml diff --git a/emu-configs/gzdoom/gzdoom.ini b/config/gzdoom/gzdoom.ini similarity index 100% rename from emu-configs/gzdoom/gzdoom.ini rename to config/gzdoom/gzdoom.ini diff --git a/emu-configs/gzdoom/gzdoom.sh b/config/gzdoom/gzdoom.sh similarity index 68% rename from emu-configs/gzdoom/gzdoom.sh rename to config/gzdoom/gzdoom.sh index 692d7cab..fc70aa21 100644 --- a/emu-configs/gzdoom/gzdoom.sh +++ b/config/gzdoom/gzdoom.sh @@ -1,6 +1,7 @@ -#!/bin/bash - -source /app/libexec/logger.sh +# Source the global.sh script if not already sourced +if [ -z "${GLOBAL_SOURCED+x}" ]; then + source /app/libexec/global.sh +fi # Define the IWAD files list IWAD_FILES=("DOOM1.WAD" "DOOM.WAD" "DOOM2.WAD" "DOOM2F.WAD" "DOOM64.WAD" "TNT.WAD" @@ -15,7 +16,9 @@ is_iwad() { local file="$1" local lowercase_file="$(basename "${file,,}")" + # Loop through the list of IWAD files for iwad in "${IWAD_FILES[@]}"; do + # Check if the lowercase version of the IWAD file matches the input file if [[ "${iwad,,}" == "$lowercase_file" ]]; then echo "true" return @@ -42,7 +45,17 @@ search_file_recursive() { } # Main script -log "[INFO] RetroDECK GZDOOM wrapper init" +log d "RetroDECK GZDOOM wrapper init" + +# Check if the filename contains a single quote +if [[ "$1" == *"'"* ]]; then + log e "Invalid filename: \"$1\" contains a single quote.\nPlease rename the file in a proper way before continuing." + rd_zenity --error --no-wrap \ + --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ + --title "RetroDECK" \ + --text="Invalid filename\n\n\"$1\" contains a single quote.\nPlease rename the file in a proper way before continuing." + exit 1 +fi # Check if $1 is not a .doom file if [[ "${1##*.}" != "doom" ]]; then @@ -57,7 +70,7 @@ if [[ "${1##*.}" != "doom" ]]; then log i "Loading: \"$1\"" log i "Executing command \"$command\"" - # Execute the command + # Execute the command with double quotes eval "$command" # Check if $1 is a .doom file @@ -79,6 +92,16 @@ else command="gzdoom -config /var/config/gzdoom/gzdoom.ini" while IFS= read -r line; do + # Check if the line contains a single quote + if [[ "$line" == *"'"* ]]; then + log e "Invalid filename: A file containined in \"$1\" contains a single quote" + rd_zenity --error --no-wrap \ + --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ + --title "RetroDECK" \ + --text="Invalid filename\n\nA file containined in \"$1\" contains a single quote.\nPlease rename the file and fix its name in the .doom file." + exit 1 + fi + # Search for the file recursively found_file=$(search_file_recursive "$line" "$(dirname "$doom_file")") @@ -105,6 +128,6 @@ else # Log the command log i "Executing command \"$command\"" - # Execute the command + # Execute the command with double quotes eval "$command" fi diff --git a/emu-configs/mame/cheat0264.zip b/config/mame/cheat0264.zip similarity index 100% rename from emu-configs/mame/cheat0264.zip rename to config/mame/cheat0264.zip diff --git a/emu-configs/mame/default.cfg b/config/mame/default.cfg similarity index 100% rename from emu-configs/mame/default.cfg rename to config/mame/default.cfg diff --git a/emu-configs/mame/mame.ini b/config/mame/mame.ini similarity index 100% rename from emu-configs/mame/mame.ini rename to config/mame/mame.ini diff --git a/emu-configs/mame/ui.ini b/config/mame/ui.ini similarity index 100% rename from emu-configs/mame/ui.ini rename to config/mame/ui.ini diff --git a/emu-configs/melonds/melonDS.ini b/config/melonds/melonDS.ini similarity index 100% rename from emu-configs/melonds/melonDS.ini rename to config/melonds/melonDS.ini diff --git a/emu-configs/patches/updates/064b_update.patch b/config/patches/updates/064b_update.patch similarity index 100% rename from emu-configs/patches/updates/064b_update.patch rename to config/patches/updates/064b_update.patch diff --git a/emu-configs/pico-8/config.txt b/config/pico-8/config.txt similarity index 100% rename from emu-configs/pico-8/config.txt rename to config/pico-8/config.txt diff --git a/emu-configs/pico-8/pico8-wrapper.sh b/config/pico-8/pico8-wrapper.sh similarity index 100% rename from emu-configs/pico-8/pico8-wrapper.sh rename to config/pico-8/pico8-wrapper.sh diff --git a/emu-configs/pico-8/sdl_controllers.txt b/config/pico-8/sdl_controllers.txt similarity index 100% rename from emu-configs/pico-8/sdl_controllers.txt rename to config/pico-8/sdl_controllers.txt diff --git a/config/portmaster/config.json b/config/portmaster/config.json new file mode 100644 index 00000000..8b6241ef --- /dev/null +++ b/config/portmaster/config.json @@ -0,0 +1,9 @@ +{ + "change_channel": false, + "first-run": true, + "release_channel": "stable", + "show_experimental": false, + "theme": "default_theme", + "theme-scheme": "Dracula", + "version": 2 +} diff --git a/emu-configs/ppssppsdl/controls.ini b/config/ppssppsdl/controls.ini similarity index 100% rename from emu-configs/ppssppsdl/controls.ini rename to config/ppssppsdl/controls.ini diff --git a/emu-configs/ppssppsdl/ppsspp.ini b/config/ppssppsdl/ppsspp.ini similarity index 100% rename from emu-configs/ppssppsdl/ppsspp.ini rename to config/ppssppsdl/ppsspp.ini diff --git a/emu-configs/primehack/config/Dolphin.ini b/config/primehack/config/Dolphin.ini similarity index 100% rename from emu-configs/primehack/config/Dolphin.ini rename to config/primehack/config/Dolphin.ini diff --git a/emu-configs/primehack/config/FreeLookController.ini b/config/primehack/config/FreeLookController.ini similarity index 100% rename from emu-configs/primehack/config/FreeLookController.ini rename to config/primehack/config/FreeLookController.ini diff --git a/emu-configs/primehack/config/GBA.ini b/config/primehack/config/GBA.ini similarity index 100% rename from emu-configs/primehack/config/GBA.ini rename to config/primehack/config/GBA.ini diff --git a/emu-configs/primehack/config/GCKeyNew.ini b/config/primehack/config/GCKeyNew.ini similarity index 100% rename from emu-configs/primehack/config/GCKeyNew.ini rename to config/primehack/config/GCKeyNew.ini diff --git a/emu-configs/primehack/config/GCPadNew.ini b/config/primehack/config/GCPadNew.ini similarity index 100% rename from emu-configs/primehack/config/GCPadNew.ini rename to config/primehack/config/GCPadNew.ini diff --git a/emu-configs/primehack/config/GFX.ini b/config/primehack/config/GFX.ini similarity index 97% rename from emu-configs/primehack/config/GFX.ini rename to config/primehack/config/GFX.ini index 73e36e2e..aebaf7ed 100644 --- a/emu-configs/primehack/config/GFX.ini +++ b/config/primehack/config/GFX.ini @@ -16,7 +16,7 @@ Lock Camera in Motion Puzzles = True ReduceBloom = True ToggleArmRePosition = True [Settings] -AspectRatio = 1 +AspectRatio = 0 BackendMultithreading = True DumpBaseTextures = True DumpMipTextures = True diff --git a/emu-configs/primehack/config/Hotkeys.ini b/config/primehack/config/Hotkeys.ini similarity index 100% rename from emu-configs/primehack/config/Hotkeys.ini rename to config/primehack/config/Hotkeys.ini diff --git a/emu-configs/primehack/config/Logger.ini b/config/primehack/config/Logger.ini similarity index 100% rename from emu-configs/primehack/config/Logger.ini rename to config/primehack/config/Logger.ini diff --git a/emu-configs/primehack/config/Profiles/GCPad/PrimeHack SD-GC Nintendo Layout.ini b/config/primehack/config/Profiles/GCPad/PrimeHack SD-GC Nintendo Layout.ini similarity index 100% rename from emu-configs/primehack/config/Profiles/GCPad/PrimeHack SD-GC Nintendo Layout.ini rename to config/primehack/config/Profiles/GCPad/PrimeHack SD-GC Nintendo Layout.ini diff --git a/emu-configs/primehack/config/Profiles/GCPad/PrimeHack SD-GC Xbox Layout.ini b/config/primehack/config/Profiles/GCPad/PrimeHack SD-GC Xbox Layout.ini similarity index 100% rename from emu-configs/primehack/config/Profiles/GCPad/PrimeHack SD-GC Xbox Layout.ini rename to config/primehack/config/Profiles/GCPad/PrimeHack SD-GC Xbox Layout.ini diff --git a/emu-configs/primehack/config/Profiles/Hotkeys/RetroDECK Defaults.ini b/config/primehack/config/Profiles/Hotkeys/RetroDECK Defaults.ini similarity index 100% rename from emu-configs/primehack/config/Profiles/Hotkeys/RetroDECK Defaults.ini rename to config/primehack/config/Profiles/Hotkeys/RetroDECK Defaults.ini diff --git a/emu-configs/primehack/config/Profiles/Wiimote/PrimeHack SD-Wii Nintendo Layout.ini b/config/primehack/config/Profiles/Wiimote/PrimeHack SD-Wii Nintendo Layout.ini similarity index 100% rename from emu-configs/primehack/config/Profiles/Wiimote/PrimeHack SD-Wii Nintendo Layout.ini rename to config/primehack/config/Profiles/Wiimote/PrimeHack SD-Wii Nintendo Layout.ini diff --git a/emu-configs/primehack/config/Profiles/Wiimote/PrimeHack SD-Wii Xbox Layout.ini b/config/primehack/config/Profiles/Wiimote/PrimeHack SD-Wii Xbox Layout.ini similarity index 100% rename from emu-configs/primehack/config/Profiles/Wiimote/PrimeHack SD-Wii Xbox Layout.ini rename to config/primehack/config/Profiles/Wiimote/PrimeHack SD-Wii Xbox Layout.ini diff --git a/emu-configs/primehack/config/Qt.ini b/config/primehack/config/Qt.ini similarity index 100% rename from emu-configs/primehack/config/Qt.ini rename to config/primehack/config/Qt.ini diff --git a/emu-configs/primehack/config/WiimoteNew.ini b/config/primehack/config/WiimoteNew.ini similarity index 100% rename from emu-configs/primehack/config/WiimoteNew.ini rename to config/primehack/config/WiimoteNew.ini diff --git a/emu-configs/primehack/data/GameSettings/R3ME01.ini b/config/primehack/data/GameSettings/R3ME01.ini similarity index 100% rename from emu-configs/primehack/data/GameSettings/R3ME01.ini rename to config/primehack/data/GameSettings/R3ME01.ini diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_10ca6dca25531ce9_4.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_10ca6dca25531ce9_4.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_10ca6dca25531ce9_4.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_10ca6dca25531ce9_4.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_173f3a24d9dd4a66_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_173f3a24d9dd4a66_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_173f3a24d9dd4a66_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_173f3a24d9dd4a66_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_2a304e0fc49a883c_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_2a304e0fc49a883c_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_2a304e0fc49a883c_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_2a304e0fc49a883c_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_43be3d9c0c2e2dbd_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_43be3d9c0c2e2dbd_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_43be3d9c0c2e2dbd_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_43be3d9c0c2e2dbd_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_47002754133e4ff5_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_47002754133e4ff5_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_47002754133e4ff5_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_47002754133e4ff5_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_4eb90bb511d2b10e_4.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_4eb90bb511d2b10e_4.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_4eb90bb511d2b10e_4.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_4eb90bb511d2b10e_4.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_54e294522955b32e_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_54e294522955b32e_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_54e294522955b32e_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_54e294522955b32e_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_5945fd1a085a2aeb_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_5945fd1a085a2aeb_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_5945fd1a085a2aeb_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_5945fd1a085a2aeb_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_70a90df632629730_4.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_70a90df632629730_4.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_70a90df632629730_4.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_70a90df632629730_4.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_7e31a38b70ecbddd_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_7e31a38b70ecbddd_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_7e31a38b70ecbddd_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_7e31a38b70ecbddd_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_86475f276fb14e06_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_86475f276fb14e06_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_86475f276fb14e06_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_86475f276fb14e06_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_889e80824c922249_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_889e80824c922249_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_889e80824c922249_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_889e80824c922249_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_96342171475066ab_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_96342171475066ab_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_96342171475066ab_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_96342171475066ab_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_9af2d52683113ecc_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_9af2d52683113ecc_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_9af2d52683113ecc_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_9af2d52683113ecc_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_a28e2885c4fe7e1c_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_a28e2885c4fe7e1c_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_a28e2885c4fe7e1c_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_a28e2885c4fe7e1c_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_b0c321687c7a410b_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_b0c321687c7a410b_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_b0c321687c7a410b_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_b0c321687c7a410b_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_c3af34349deab463_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_c3af34349deab463_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_c3af34349deab463_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_c3af34349deab463_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_cb44bdce7a961a9d_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_cb44bdce7a961a9d_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_cb44bdce7a961a9d_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_cb44bdce7a961a9d_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_ce9f9d8116478553_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_ce9f9d8116478553_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_ce9f9d8116478553_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_ce9f9d8116478553_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_d3576576ea854c06_4.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_d3576576ea854c06_4.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_d3576576ea854c06_4.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_d3576576ea854c06_4.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_f0599000a4f68a36_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_f0599000a4f68a36_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_f0599000a4f68a36_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_f0599000a4f68a36_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_f26190a488d42e7c_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_f26190a488d42e7c_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_f26190a488d42e7c_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_32x32_f26190a488d42e7c_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_40x32_4c3b4cc767632866_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_40x32_4c3b4cc767632866_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_40x32_4c3b4cc767632866_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_40x32_4c3b4cc767632866_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_1606dfde024ac097_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_1606dfde024ac097_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_1606dfde024ac097_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_1606dfde024ac097_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_16a58a4eea792bbe_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_16a58a4eea792bbe_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_16a58a4eea792bbe_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_16a58a4eea792bbe_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_175a89d65955dc3b_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_175a89d65955dc3b_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_175a89d65955dc3b_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_175a89d65955dc3b_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_42ca5ae71fc5a4dd_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_42ca5ae71fc5a4dd_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_42ca5ae71fc5a4dd_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_42ca5ae71fc5a4dd_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_ffeb4d8af2d792d8_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_ffeb4d8af2d792d8_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_ffeb4d8af2d792d8_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_64x32_ffeb4d8af2d792d8_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_23cf53ad89c9fd1b_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_23cf53ad89c9fd1b_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_23cf53ad89c9fd1b_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_23cf53ad89c9fd1b_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_59808344c616ced7_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_59808344c616ced7_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_59808344c616ced7_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_59808344c616ced7_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_6ac1c1da82026c89_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_6ac1c1da82026c89_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_6ac1c1da82026c89_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_6ac1c1da82026c89_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_70ff98b99f564308_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_70ff98b99f564308_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_70ff98b99f564308_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_70ff98b99f564308_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_75914a5d05565cd7_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_75914a5d05565cd7_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_75914a5d05565cd7_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_75914a5d05565cd7_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_7fbc4a84faef18ee_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_7fbc4a84faef18ee_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_7fbc4a84faef18ee_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_7fbc4a84faef18ee_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_86d6d4197093f397_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_86d6d4197093f397_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_86d6d4197093f397_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_86d6d4197093f397_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_93dd5118ba11a908_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_93dd5118ba11a908_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_93dd5118ba11a908_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_93dd5118ba11a908_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_a05f9156a9b8da71_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_a05f9156a9b8da71_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_a05f9156a9b8da71_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/Common/tex1_76x32_a05f9156a9b8da71_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_2a304e0fc49a883c_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_2a304e0fc49a883c_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_2a304e0fc49a883c_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_2a304e0fc49a883c_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_54e294522955b32e_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_54e294522955b32e_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_54e294522955b32e_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_54e294522955b32e_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_5945fd1a085a2aeb_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_5945fd1a085a2aeb_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_5945fd1a085a2aeb_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_5945fd1a085a2aeb_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_701e7c156583abfc_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_701e7c156583abfc_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_701e7c156583abfc_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_701e7c156583abfc_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_7e31a38b70ecbddd_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_7e31a38b70ecbddd_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_7e31a38b70ecbddd_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_7e31a38b70ecbddd_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_86475f276fb14e06_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_86475f276fb14e06_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_86475f276fb14e06_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_86475f276fb14e06_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_a28e2885c4fe7e1c_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_a28e2885c4fe7e1c_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_a28e2885c4fe7e1c_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_a28e2885c4fe7e1c_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_a7ef87b56d6b4bdf_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_a7ef87b56d6b4bdf_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_a7ef87b56d6b4bdf_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_a7ef87b56d6b4bdf_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_b4f4fb242799c981_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_b4f4fb242799c981_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_b4f4fb242799c981_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_b4f4fb242799c981_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_bb3467a83b7dad05_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_bb3467a83b7dad05_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_bb3467a83b7dad05_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_bb3467a83b7dad05_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_cb44bdce7a961a9d_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_cb44bdce7a961a9d_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_cb44bdce7a961a9d_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_cb44bdce7a961a9d_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_e74dc87e7b4eef8d_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_e74dc87e7b4eef8d_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_e74dc87e7b4eef8d_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_e74dc87e7b4eef8d_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_f0599000a4f68a36_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_f0599000a4f68a36_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_f0599000a4f68a36_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_f0599000a4f68a36_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_f26190a488d42e7c_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_f26190a488d42e7c_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_f26190a488d42e7c_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_32x32_f26190a488d42e7c_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_1606dfde024ac097_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_1606dfde024ac097_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_1606dfde024ac097_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_1606dfde024ac097_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_16a58a4eea792bbe_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_16a58a4eea792bbe_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_16a58a4eea792bbe_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_16a58a4eea792bbe_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_175a89d65955dc3b_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_175a89d65955dc3b_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_175a89d65955dc3b_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_175a89d65955dc3b_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_27dedcf777de34c0_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_27dedcf777de34c0_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_27dedcf777de34c0_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_27dedcf777de34c0_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_3ee19d4f14128a9b_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_3ee19d4f14128a9b_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_3ee19d4f14128a9b_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_3ee19d4f14128a9b_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_41703e382ee91ba1_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_41703e382ee91ba1_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_41703e382ee91ba1_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_41703e382ee91ba1_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_42ca5ae71fc5a4dd_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_42ca5ae71fc5a4dd_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_42ca5ae71fc5a4dd_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_42ca5ae71fc5a4dd_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_47dc2607b727f563_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_47dc2607b727f563_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_47dc2607b727f563_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_47dc2607b727f563_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_4f0ad2e2995bddb5_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_4f0ad2e2995bddb5_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_4f0ad2e2995bddb5_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_4f0ad2e2995bddb5_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_569c97647cd0e0c9_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_569c97647cd0e0c9_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_569c97647cd0e0c9_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_569c97647cd0e0c9_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_63eacd0666203c96_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_63eacd0666203c96_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_63eacd0666203c96_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_63eacd0666203c96_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_92a58bc7eb71f53d_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_92a58bc7eb71f53d_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_92a58bc7eb71f53d_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_92a58bc7eb71f53d_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_9fb461fb5a0c4962_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_9fb461fb5a0c4962_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_9fb461fb5a0c4962_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_9fb461fb5a0c4962_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_af76096726fc1854_14.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_af76096726fc1854_14.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_af76096726fc1854_14.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_af76096726fc1854_14.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_b0a79df2f424260e_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_b0a79df2f424260e_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_b0a79df2f424260e_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_b0a79df2f424260e_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_b6ee0b617b179b2c_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_b6ee0b617b179b2c_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_b6ee0b617b179b2c_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_b6ee0b617b179b2c_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_bf152ef2b7f5c2fd_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_bf152ef2b7f5c2fd_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_bf152ef2b7f5c2fd_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_bf152ef2b7f5c2fd_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_f09993aa62c3a11b_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_f09993aa62c3a11b_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_f09993aa62c3a11b_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_f09993aa62c3a11b_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_f3f27c5e92f56472_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_f3f27c5e92f56472_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_f3f27c5e92f56472_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_f3f27c5e92f56472_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_ffeb4d8af2d792d8_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_ffeb4d8af2d792d8_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_ffeb4d8af2d792d8_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_64x32_ffeb4d8af2d792d8_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_23cf53ad89c9fd1b_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_23cf53ad89c9fd1b_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_23cf53ad89c9fd1b_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_23cf53ad89c9fd1b_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_59808344c616ced7_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_59808344c616ced7_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_59808344c616ced7_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_59808344c616ced7_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_6ac1c1da82026c89_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_6ac1c1da82026c89_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_6ac1c1da82026c89_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_6ac1c1da82026c89_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_70ff98b99f564308_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_70ff98b99f564308_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_70ff98b99f564308_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_70ff98b99f564308_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_75914a5d05565cd7_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_75914a5d05565cd7_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_75914a5d05565cd7_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_75914a5d05565cd7_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_7fbc4a84faef18ee_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_7fbc4a84faef18ee_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_7fbc4a84faef18ee_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_7fbc4a84faef18ee_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_86d6d4197093f397_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_86d6d4197093f397_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_86d6d4197093f397_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_86d6d4197093f397_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_93dd5118ba11a908_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_93dd5118ba11a908_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_93dd5118ba11a908_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_93dd5118ba11a908_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_a05f9156a9b8da71_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_a05f9156a9b8da71_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_a05f9156a9b8da71_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP1/tex1_76x32_a05f9156a9b8da71_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_2a304e0fc49a883c_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_2a304e0fc49a883c_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_2a304e0fc49a883c_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_2a304e0fc49a883c_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_4eb90bb511d2b10e_4.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_4eb90bb511d2b10e_4.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_4eb90bb511d2b10e_4.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_4eb90bb511d2b10e_4.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_54e294522955b32e_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_54e294522955b32e_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_54e294522955b32e_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_54e294522955b32e_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_5945fd1a085a2aeb_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_5945fd1a085a2aeb_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_5945fd1a085a2aeb_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_5945fd1a085a2aeb_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_5fa30f82f962b236_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_5fa30f82f962b236_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_5fa30f82f962b236_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_5fa30f82f962b236_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_615ec0bfb80acb1d_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_615ec0bfb80acb1d_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_615ec0bfb80acb1d_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_615ec0bfb80acb1d_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_701e7c156583abfc_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_701e7c156583abfc_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_701e7c156583abfc_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_701e7c156583abfc_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_7e31a38b70ecbddd_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_7e31a38b70ecbddd_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_7e31a38b70ecbddd_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_7e31a38b70ecbddd_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_86475f276fb14e06_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_86475f276fb14e06_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_86475f276fb14e06_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_86475f276fb14e06_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_a28e2885c4fe7e1c_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_a28e2885c4fe7e1c_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_a28e2885c4fe7e1c_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_a28e2885c4fe7e1c_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_bb3467a83b7dad05_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_bb3467a83b7dad05_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_bb3467a83b7dad05_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_bb3467a83b7dad05_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_cb44bdce7a961a9d_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_cb44bdce7a961a9d_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_cb44bdce7a961a9d_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_cb44bdce7a961a9d_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_dbcb14f0171b30d3_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_dbcb14f0171b30d3_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_dbcb14f0171b30d3_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_dbcb14f0171b30d3_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_dfe44df2c8105710_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_dfe44df2c8105710_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_dfe44df2c8105710_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_dfe44df2c8105710_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_f0599000a4f68a36_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_f0599000a4f68a36_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_f0599000a4f68a36_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_f0599000a4f68a36_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_f26190a488d42e7c_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_f26190a488d42e7c_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_f26190a488d42e7c_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_f26190a488d42e7c_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_f2e2eeb12e0e82c0_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_f2e2eeb12e0e82c0_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_f2e2eeb12e0e82c0_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_32x32_f2e2eeb12e0e82c0_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_0064d1faaf79a1de_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_0064d1faaf79a1de_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_0064d1faaf79a1de_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_0064d1faaf79a1de_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_0749accc3ceb7f65_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_0749accc3ceb7f65_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_0749accc3ceb7f65_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_0749accc3ceb7f65_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_0d85d548a5776b9c_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_0d85d548a5776b9c_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_0d85d548a5776b9c_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_0d85d548a5776b9c_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_1606dfde024ac097_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_1606dfde024ac097_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_1606dfde024ac097_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_1606dfde024ac097_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_16a58a4eea792bbe_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_16a58a4eea792bbe_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_16a58a4eea792bbe_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_16a58a4eea792bbe_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_175a89d65955dc3b_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_175a89d65955dc3b_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_175a89d65955dc3b_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_175a89d65955dc3b_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_1bf2957bffda8c54_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_1bf2957bffda8c54_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_1bf2957bffda8c54_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_1bf2957bffda8c54_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_360b0a27d8d03e02_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_360b0a27d8d03e02_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_360b0a27d8d03e02_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_360b0a27d8d03e02_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_42ca5ae71fc5a4dd_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_42ca5ae71fc5a4dd_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_42ca5ae71fc5a4dd_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_42ca5ae71fc5a4dd_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_4bb466582c2d7aff_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_4bb466582c2d7aff_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_4bb466582c2d7aff_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_4bb466582c2d7aff_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_6cf2ab7d53aae895_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_6cf2ab7d53aae895_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_6cf2ab7d53aae895_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_6cf2ab7d53aae895_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_6cfc7cc23de5c69b_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_6cfc7cc23de5c69b_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_6cfc7cc23de5c69b_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_6cfc7cc23de5c69b_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_7a518177afff0bc2_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_7a518177afff0bc2_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_7a518177afff0bc2_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_7a518177afff0bc2_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_835ed629d0fed238_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_835ed629d0fed238_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_835ed629d0fed238_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_835ed629d0fed238_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_af76096726fc1854_14.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_af76096726fc1854_14.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_af76096726fc1854_14.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_af76096726fc1854_14.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_bfdffec3c8943aea_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_bfdffec3c8943aea_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_bfdffec3c8943aea_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_bfdffec3c8943aea_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_c5fa21384e2e25f7_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_c5fa21384e2e25f7_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_c5fa21384e2e25f7_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_c5fa21384e2e25f7_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_ec8bc72a0c6b2b7d_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_ec8bc72a0c6b2b7d_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_ec8bc72a0c6b2b7d_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_ec8bc72a0c6b2b7d_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_f5cdd86ad2b9b9c3_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_f5cdd86ad2b9b9c3_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_f5cdd86ad2b9b9c3_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_f5cdd86ad2b9b9c3_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_f86841b072527b52_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_f86841b072527b52_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_f86841b072527b52_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_f86841b072527b52_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_ffeb4d8af2d792d8_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_ffeb4d8af2d792d8_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_ffeb4d8af2d792d8_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x32_ffeb4d8af2d792d8_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x64_db014c47357a98a2_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x64_db014c47357a98a2_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x64_db014c47357a98a2_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_64x64_db014c47357a98a2_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_23cf53ad89c9fd1b_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_23cf53ad89c9fd1b_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_23cf53ad89c9fd1b_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_23cf53ad89c9fd1b_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_59808344c616ced7_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_59808344c616ced7_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_59808344c616ced7_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_59808344c616ced7_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_6ac1c1da82026c89_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_6ac1c1da82026c89_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_6ac1c1da82026c89_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_6ac1c1da82026c89_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_70ff98b99f564308_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_70ff98b99f564308_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_70ff98b99f564308_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_70ff98b99f564308_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_75914a5d05565cd7_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_75914a5d05565cd7_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_75914a5d05565cd7_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_75914a5d05565cd7_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_7fbc4a84faef18ee_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_7fbc4a84faef18ee_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_7fbc4a84faef18ee_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_7fbc4a84faef18ee_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_86d6d4197093f397_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_86d6d4197093f397_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_86d6d4197093f397_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_86d6d4197093f397_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_93dd5118ba11a908_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_93dd5118ba11a908_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_93dd5118ba11a908_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_93dd5118ba11a908_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_a05f9156a9b8da71_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_a05f9156a9b8da71_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_a05f9156a9b8da71_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP2/tex1_76x32_a05f9156a9b8da71_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_128x115_05ace719b52918bb_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_128x115_05ace719b52918bb_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_128x115_05ace719b52918bb_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_128x115_05ace719b52918bb_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_128x115_40ea01bf6f2aceae_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_128x115_40ea01bf6f2aceae_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_128x115_40ea01bf6f2aceae_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_128x115_40ea01bf6f2aceae_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_10ca6dca25531ce9_4.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_10ca6dca25531ce9_4.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_10ca6dca25531ce9_4.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_10ca6dca25531ce9_4.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_2d9b5d2d0a406a63_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_2d9b5d2d0a406a63_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_2d9b5d2d0a406a63_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_2d9b5d2d0a406a63_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_380a4ed102753a91_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_380a4ed102753a91_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_380a4ed102753a91_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_380a4ed102753a91_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_43be3d9c0c2e2dbd_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_43be3d9c0c2e2dbd_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_43be3d9c0c2e2dbd_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_43be3d9c0c2e2dbd_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_4eb90bb511d2b10e_4.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_4eb90bb511d2b10e_4.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_4eb90bb511d2b10e_4.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_4eb90bb511d2b10e_4.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_52bc65cd8d4b0905_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_52bc65cd8d4b0905_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_52bc65cd8d4b0905_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_52bc65cd8d4b0905_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_70a90df632629730_4.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_70a90df632629730_4.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_70a90df632629730_4.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_70a90df632629730_4.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_877ac67dc3c23f97_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_877ac67dc3c23f97_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_877ac67dc3c23f97_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_877ac67dc3c23f97_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_8a3e8ec9d97c84f7_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_8a3e8ec9d97c84f7_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_8a3e8ec9d97c84f7_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_8a3e8ec9d97c84f7_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_96342171475066ab_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_96342171475066ab_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_96342171475066ab_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_96342171475066ab_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_975e1a31b02a2a68_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_975e1a31b02a2a68_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_975e1a31b02a2a68_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_975e1a31b02a2a68_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_9af2d52683113ecc_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_9af2d52683113ecc_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_9af2d52683113ecc_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_9af2d52683113ecc_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_b0c321687c7a410b_5.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_b0c321687c7a410b_5.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_b0c321687c7a410b_5.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_b0c321687c7a410b_5.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_b7bcef92f3f7378d_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_b7bcef92f3f7378d_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_b7bcef92f3f7378d_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_b7bcef92f3f7378d_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_d3576576ea854c06_4.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_d3576576ea854c06_4.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_d3576576ea854c06_4.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_d3576576ea854c06_4.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_e81f99c205eb24d0_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_e81f99c205eb24d0_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_e81f99c205eb24d0_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_e81f99c205eb24d0_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_f00e0e837140250a_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_f00e0e837140250a_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_f00e0e837140250a_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_32x32_f00e0e837140250a_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_4c3b4cc767632866_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_4c3b4cc767632866_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_4c3b4cc767632866_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_4c3b4cc767632866_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_970859e57fe24761_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_970859e57fe24761_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_970859e57fe24761_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_970859e57fe24761_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_a60e7e0eac9a75e7_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_a60e7e0eac9a75e7_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_a60e7e0eac9a75e7_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_a60e7e0eac9a75e7_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_bf0e66339a12f23a_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_bf0e66339a12f23a_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_bf0e66339a12f23a_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_bf0e66339a12f23a_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_e65a03d74465035d_6.dds b/config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_e65a03d74465035d_6.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_e65a03d74465035d_6.dds rename to config/primehack/data/R3M/0EXTRA - Steam Deck Button Prompts/MP3/tex1_40x32_e65a03d74465035d_6.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_19d4c177bfa5255a_14.dds b/config/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_19d4c177bfa5255a_14.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_19d4c177bfa5255a_14.dds rename to config/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_19d4c177bfa5255a_14.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_344dcedb01a9a7ff_14.dds b/config/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_344dcedb01a9a7ff_14.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_344dcedb01a9a7ff_14.dds rename to config/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_344dcedb01a9a7ff_14.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_5767fae3e9c2ec7b_14.dds b/config/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_5767fae3e9c2ec7b_14.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_5767fae3e9c2ec7b_14.dds rename to config/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_5767fae3e9c2ec7b_14.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_ad15d2f8f67a24d8_14.dds b/config/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_ad15d2f8f67a24d8_14.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_ad15d2f8f67a24d8_14.dds rename to config/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_ad15d2f8f67a24d8_14.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_d7651895d8b4b6e0_14.dds b/config/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_d7651895d8b4b6e0_14.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_d7651895d8b4b6e0_14.dds rename to config/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_d7651895d8b4b6e0_14.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_daf65c9d00a79c85_14.dds b/config/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_daf65c9d00a79c85_14.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_daf65c9d00a79c85_14.dds rename to config/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_daf65c9d00a79c85_14.dds diff --git a/emu-configs/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_f4681588babc937c_14.dds b/config/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_f4681588babc937c_14.dds similarity index 100% rename from emu-configs/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_f4681588babc937c_14.dds rename to config/primehack/data/R3M/0EXTRA - Wiimote Warning Replacement/tex1_832x456_f4681588babc937c_14.dds diff --git a/emu-configs/retroarch/ScummVM.zip b/config/retroarch/ScummVM.zip similarity index 100% rename from emu-configs/retroarch/ScummVM.zip rename to config/retroarch/ScummVM.zip diff --git a/emu-configs/retroarch/borders/NyNy77/AAE-nyny77.cfg b/config/retroarch/borders/NyNy77/AAE-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AAE-nyny77.cfg rename to config/retroarch/borders/NyNy77/AAE-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/AAE-nyny77.png b/config/retroarch/borders/NyNy77/AAE-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AAE-nyny77.png rename to config/retroarch/borders/NyNy77/AAE-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/ALFTVGame-nyny77.cfg b/config/retroarch/borders/NyNy77/ALFTVGame-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ALFTVGame-nyny77.cfg rename to config/retroarch/borders/NyNy77/ALFTVGame-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/ALFTVGame-nyny77.png b/config/retroarch/borders/NyNy77/ALFTVGame-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ALFTVGame-nyny77.png rename to config/retroarch/borders/NyNy77/ALFTVGame-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/APFImagination-nyny77.cfg b/config/retroarch/borders/NyNy77/APFImagination-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/APFImagination-nyny77.cfg rename to config/retroarch/borders/NyNy77/APFImagination-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/APFImagination-nyny77.png b/config/retroarch/borders/NyNy77/APFImagination-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/APFImagination-nyny77.png rename to config/retroarch/borders/NyNy77/APFImagination-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/AcornAchimedes-nyny77.cfg b/config/retroarch/borders/NyNy77/AcornAchimedes-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AcornAchimedes-nyny77.cfg rename to config/retroarch/borders/NyNy77/AcornAchimedes-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/AcornAchimedes-nyny77.png b/config/retroarch/borders/NyNy77/AcornAchimedes-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AcornAchimedes-nyny77.png rename to config/retroarch/borders/NyNy77/AcornAchimedes-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/AcornAtom-nyny77.cfg b/config/retroarch/borders/NyNy77/AcornAtom-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AcornAtom-nyny77.cfg rename to config/retroarch/borders/NyNy77/AcornAtom-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/AcornAtom-nyny77.png b/config/retroarch/borders/NyNy77/AcornAtom-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AcornAtom-nyny77.png rename to config/retroarch/borders/NyNy77/AcornAtom-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/AcornBBCMicro-nyny77.cfg b/config/retroarch/borders/NyNy77/AcornBBCMicro-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AcornBBCMicro-nyny77.cfg rename to config/retroarch/borders/NyNy77/AcornBBCMicro-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/AcornBBCMicro-nyny77.png b/config/retroarch/borders/NyNy77/AcornBBCMicro-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AcornBBCMicro-nyny77.png rename to config/retroarch/borders/NyNy77/AcornBBCMicro-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/AcornElectron-nyny77.cfg b/config/retroarch/borders/NyNy77/AcornElectron-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AcornElectron-nyny77.cfg rename to config/retroarch/borders/NyNy77/AcornElectron-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/AcornElectron-nyny77.png b/config/retroarch/borders/NyNy77/AcornElectron-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AcornElectron-nyny77.png rename to config/retroarch/borders/NyNy77/AcornElectron-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/ActionMax-nyny77.cfg b/config/retroarch/borders/NyNy77/ActionMax-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ActionMax-nyny77.cfg rename to config/retroarch/borders/NyNy77/ActionMax-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/ActionMax-nyny77.png b/config/retroarch/borders/NyNy77/ActionMax-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ActionMax-nyny77.png rename to config/retroarch/borders/NyNy77/ActionMax-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/AdventureVision-nyny77.cfg b/config/retroarch/borders/NyNy77/AdventureVision-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AdventureVision-nyny77.cfg rename to config/retroarch/borders/NyNy77/AdventureVision-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/AdventureVision-nyny77.png b/config/retroarch/borders/NyNy77/AdventureVision-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AdventureVision-nyny77.png rename to config/retroarch/borders/NyNy77/AdventureVision-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/AmericanLaserGames-nyny77.cfg b/config/retroarch/borders/NyNy77/AmericanLaserGames-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AmericanLaserGames-nyny77.cfg rename to config/retroarch/borders/NyNy77/AmericanLaserGames-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/AmericanLaserGames-nyny77.png b/config/retroarch/borders/NyNy77/AmericanLaserGames-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AmericanLaserGames-nyny77.png rename to config/retroarch/borders/NyNy77/AmericanLaserGames-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Amiga-nyny77.cfg b/config/retroarch/borders/NyNy77/Amiga-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Amiga-nyny77.cfg rename to config/retroarch/borders/NyNy77/Amiga-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Amiga-nyny77.png b/config/retroarch/borders/NyNy77/Amiga-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Amiga-nyny77.png rename to config/retroarch/borders/NyNy77/Amiga-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/AmigaCD32-nyny77.cfg b/config/retroarch/borders/NyNy77/AmigaCD32-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AmigaCD32-nyny77.cfg rename to config/retroarch/borders/NyNy77/AmigaCD32-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/AmigaCD32-nyny77.png b/config/retroarch/borders/NyNy77/AmigaCD32-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AmigaCD32-nyny77.png rename to config/retroarch/borders/NyNy77/AmigaCD32-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Amstrad-nyny77.cfg b/config/retroarch/borders/NyNy77/Amstrad-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Amstrad-nyny77.cfg rename to config/retroarch/borders/NyNy77/Amstrad-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Amstrad-nyny77.png b/config/retroarch/borders/NyNy77/Amstrad-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Amstrad-nyny77.png rename to config/retroarch/borders/NyNy77/Amstrad-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/AmstradCPC-nyny77.cfg b/config/retroarch/borders/NyNy77/AmstradCPC-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AmstradCPC-nyny77.cfg rename to config/retroarch/borders/NyNy77/AmstradCPC-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/AmstradCPC-nyny77.png b/config/retroarch/borders/NyNy77/AmstradCPC-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AmstradCPC-nyny77.png rename to config/retroarch/borders/NyNy77/AmstradCPC-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/AmstradGX4000-nyny77.cfg b/config/retroarch/borders/NyNy77/AmstradGX4000-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AmstradGX4000-nyny77.cfg rename to config/retroarch/borders/NyNy77/AmstradGX4000-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/AmstradGX4000-nyny77.png b/config/retroarch/borders/NyNy77/AmstradGX4000-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AmstradGX4000-nyny77.png rename to config/retroarch/borders/NyNy77/AmstradGX4000-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Android-nyny77.cfg b/config/retroarch/borders/NyNy77/Android-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Android-nyny77.cfg rename to config/retroarch/borders/NyNy77/Android-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Android-nyny77.png b/config/retroarch/borders/NyNy77/Android-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Android-nyny77.png rename to config/retroarch/borders/NyNy77/Android-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Apogee-nyny77.cfg b/config/retroarch/borders/NyNy77/Apogee-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Apogee-nyny77.cfg rename to config/retroarch/borders/NyNy77/Apogee-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Apogee-nyny77.png b/config/retroarch/borders/NyNy77/Apogee-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Apogee-nyny77.png rename to config/retroarch/borders/NyNy77/Apogee-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Apple-nyny77.cfg b/config/retroarch/borders/NyNy77/Apple-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Apple-nyny77.cfg rename to config/retroarch/borders/NyNy77/Apple-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Apple-nyny77.png b/config/retroarch/borders/NyNy77/Apple-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Apple-nyny77.png rename to config/retroarch/borders/NyNy77/Apple-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Apple2-nyny77.cfg b/config/retroarch/borders/NyNy77/Apple2-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Apple2-nyny77.cfg rename to config/retroarch/borders/NyNy77/Apple2-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Apple2-nyny77.png b/config/retroarch/borders/NyNy77/Apple2-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Apple2-nyny77.png rename to config/retroarch/borders/NyNy77/Apple2-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Apple2GS-nyny77.cfg b/config/retroarch/borders/NyNy77/Apple2GS-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Apple2GS-nyny77.cfg rename to config/retroarch/borders/NyNy77/Apple2GS-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Apple2GS-nyny77.png b/config/retroarch/borders/NyNy77/Apple2GS-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Apple2GS-nyny77.png rename to config/retroarch/borders/NyNy77/Apple2GS-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Arcadia2001-nyny77.cfg b/config/retroarch/borders/NyNy77/Arcadia2001-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Arcadia2001-nyny77.cfg rename to config/retroarch/borders/NyNy77/Arcadia2001-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Arcadia2001-nyny77.png b/config/retroarch/borders/NyNy77/Arcadia2001-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Arcadia2001-nyny77.png rename to config/retroarch/borders/NyNy77/Arcadia2001-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Atari2600-nyny77.cfg b/config/retroarch/borders/NyNy77/Atari2600-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Atari2600-nyny77.cfg rename to config/retroarch/borders/NyNy77/Atari2600-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Atari2600-nyny77.png b/config/retroarch/borders/NyNy77/Atari2600-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Atari2600-nyny77.png rename to config/retroarch/borders/NyNy77/Atari2600-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Atari5200-nyny77.cfg b/config/retroarch/borders/NyNy77/Atari5200-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Atari5200-nyny77.cfg rename to config/retroarch/borders/NyNy77/Atari5200-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Atari5200-nyny77.png b/config/retroarch/borders/NyNy77/Atari5200-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Atari5200-nyny77.png rename to config/retroarch/borders/NyNy77/Atari5200-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Atari7800-nyny77.cfg b/config/retroarch/borders/NyNy77/Atari7800-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Atari7800-nyny77.cfg rename to config/retroarch/borders/NyNy77/Atari7800-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Atari7800-nyny77.png b/config/retroarch/borders/NyNy77/Atari7800-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Atari7800-nyny77.png rename to config/retroarch/borders/NyNy77/Atari7800-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/AtariJaguar-nyny77.cfg b/config/retroarch/borders/NyNy77/AtariJaguar-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AtariJaguar-nyny77.cfg rename to config/retroarch/borders/NyNy77/AtariJaguar-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/AtariJaguar-nyny77.png b/config/retroarch/borders/NyNy77/AtariJaguar-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AtariJaguar-nyny77.png rename to config/retroarch/borders/NyNy77/AtariJaguar-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/AtariLynxBezel-nyny77.cfg b/config/retroarch/borders/NyNy77/AtariLynxBezel-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AtariLynxBezel-nyny77.cfg rename to config/retroarch/borders/NyNy77/AtariLynxBezel-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/AtariLynxBezel-nyny77.png b/config/retroarch/borders/NyNy77/AtariLynxBezel-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AtariLynxBezel-nyny77.png rename to config/retroarch/borders/NyNy77/AtariLynxBezel-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/AtariST-nyny77.cfg b/config/retroarch/borders/NyNy77/AtariST-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AtariST-nyny77.cfg rename to config/retroarch/borders/NyNy77/AtariST-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/AtariST-nyny77.png b/config/retroarch/borders/NyNy77/AtariST-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AtariST-nyny77.png rename to config/retroarch/borders/NyNy77/AtariST-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/AtariSuperCharger-nyny77.cfg b/config/retroarch/borders/NyNy77/AtariSuperCharger-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AtariSuperCharger-nyny77.cfg rename to config/retroarch/borders/NyNy77/AtariSuperCharger-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/AtariSuperCharger-nyny77.png b/config/retroarch/borders/NyNy77/AtariSuperCharger-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AtariSuperCharger-nyny77.png rename to config/retroarch/borders/NyNy77/AtariSuperCharger-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/AtariXE-nyny77.cfg b/config/retroarch/borders/NyNy77/AtariXE-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AtariXE-nyny77.cfg rename to config/retroarch/borders/NyNy77/AtariXE-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/AtariXE-nyny77.png b/config/retroarch/borders/NyNy77/AtariXE-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/AtariXE-nyny77.png rename to config/retroarch/borders/NyNy77/AtariXE-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/BallyAstrocade-nyny77.cfg b/config/retroarch/borders/NyNy77/BallyAstrocade-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/BallyAstrocade-nyny77.cfg rename to config/retroarch/borders/NyNy77/BallyAstrocade-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/BallyAstrocade-nyny77.png b/config/retroarch/borders/NyNy77/BallyAstrocade-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/BallyAstrocade-nyny77.png rename to config/retroarch/borders/NyNy77/BallyAstrocade-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/BandaiPlaydia-nyny77.cfg b/config/retroarch/borders/NyNy77/BandaiPlaydia-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/BandaiPlaydia-nyny77.cfg rename to config/retroarch/borders/NyNy77/BandaiPlaydia-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/BandaiPlaydia-nyny77.png b/config/retroarch/borders/NyNy77/BandaiPlaydia-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/BandaiPlaydia-nyny77.png rename to config/retroarch/borders/NyNy77/BandaiPlaydia-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/BandaiSwanCrystal-nyny77.cfg b/config/retroarch/borders/NyNy77/BandaiSwanCrystal-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/BandaiSwanCrystal-nyny77.cfg rename to config/retroarch/borders/NyNy77/BandaiSwanCrystal-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/BandaiSwanCrystal-nyny77.png b/config/retroarch/borders/NyNy77/BandaiSwanCrystal-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/BandaiSwanCrystal-nyny77.png rename to config/retroarch/borders/NyNy77/BandaiSwanCrystal-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/BandaiWonderSwan-nyny77.cfg b/config/retroarch/borders/NyNy77/BandaiWonderSwan-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/BandaiWonderSwan-nyny77.cfg rename to config/retroarch/borders/NyNy77/BandaiWonderSwan-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/BandaiWonderSwan-nyny77.png b/config/retroarch/borders/NyNy77/BandaiWonderSwan-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/BandaiWonderSwan-nyny77.png rename to config/retroarch/borders/NyNy77/BandaiWonderSwan-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/BandaiWonderSwanColor-nyny77.cfg b/config/retroarch/borders/NyNy77/BandaiWonderSwanColor-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/BandaiWonderSwanColor-nyny77.cfg rename to config/retroarch/borders/NyNy77/BandaiWonderSwanColor-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/BandaiWonderSwanColor-nyny77.png b/config/retroarch/borders/NyNy77/BandaiWonderSwanColor-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/BandaiWonderSwanColor-nyny77.png rename to config/retroarch/borders/NyNy77/BandaiWonderSwanColor-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/BigFishGames-nyny77.cfg b/config/retroarch/borders/NyNy77/BigFishGames-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/BigFishGames-nyny77.cfg rename to config/retroarch/borders/NyNy77/BigFishGames-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/BigFishGames-nyny77.png b/config/retroarch/borders/NyNy77/BigFishGames-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/BigFishGames-nyny77.png rename to config/retroarch/borders/NyNy77/BigFishGames-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/CDTV-nyny77.cfg b/config/retroarch/borders/NyNy77/CDTV-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CDTV-nyny77.cfg rename to config/retroarch/borders/NyNy77/CDTV-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/CDTV-nyny77.png b/config/retroarch/borders/NyNy77/CDTV-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CDTV-nyny77.png rename to config/retroarch/borders/NyNy77/CDTV-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/CamputersLynx-nyny77.cfg b/config/retroarch/borders/NyNy77/CamputersLynx-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CamputersLynx-nyny77.cfg rename to config/retroarch/borders/NyNy77/CamputersLynx-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/CamputersLynx-nyny77.png b/config/retroarch/borders/NyNy77/CamputersLynx-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CamputersLynx-nyny77.png rename to config/retroarch/borders/NyNy77/CamputersLynx-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/CapcomCPS1-nyny77.cfg b/config/retroarch/borders/NyNy77/CapcomCPS1-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CapcomCPS1-nyny77.cfg rename to config/retroarch/borders/NyNy77/CapcomCPS1-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/CapcomCPS1-nyny77.png b/config/retroarch/borders/NyNy77/CapcomCPS1-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CapcomCPS1-nyny77.png rename to config/retroarch/borders/NyNy77/CapcomCPS1-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/CapcomCPS2-nyny77.cfg b/config/retroarch/borders/NyNy77/CapcomCPS2-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CapcomCPS2-nyny77.cfg rename to config/retroarch/borders/NyNy77/CapcomCPS2-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/CapcomCPS2-nyny77.png b/config/retroarch/borders/NyNy77/CapcomCPS2-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CapcomCPS2-nyny77.png rename to config/retroarch/borders/NyNy77/CapcomCPS2-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/CapcomCPS3-nyny77.cfg b/config/retroarch/borders/NyNy77/CapcomCPS3-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CapcomCPS3-nyny77.cfg rename to config/retroarch/borders/NyNy77/CapcomCPS3-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/CapcomCPS3-nyny77.png b/config/retroarch/borders/NyNy77/CapcomCPS3-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CapcomCPS3-nyny77.png rename to config/retroarch/borders/NyNy77/CapcomCPS3-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/CapcomPowerSystemChnager-nyny77.cfg b/config/retroarch/borders/NyNy77/CapcomPowerSystemChnager-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CapcomPowerSystemChnager-nyny77.cfg rename to config/retroarch/borders/NyNy77/CapcomPowerSystemChnager-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/CapcomPowerSystemChnager-nyny77.png b/config/retroarch/borders/NyNy77/CapcomPowerSystemChnager-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CapcomPowerSystemChnager-nyny77.png rename to config/retroarch/borders/NyNy77/CapcomPowerSystemChnager-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/CasioPV1000-nyny77.cfg b/config/retroarch/borders/NyNy77/CasioPV1000-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CasioPV1000-nyny77.cfg rename to config/retroarch/borders/NyNy77/CasioPV1000-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/CasioPV1000-nyny77.png b/config/retroarch/borders/NyNy77/CasioPV1000-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CasioPV1000-nyny77.png rename to config/retroarch/borders/NyNy77/CasioPV1000-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/CasioPV1000b-nyny77.cfg b/config/retroarch/borders/NyNy77/CasioPV1000b-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CasioPV1000b-nyny77.cfg rename to config/retroarch/borders/NyNy77/CasioPV1000b-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/CasioPV1000b-nyny77.png b/config/retroarch/borders/NyNy77/CasioPV1000b-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CasioPV1000b-nyny77.png rename to config/retroarch/borders/NyNy77/CasioPV1000b-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Cave-nyny77.cfg b/config/retroarch/borders/NyNy77/Cave-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Cave-nyny77.cfg rename to config/retroarch/borders/NyNy77/Cave-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Cave-nyny77.png b/config/retroarch/borders/NyNy77/Cave-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Cave-nyny77.png rename to config/retroarch/borders/NyNy77/Cave-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/ColecoAdam-nyny77.cfg b/config/retroarch/borders/NyNy77/ColecoAdam-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ColecoAdam-nyny77.cfg rename to config/retroarch/borders/NyNy77/ColecoAdam-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/ColecoAdam-nyny77.png b/config/retroarch/borders/NyNy77/ColecoAdam-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ColecoAdam-nyny77.png rename to config/retroarch/borders/NyNy77/ColecoAdam-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/ColecoVision-nyny77.cfg b/config/retroarch/borders/NyNy77/ColecoVision-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ColecoVision-nyny77.cfg rename to config/retroarch/borders/NyNy77/ColecoVision-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/ColecoVision-nyny77.png b/config/retroarch/borders/NyNy77/ColecoVision-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ColecoVision-nyny77.png rename to config/retroarch/borders/NyNy77/ColecoVision-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Commodore16-nyny77.cfg b/config/retroarch/borders/NyNy77/Commodore16-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Commodore16-nyny77.cfg rename to config/retroarch/borders/NyNy77/Commodore16-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Commodore16-nyny77.png b/config/retroarch/borders/NyNy77/Commodore16-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Commodore16-nyny77.png rename to config/retroarch/borders/NyNy77/Commodore16-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Commodore16Plus4-nyny77.cfg b/config/retroarch/borders/NyNy77/Commodore16Plus4-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Commodore16Plus4-nyny77.cfg rename to config/retroarch/borders/NyNy77/Commodore16Plus4-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Commodore16Plus4-nyny77.png b/config/retroarch/borders/NyNy77/Commodore16Plus4-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Commodore16Plus4-nyny77.png rename to config/retroarch/borders/NyNy77/Commodore16Plus4-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Commodore64-nyny77.cfg b/config/retroarch/borders/NyNy77/Commodore64-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Commodore64-nyny77.cfg rename to config/retroarch/borders/NyNy77/Commodore64-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Commodore64-nyny77.png b/config/retroarch/borders/NyNy77/Commodore64-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Commodore64-nyny77.png rename to config/retroarch/borders/NyNy77/Commodore64-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/CommodoreMAX-nyny77.cfg b/config/retroarch/borders/NyNy77/CommodoreMAX-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CommodoreMAX-nyny77.cfg rename to config/retroarch/borders/NyNy77/CommodoreMAX-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/CommodoreMAX-nyny77.png b/config/retroarch/borders/NyNy77/CommodoreMAX-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CommodoreMAX-nyny77.png rename to config/retroarch/borders/NyNy77/CommodoreMAX-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/CommodoreVIC20-nyny77.cfg b/config/retroarch/borders/NyNy77/CommodoreVIC20-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CommodoreVIC20-nyny77.cfg rename to config/retroarch/borders/NyNy77/CommodoreVIC20-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/CommodoreVIC20-nyny77.png b/config/retroarch/borders/NyNy77/CommodoreVIC20-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/CommodoreVIC20-nyny77.png rename to config/retroarch/borders/NyNy77/CommodoreVIC20-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Daphne-nyny77.cfg b/config/retroarch/borders/NyNy77/Daphne-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Daphne-nyny77.cfg rename to config/retroarch/borders/NyNy77/Daphne-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Daphne-nyny77.png b/config/retroarch/borders/NyNy77/Daphne-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Daphne-nyny77.png rename to config/retroarch/borders/NyNy77/Daphne-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/DataEastClassics-nyny77.cfg b/config/retroarch/borders/NyNy77/DataEastClassics-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/DataEastClassics-nyny77.cfg rename to config/retroarch/borders/NyNy77/DataEastClassics-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/DataEastClassics-nyny77.png b/config/retroarch/borders/NyNy77/DataEastClassics-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/DataEastClassics-nyny77.png rename to config/retroarch/borders/NyNy77/DataEastClassics-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Dice-nyny77.cfg b/config/retroarch/borders/NyNy77/Dice-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Dice-nyny77.cfg rename to config/retroarch/borders/NyNy77/Dice-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Dice-nyny77.png b/config/retroarch/borders/NyNy77/Dice-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Dice-nyny77.png rename to config/retroarch/borders/NyNy77/Dice-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Dragon64-nyny77.cfg b/config/retroarch/borders/NyNy77/Dragon64-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Dragon64-nyny77.cfg rename to config/retroarch/borders/NyNy77/Dragon64-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Dragon64-nyny77.png b/config/retroarch/borders/NyNy77/Dragon64-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Dragon64-nyny77.png rename to config/retroarch/borders/NyNy77/Dragon64-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/EG2000ColourGenie-nyny77.cfg b/config/retroarch/borders/NyNy77/EG2000ColourGenie-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/EG2000ColourGenie-nyny77.cfg rename to config/retroarch/borders/NyNy77/EG2000ColourGenie-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/EG2000ColourGenie-nyny77.png b/config/retroarch/borders/NyNy77/EG2000ColourGenie-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/EG2000ColourGenie-nyny77.png rename to config/retroarch/borders/NyNy77/EG2000ColourGenie-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/ElektronikaBK-nyny77.cfg b/config/retroarch/borders/NyNy77/ElektronikaBK-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ElektronikaBK-nyny77.cfg rename to config/retroarch/borders/NyNy77/ElektronikaBK-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/ElektronikaBK-nyny77.png b/config/retroarch/borders/NyNy77/ElektronikaBK-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ElektronikaBK-nyny77.png rename to config/retroarch/borders/NyNy77/ElektronikaBK-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/EpochGamePocketComputer-nyny77.cfg b/config/retroarch/borders/NyNy77/EpochGamePocketComputer-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/EpochGamePocketComputer-nyny77.cfg rename to config/retroarch/borders/NyNy77/EpochGamePocketComputer-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/EpochGamePocketComputer-nyny77.png b/config/retroarch/borders/NyNy77/EpochGamePocketComputer-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/EpochGamePocketComputer-nyny77.png rename to config/retroarch/borders/NyNy77/EpochGamePocketComputer-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/ExamuExBoard-nyny77.cfg b/config/retroarch/borders/NyNy77/ExamuExBoard-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ExamuExBoard-nyny77.cfg rename to config/retroarch/borders/NyNy77/ExamuExBoard-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/ExamuExBoard-nyny77.png b/config/retroarch/borders/NyNy77/ExamuExBoard-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ExamuExBoard-nyny77.png rename to config/retroarch/borders/NyNy77/ExamuExBoard-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/ExidySorcerer-nyny77.cfg b/config/retroarch/borders/NyNy77/ExidySorcerer-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ExidySorcerer-nyny77.cfg rename to config/retroarch/borders/NyNy77/ExidySorcerer-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/ExidySorcerer-nyny77.png b/config/retroarch/borders/NyNy77/ExidySorcerer-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ExidySorcerer-nyny77.png rename to config/retroarch/borders/NyNy77/ExidySorcerer-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/FairchildChannelF-nyny77.cfg b/config/retroarch/borders/NyNy77/FairchildChannelF-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/FairchildChannelF-nyny77.cfg rename to config/retroarch/borders/NyNy77/FairchildChannelF-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/FairchildChannelF-nyny77.png b/config/retroarch/borders/NyNy77/FairchildChannelF-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/FairchildChannelF-nyny77.png rename to config/retroarch/borders/NyNy77/FairchildChannelF-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/FightCade-nyny77.cfg b/config/retroarch/borders/NyNy77/FightCade-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/FightCade-nyny77.cfg rename to config/retroarch/borders/NyNy77/FightCade-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/FightCade-nyny77.png b/config/retroarch/borders/NyNy77/FightCade-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/FightCade-nyny77.png rename to config/retroarch/borders/NyNy77/FightCade-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/FujitsuFMTownsMarty-nyny77.cfg b/config/retroarch/borders/NyNy77/FujitsuFMTownsMarty-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/FujitsuFMTownsMarty-nyny77.cfg rename to config/retroarch/borders/NyNy77/FujitsuFMTownsMarty-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/FujitsuFMTownsMarty-nyny77.png b/config/retroarch/borders/NyNy77/FujitsuFMTownsMarty-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/FujitsuFMTownsMarty-nyny77.png rename to config/retroarch/borders/NyNy77/FujitsuFMTownsMarty-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/FuntechSuperAcan-nyny77.cfg b/config/retroarch/borders/NyNy77/FuntechSuperAcan-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/FuntechSuperAcan-nyny77.cfg rename to config/retroarch/borders/NyNy77/FuntechSuperAcan-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/FuntechSuperAcan-nyny77.png b/config/retroarch/borders/NyNy77/FuntechSuperAcan-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/FuntechSuperAcan-nyny77.png rename to config/retroarch/borders/NyNy77/FuntechSuperAcan-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/GP32-nyny77.cfg b/config/retroarch/borders/NyNy77/GP32-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/GP32-nyny77.cfg rename to config/retroarch/borders/NyNy77/GP32-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/GP32-nyny77.png b/config/retroarch/borders/NyNy77/GP32-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/GP32-nyny77.png rename to config/retroarch/borders/NyNy77/GP32-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/GameMaster-nyny77.cfg b/config/retroarch/borders/NyNy77/GameMaster-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/GameMaster-nyny77.cfg rename to config/retroarch/borders/NyNy77/GameMaster-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/GameMaster-nyny77.png b/config/retroarch/borders/NyNy77/GameMaster-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/GameMaster-nyny77.png rename to config/retroarch/borders/NyNy77/GameMaster-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/GogCom-nyny77.cfg b/config/retroarch/borders/NyNy77/GogCom-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/GogCom-nyny77.cfg rename to config/retroarch/borders/NyNy77/GogCom-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/GogCom-nyny77.png b/config/retroarch/borders/NyNy77/GogCom-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/GogCom-nyny77.png rename to config/retroarch/borders/NyNy77/GogCom-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/HBMame-nyny77.cfg b/config/retroarch/borders/NyNy77/HBMame-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/HBMame-nyny77.cfg rename to config/retroarch/borders/NyNy77/HBMame-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/HBMame-nyny77.png b/config/retroarch/borders/NyNy77/HBMame-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/HBMame-nyny77.png rename to config/retroarch/borders/NyNy77/HBMame-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/IBM-nyny77.cfg b/config/retroarch/borders/NyNy77/IBM-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/IBM-nyny77.cfg rename to config/retroarch/borders/NyNy77/IBM-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/IBM-nyny77.png b/config/retroarch/borders/NyNy77/IBM-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/IBM-nyny77.png rename to config/retroarch/borders/NyNy77/IBM-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/IGSPolygameMaster-nyny77.cfg b/config/retroarch/borders/NyNy77/IGSPolygameMaster-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/IGSPolygameMaster-nyny77.cfg rename to config/retroarch/borders/NyNy77/IGSPolygameMaster-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/IGSPolygameMaster-nyny77.png b/config/retroarch/borders/NyNy77/IGSPolygameMaster-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/IGSPolygameMaster-nyny77.png rename to config/retroarch/borders/NyNy77/IGSPolygameMaster-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/IntertronVC4000-nyny77.cfg b/config/retroarch/borders/NyNy77/IntertronVC4000-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/IntertronVC4000-nyny77.cfg rename to config/retroarch/borders/NyNy77/IntertronVC4000-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/IntertronVC4000-nyny77.png b/config/retroarch/borders/NyNy77/IntertronVC4000-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/IntertronVC4000-nyny77.png rename to config/retroarch/borders/NyNy77/IntertronVC4000-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/IremClassics-nyny77.cfg b/config/retroarch/borders/NyNy77/IremClassics-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/IremClassics-nyny77.cfg rename to config/retroarch/borders/NyNy77/IremClassics-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/IremClassics-nyny77.png b/config/retroarch/borders/NyNy77/IremClassics-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/IremClassics-nyny77.png rename to config/retroarch/borders/NyNy77/IremClassics-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/JupiterAce-nyny77.cfg b/config/retroarch/borders/NyNy77/JupiterAce-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/JupiterAce-nyny77.cfg rename to config/retroarch/borders/NyNy77/JupiterAce-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/JupiterAce-nyny77.png b/config/retroarch/borders/NyNy77/JupiterAce-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/JupiterAce-nyny77.png rename to config/retroarch/borders/NyNy77/JupiterAce-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/KonamiEAmusement-nyny77.cfg b/config/retroarch/borders/NyNy77/KonamiEAmusement-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/KonamiEAmusement-nyny77.cfg rename to config/retroarch/borders/NyNy77/KonamiEAmusement-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/KonamiEAmusement-nyny77.png b/config/retroarch/borders/NyNy77/KonamiEAmusement-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/KonamiEAmusement-nyny77.png rename to config/retroarch/borders/NyNy77/KonamiEAmusement-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/KonamiGX400-nyny77.cfg b/config/retroarch/borders/NyNy77/KonamiGX400-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/KonamiGX400-nyny77.cfg rename to config/retroarch/borders/NyNy77/KonamiGX400-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/KonamiGX400-nyny77.png b/config/retroarch/borders/NyNy77/KonamiGX400-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/KonamiGX400-nyny77.png rename to config/retroarch/borders/NyNy77/KonamiGX400-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/KonamiRetro-nyny77.cfg b/config/retroarch/borders/NyNy77/KonamiRetro-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/KonamiRetro-nyny77.cfg rename to config/retroarch/borders/NyNy77/KonamiRetro-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/KonamiRetro-nyny77.png b/config/retroarch/borders/NyNy77/KonamiRetro-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/KonamiRetro-nyny77.png rename to config/retroarch/borders/NyNy77/KonamiRetro-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/LIVIV-PC01-nyny77.cfg b/config/retroarch/borders/NyNy77/LIVIV-PC01-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/LIVIV-PC01-nyny77.cfg rename to config/retroarch/borders/NyNy77/LIVIV-PC01-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/LIVIV-PC01-nyny77.png b/config/retroarch/borders/NyNy77/LIVIV-PC01-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/LIVIV-PC01-nyny77.png rename to config/retroarch/borders/NyNy77/LIVIV-PC01-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Loopy-nyny77.cfg b/config/retroarch/borders/NyNy77/Loopy-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Loopy-nyny77.cfg rename to config/retroarch/borders/NyNy77/Loopy-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Loopy-nyny77.png b/config/retroarch/borders/NyNy77/Loopy-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Loopy-nyny77.png rename to config/retroarch/borders/NyNy77/Loopy-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/MGTSamCoupe-nyny77.cfg b/config/retroarch/borders/NyNy77/MGTSamCoupe-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MGTSamCoupe-nyny77.cfg rename to config/retroarch/borders/NyNy77/MGTSamCoupe-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/MGTSamCoupe-nyny77.png b/config/retroarch/borders/NyNy77/MGTSamCoupe-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MGTSamCoupe-nyny77.png rename to config/retroarch/borders/NyNy77/MGTSamCoupe-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/MagnavoxOdyssey-nyny77.cfg b/config/retroarch/borders/NyNy77/MagnavoxOdyssey-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MagnavoxOdyssey-nyny77.cfg rename to config/retroarch/borders/NyNy77/MagnavoxOdyssey-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/MagnavoxOdyssey-nyny77.png b/config/retroarch/borders/NyNy77/MagnavoxOdyssey-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MagnavoxOdyssey-nyny77.png rename to config/retroarch/borders/NyNy77/MagnavoxOdyssey-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/MagnavoxOdyssey2-nyny77.cfg b/config/retroarch/borders/NyNy77/MagnavoxOdyssey2-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MagnavoxOdyssey2-nyny77.cfg rename to config/retroarch/borders/NyNy77/MagnavoxOdyssey2-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/MagnavoxOdyssey2-nyny77.png b/config/retroarch/borders/NyNy77/MagnavoxOdyssey2-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MagnavoxOdyssey2-nyny77.png rename to config/retroarch/borders/NyNy77/MagnavoxOdyssey2-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Mame-nyny77.cfg b/config/retroarch/borders/NyNy77/Mame-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Mame-nyny77.cfg rename to config/retroarch/borders/NyNy77/Mame-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Mame-nyny77.png b/config/retroarch/borders/NyNy77/Mame-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Mame-nyny77.png rename to config/retroarch/borders/NyNy77/Mame-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/MattelAquarius-nyny77.cfg b/config/retroarch/borders/NyNy77/MattelAquarius-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MattelAquarius-nyny77.cfg rename to config/retroarch/borders/NyNy77/MattelAquarius-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/MattelAquarius-nyny77.png b/config/retroarch/borders/NyNy77/MattelAquarius-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MattelAquarius-nyny77.png rename to config/retroarch/borders/NyNy77/MattelAquarius-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/MattelInteliVision-nyny77.cfg b/config/retroarch/borders/NyNy77/MattelInteliVision-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MattelInteliVision-nyny77.cfg rename to config/retroarch/borders/NyNy77/MattelInteliVision-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/MattelInteliVision-nyny77.png b/config/retroarch/borders/NyNy77/MattelInteliVision-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MattelInteliVision-nyny77.png rename to config/retroarch/borders/NyNy77/MattelInteliVision-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/MattelIntelliVision-nyny77.cfg b/config/retroarch/borders/NyNy77/MattelIntelliVision-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MattelIntelliVision-nyny77.cfg rename to config/retroarch/borders/NyNy77/MattelIntelliVision-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/MattelIntelliVision-nyny77.png b/config/retroarch/borders/NyNy77/MattelIntelliVision-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MattelIntelliVision-nyny77.png rename to config/retroarch/borders/NyNy77/MattelIntelliVision-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/MegaDuck-nyny77.cfg b/config/retroarch/borders/NyNy77/MegaDuck-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MegaDuck-nyny77.cfg rename to config/retroarch/borders/NyNy77/MegaDuck-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/MegaDuck-nyny77.png b/config/retroarch/borders/NyNy77/MegaDuck-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MegaDuck-nyny77.png rename to config/retroarch/borders/NyNy77/MegaDuck-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/MicrosoftDOS-nyny77.cfg b/config/retroarch/borders/NyNy77/MicrosoftDOS-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MicrosoftDOS-nyny77.cfg rename to config/retroarch/borders/NyNy77/MicrosoftDOS-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/MicrosoftDOS-nyny77.png b/config/retroarch/borders/NyNy77/MicrosoftDOS-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MicrosoftDOS-nyny77.png rename to config/retroarch/borders/NyNy77/MicrosoftDOS-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/MicrosoftMSX-nyny77.cfg b/config/retroarch/borders/NyNy77/MicrosoftMSX-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MicrosoftMSX-nyny77.cfg rename to config/retroarch/borders/NyNy77/MicrosoftMSX-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/MicrosoftMSX-nyny77.png b/config/retroarch/borders/NyNy77/MicrosoftMSX-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MicrosoftMSX-nyny77.png rename to config/retroarch/borders/NyNy77/MicrosoftMSX-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/MicrosoftMSX2-nyny77.cfg b/config/retroarch/borders/NyNy77/MicrosoftMSX2-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MicrosoftMSX2-nyny77.cfg rename to config/retroarch/borders/NyNy77/MicrosoftMSX2-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/MicrosoftMSX2-nyny77.png b/config/retroarch/borders/NyNy77/MicrosoftMSX2-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MicrosoftMSX2-nyny77.png rename to config/retroarch/borders/NyNy77/MicrosoftMSX2-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/MicrosoftMSXTurbo-nyny77.cfg b/config/retroarch/borders/NyNy77/MicrosoftMSXTurbo-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MicrosoftMSXTurbo-nyny77.cfg rename to config/retroarch/borders/NyNy77/MicrosoftMSXTurbo-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/MicrosoftMSXTurbo-nyny77.png b/config/retroarch/borders/NyNy77/MicrosoftMSXTurbo-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MicrosoftMSXTurbo-nyny77.png rename to config/retroarch/borders/NyNy77/MicrosoftMSXTurbo-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/MicrosoftXBox-nyny77.cfg b/config/retroarch/borders/NyNy77/MicrosoftXBox-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MicrosoftXBox-nyny77.cfg rename to config/retroarch/borders/NyNy77/MicrosoftXBox-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/MicrosoftXBox-nyny77.png b/config/retroarch/borders/NyNy77/MicrosoftXBox-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MicrosoftXBox-nyny77.png rename to config/retroarch/borders/NyNy77/MicrosoftXBox-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/MidwayTUnit-nyny77.cfg b/config/retroarch/borders/NyNy77/MidwayTUnit-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MidwayTUnit-nyny77.cfg rename to config/retroarch/borders/NyNy77/MidwayTUnit-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/MidwayTUnit-nyny77.png b/config/retroarch/borders/NyNy77/MidwayTUnit-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MidwayTUnit-nyny77.png rename to config/retroarch/borders/NyNy77/MidwayTUnit-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/MidwayWolfUnit-nyny77.cfg b/config/retroarch/borders/NyNy77/MidwayWolfUnit-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MidwayWolfUnit-nyny77.cfg rename to config/retroarch/borders/NyNy77/MidwayWolfUnit-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/MidwayWolfUnit-nyny77.png b/config/retroarch/borders/NyNy77/MidwayWolfUnit-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/MidwayWolfUnit-nyny77.png rename to config/retroarch/borders/NyNy77/MidwayWolfUnit-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Mugen-nyny77.cfg b/config/retroarch/borders/NyNy77/Mugen-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Mugen-nyny77.cfg rename to config/retroarch/borders/NyNy77/Mugen-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Mugen-nyny77.png b/config/retroarch/borders/NyNy77/Mugen-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Mugen-nyny77.png rename to config/retroarch/borders/NyNy77/Mugen-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NECPC8801-nyny77.cfg b/config/retroarch/borders/NyNy77/NECPC8801-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NECPC8801-nyny77.cfg rename to config/retroarch/borders/NyNy77/NECPC8801-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NECPC8801-nyny77.png b/config/retroarch/borders/NyNy77/NECPC8801-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NECPC8801-nyny77.png rename to config/retroarch/borders/NyNy77/NECPC8801-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NECPC9801-nyny77.cfg b/config/retroarch/borders/NyNy77/NECPC9801-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NECPC9801-nyny77.cfg rename to config/retroarch/borders/NyNy77/NECPC9801-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NECPC9801-nyny77.png b/config/retroarch/borders/NyNy77/NECPC9801-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NECPC9801-nyny77.png rename to config/retroarch/borders/NyNy77/NECPC9801-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NECPCEngine-nyny77.cfg b/config/retroarch/borders/NyNy77/NECPCEngine-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NECPCEngine-nyny77.cfg rename to config/retroarch/borders/NyNy77/NECPCEngine-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NECPCEngine-nyny77.png b/config/retroarch/borders/NyNy77/NECPCEngine-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NECPCEngine-nyny77.png rename to config/retroarch/borders/NyNy77/NECPCEngine-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NECPCEngineCD-nyny77.cfg b/config/retroarch/borders/NyNy77/NECPCEngineCD-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NECPCEngineCD-nyny77.cfg rename to config/retroarch/borders/NyNy77/NECPCEngineCD-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NECPCEngineCD-nyny77.png b/config/retroarch/borders/NyNy77/NECPCEngineCD-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NECPCEngineCD-nyny77.png rename to config/retroarch/borders/NyNy77/NECPCEngineCD-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NECPCFX-nyny77.cfg b/config/retroarch/borders/NyNy77/NECPCFX-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NECPCFX-nyny77.cfg rename to config/retroarch/borders/NyNy77/NECPCFX-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NECPCFX-nyny77.png b/config/retroarch/borders/NyNy77/NECPCFX-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NECPCFX-nyny77.png rename to config/retroarch/borders/NyNy77/NECPCFX-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NECSuperGrafX-nyny77.cfg b/config/retroarch/borders/NyNy77/NECSuperGrafX-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NECSuperGrafX-nyny77.cfg rename to config/retroarch/borders/NyNy77/NECSuperGrafX-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NECSuperGrafX-nyny77.png b/config/retroarch/borders/NyNy77/NECSuperGrafX-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NECSuperGrafX-nyny77.png rename to config/retroarch/borders/NyNy77/NECSuperGrafX-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Namco-nyny77.cfg b/config/retroarch/borders/NyNy77/Namco-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Namco-nyny77.cfg rename to config/retroarch/borders/NyNy77/Namco-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Namco-nyny77.png b/config/retroarch/borders/NyNy77/Namco-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Namco-nyny77.png rename to config/retroarch/borders/NyNy77/Namco-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NamcoGalaga-nyny77.cfg b/config/retroarch/borders/NyNy77/NamcoGalaga-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NamcoGalaga-nyny77.cfg rename to config/retroarch/borders/NyNy77/NamcoGalaga-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NamcoGalaga-nyny77.png b/config/retroarch/borders/NyNy77/NamcoGalaga-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NamcoGalaga-nyny77.png rename to config/retroarch/borders/NyNy77/NamcoGalaga-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NamcoSystem22-nyny77.cfg b/config/retroarch/borders/NyNy77/NamcoSystem22-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NamcoSystem22-nyny77.cfg rename to config/retroarch/borders/NyNy77/NamcoSystem22-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NamcoSystem22-nyny77.png b/config/retroarch/borders/NyNy77/NamcoSystem22-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NamcoSystem22-nyny77.png rename to config/retroarch/borders/NyNy77/NamcoSystem22-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Naomi-nyny77.cfg b/config/retroarch/borders/NyNy77/Naomi-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Naomi-nyny77.cfg rename to config/retroarch/borders/NyNy77/Naomi-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Naomi-nyny77.png b/config/retroarch/borders/NyNy77/Naomi-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Naomi-nyny77.png rename to config/retroarch/borders/NyNy77/Naomi-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Naomi2-nyny77.cfg b/config/retroarch/borders/NyNy77/Naomi2-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Naomi2-nyny77.cfg rename to config/retroarch/borders/NyNy77/Naomi2-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Naomi2-nyny77.png b/config/retroarch/borders/NyNy77/Naomi2-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Naomi2-nyny77.png rename to config/retroarch/borders/NyNy77/Naomi2-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NecCoreGrafX-nyny77.cfg b/config/retroarch/borders/NyNy77/NecCoreGrafX-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NecCoreGrafX-nyny77.cfg rename to config/retroarch/borders/NyNy77/NecCoreGrafX-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NecCoreGrafX-nyny77.png b/config/retroarch/borders/NyNy77/NecCoreGrafX-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NecCoreGrafX-nyny77.png rename to config/retroarch/borders/NyNy77/NecCoreGrafX-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NecCoreGrafX2-nyny77.cfg b/config/retroarch/borders/NyNy77/NecCoreGrafX2-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NecCoreGrafX2-nyny77.cfg rename to config/retroarch/borders/NyNy77/NecCoreGrafX2-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NecCoreGrafX2-nyny77.png b/config/retroarch/borders/NyNy77/NecCoreGrafX2-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NecCoreGrafX2-nyny77.png rename to config/retroarch/borders/NyNy77/NecCoreGrafX2-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NecTurboDuo-nyny77.cfg b/config/retroarch/borders/NyNy77/NecTurboDuo-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NecTurboDuo-nyny77.cfg rename to config/retroarch/borders/NyNy77/NecTurboDuo-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NecTurboDuo-nyny77.png b/config/retroarch/borders/NyNy77/NecTurboDuo-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NecTurboDuo-nyny77.png rename to config/retroarch/borders/NyNy77/NecTurboDuo-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NecTurboGrafX16-nyny77.cfg b/config/retroarch/borders/NyNy77/NecTurboGrafX16-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NecTurboGrafX16-nyny77.cfg rename to config/retroarch/borders/NyNy77/NecTurboGrafX16-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NecTurboGrafX16-nyny77.png b/config/retroarch/borders/NyNy77/NecTurboGrafX16-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NecTurboGrafX16-nyny77.png rename to config/retroarch/borders/NyNy77/NecTurboGrafX16-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NecTurboGrafXCD-nyny77.cfg b/config/retroarch/borders/NyNy77/NecTurboGrafXCD-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NecTurboGrafXCD-nyny77.cfg rename to config/retroarch/borders/NyNy77/NecTurboGrafXCD-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NecTurboGrafXCD-nyny77.png b/config/retroarch/borders/NyNy77/NecTurboGrafXCD-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NecTurboGrafXCD-nyny77.png rename to config/retroarch/borders/NyNy77/NecTurboGrafXCD-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NecTurboGrafx16b-nyny77.cfg b/config/retroarch/borders/NyNy77/NecTurboGrafx16b-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NecTurboGrafx16b-nyny77.cfg rename to config/retroarch/borders/NyNy77/NecTurboGrafx16b-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NecTurboGrafx16b-nyny77.png b/config/retroarch/borders/NyNy77/NecTurboGrafx16b-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NecTurboGrafx16b-nyny77.png rename to config/retroarch/borders/NyNy77/NecTurboGrafx16b-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoArcadeSystem-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoArcadeSystem-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoArcadeSystem-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoArcadeSystem-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoArcadeSystem-nyny77.png b/config/retroarch/borders/NyNy77/NintendoArcadeSystem-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoArcadeSystem-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoArcadeSystem-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoEntertainmentSystem-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoEntertainmentSystem-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoEntertainmentSystem-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoEntertainmentSystem-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoEntertainmentSystem-nyny77.png b/config/retroarch/borders/NyNy77/NintendoEntertainmentSystem-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoEntertainmentSystem-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoEntertainmentSystem-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoFamicomDiskSystem-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoFamicomDiskSystem-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoFamicomDiskSystem-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoFamicomDiskSystem-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoFamicomDiskSystem-nyny77.png b/config/retroarch/borders/NyNy77/NintendoFamicomDiskSystem-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoFamicomDiskSystem-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoFamicomDiskSystem-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoFamicomFamily-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoFamicomFamily-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoFamicomFamily-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoFamicomFamily-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoFamicomFamily-nyny77.png b/config/retroarch/borders/NyNy77/NintendoFamicomFamily-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoFamicomFamily-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoFamicomFamily-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoFamilyComputer-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoFamilyComputer-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoFamilyComputer-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoFamilyComputer-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoFamilyComputer-nyny77.png b/config/retroarch/borders/NyNy77/NintendoFamilyComputer-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoFamilyComputer-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoFamilyComputer-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoGameBoy-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoGameBoy-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoGameBoy-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoGameBoy-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoGameBoy-nyny77.png b/config/retroarch/borders/NyNy77/NintendoGameBoy-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoGameBoy-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoGameBoy-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorBleu-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoGameBoyColorBleu-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorBleu-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoGameBoyColorBleu-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorBleu-nyny77.png b/config/retroarch/borders/NyNy77/NintendoGameBoyColorBleu-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorBleu-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoGameBoyColorBleu-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorGris-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoGameBoyColorGris-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorGris-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoGameBoyColorGris-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorGris-nyny77.png b/config/retroarch/borders/NyNy77/NintendoGameBoyColorGris-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorGris-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoGameBoyColorGris-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorJaune-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoGameBoyColorJaune-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorJaune-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoGameBoyColorJaune-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorJaune-nyny77.png b/config/retroarch/borders/NyNy77/NintendoGameBoyColorJaune-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorJaune-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoGameBoyColorJaune-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorNoir-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoGameBoyColorNoir-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorNoir-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoGameBoyColorNoir-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorNoir-nyny77.png b/config/retroarch/borders/NyNy77/NintendoGameBoyColorNoir-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorNoir-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoGameBoyColorNoir-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorRouge-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoGameBoyColorRouge-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorRouge-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoGameBoyColorRouge-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorRouge-nyny77.png b/config/retroarch/borders/NyNy77/NintendoGameBoyColorRouge-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorRouge-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoGameBoyColorRouge-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorVert-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoGameBoyColorVert-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorVert-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoGameBoyColorVert-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorVert-nyny77.png b/config/retroarch/borders/NyNy77/NintendoGameBoyColorVert-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoGameBoyColorVert-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoGameBoyColorVert-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoGameCube-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoGameCube-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoGameCube-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoGameCube-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoGameCube-nyny77.png b/config/retroarch/borders/NyNy77/NintendoGameCube-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoGameCube-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoGameCube-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoN64-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoN64-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoN64-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoN64-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoN64-nyny77.png b/config/retroarch/borders/NyNy77/NintendoN64-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoN64-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoN64-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoPokemonMini-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoPokemonMini-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoPokemonMini-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoPokemonMini-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoPokemonMini-nyny77.png b/config/retroarch/borders/NyNy77/NintendoPokemonMini-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoPokemonMini-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoPokemonMini-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoSNES-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoSNES-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoSNES-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoSNES-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoSNES-nyny77.png b/config/retroarch/borders/NyNy77/NintendoSNES-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoSNES-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoSNES-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoSatellaview-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoSatellaview-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoSatellaview-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoSatellaview-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoSatellaview-nyny77.png b/config/retroarch/borders/NyNy77/NintendoSatellaview-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoSatellaview-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoSatellaview-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoSuperFamicom-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoSuperFamicom-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoSuperFamicom-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoSuperFamicom-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoSuperFamicom-nyny77.png b/config/retroarch/borders/NyNy77/NintendoSuperFamicom-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoSuperFamicom-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoSuperFamicom-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoSuperNintendo-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoSuperNintendo-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoSuperNintendo-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoSuperNintendo-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoSuperNintendo-nyny77.png b/config/retroarch/borders/NyNy77/NintendoSuperNintendo-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoSuperNintendo-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoSuperNintendo-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoVirtualBoy-nyny77.cfg b/config/retroarch/borders/NyNy77/NintendoVirtualBoy-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoVirtualBoy-nyny77.cfg rename to config/retroarch/borders/NyNy77/NintendoVirtualBoy-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/NintendoVirtualBoy-nyny77.png b/config/retroarch/borders/NyNy77/NintendoVirtualBoy-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/NintendoVirtualBoy-nyny77.png rename to config/retroarch/borders/NyNy77/NintendoVirtualBoy-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/OpenBor-nyny77.cfg b/config/retroarch/borders/NyNy77/OpenBor-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/OpenBor-nyny77.cfg rename to config/retroarch/borders/NyNy77/OpenBor-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/OpenBor-nyny77.png b/config/retroarch/borders/NyNy77/OpenBor-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/OpenBor-nyny77.png rename to config/retroarch/borders/NyNy77/OpenBor-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Oric-nyny77.cfg b/config/retroarch/borders/NyNy77/Oric-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Oric-nyny77.cfg rename to config/retroarch/borders/NyNy77/Oric-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Oric-nyny77.png b/config/retroarch/borders/NyNy77/Oric-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Oric-nyny77.png rename to config/retroarch/borders/NyNy77/Oric-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Origin-nyny77.cfg b/config/retroarch/borders/NyNy77/Origin-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Origin-nyny77.cfg rename to config/retroarch/borders/NyNy77/Origin-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Origin-nyny77.png b/config/retroarch/borders/NyNy77/Origin-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Origin-nyny77.png rename to config/retroarch/borders/NyNy77/Origin-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/OthelloMultivision-nyny77.cfg b/config/retroarch/borders/NyNy77/OthelloMultivision-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/OthelloMultivision-nyny77.cfg rename to config/retroarch/borders/NyNy77/OthelloMultivision-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/OthelloMultivision-nyny77.png b/config/retroarch/borders/NyNy77/OthelloMultivision-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/OthelloMultivision-nyny77.png rename to config/retroarch/borders/NyNy77/OthelloMultivision-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Panasonic-nyny77.cfg b/config/retroarch/borders/NyNy77/Panasonic-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Panasonic-nyny77.cfg rename to config/retroarch/borders/NyNy77/Panasonic-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Panasonic-nyny77.png b/config/retroarch/borders/NyNy77/Panasonic-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Panasonic-nyny77.png rename to config/retroarch/borders/NyNy77/Panasonic-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Pegasus-nyny77.cfg b/config/retroarch/borders/NyNy77/Pegasus-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Pegasus-nyny77.cfg rename to config/retroarch/borders/NyNy77/Pegasus-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Pegasus-nyny77.png b/config/retroarch/borders/NyNy77/Pegasus-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Pegasus-nyny77.png rename to config/retroarch/borders/NyNy77/Pegasus-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/PhilipsVG5000-nyny77.cfg b/config/retroarch/borders/NyNy77/PhilipsVG5000-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/PhilipsVG5000-nyny77.cfg rename to config/retroarch/borders/NyNy77/PhilipsVG5000-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/PhilipsVG5000-nyny77.png b/config/retroarch/borders/NyNy77/PhilipsVG5000-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/PhilipsVG5000-nyny77.png rename to config/retroarch/borders/NyNy77/PhilipsVG5000-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/PioneerPalcomLaserDisc-nyny77.cfg b/config/retroarch/borders/NyNy77/PioneerPalcomLaserDisc-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/PioneerPalcomLaserDisc-nyny77.cfg rename to config/retroarch/borders/NyNy77/PioneerPalcomLaserDisc-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/PioneerPalcomLaserDisc-nyny77.png b/config/retroarch/borders/NyNy77/PioneerPalcomLaserDisc-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/PioneerPalcomLaserDisc-nyny77.png rename to config/retroarch/borders/NyNy77/PioneerPalcomLaserDisc-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/PopCap-nyny77.cfg b/config/retroarch/borders/NyNy77/PopCap-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/PopCap-nyny77.cfg rename to config/retroarch/borders/NyNy77/PopCap-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/PopCap-nyny77.png b/config/retroarch/borders/NyNy77/PopCap-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/PopCap-nyny77.png rename to config/retroarch/borders/NyNy77/PopCap-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Psikyo-nyny77.cfg b/config/retroarch/borders/NyNy77/Psikyo-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Psikyo-nyny77.cfg rename to config/retroarch/borders/NyNy77/Psikyo-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Psikyo-nyny77.png b/config/retroarch/borders/NyNy77/Psikyo-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Psikyo-nyny77.png rename to config/retroarch/borders/NyNy77/Psikyo-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Psikyob-nyny77.cfg b/config/retroarch/borders/NyNy77/Psikyob-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Psikyob-nyny77.cfg rename to config/retroarch/borders/NyNy77/Psikyob-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Psikyob-nyny77.png b/config/retroarch/borders/NyNy77/Psikyob-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Psikyob-nyny77.png rename to config/retroarch/borders/NyNy77/Psikyob-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/RCAStudio2-nyny77.cfg b/config/retroarch/borders/NyNy77/RCAStudio2-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/RCAStudio2-nyny77.cfg rename to config/retroarch/borders/NyNy77/RCAStudio2-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/RCAStudio2-nyny77.png b/config/retroarch/borders/NyNy77/RCAStudio2-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/RCAStudio2-nyny77.png rename to config/retroarch/borders/NyNy77/RCAStudio2-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/RockOla-nyny77.cfg b/config/retroarch/borders/NyNy77/RockOla-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/RockOla-nyny77.cfg rename to config/retroarch/borders/NyNy77/RockOla-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/RockOla-nyny77.png b/config/retroarch/borders/NyNy77/RockOla-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/RockOla-nyny77.png rename to config/retroarch/borders/NyNy77/RockOla-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SNKClassics-nyny77.cfg b/config/retroarch/borders/NyNy77/SNKClassics-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKClassics-nyny77.cfg rename to config/retroarch/borders/NyNy77/SNKClassics-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SNKClassics-nyny77.png b/config/retroarch/borders/NyNy77/SNKClassics-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKClassics-nyny77.png rename to config/retroarch/borders/NyNy77/SNKClassics-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SNKHyperNeoGeo64-nyny77.cfg b/config/retroarch/borders/NyNy77/SNKHyperNeoGeo64-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKHyperNeoGeo64-nyny77.cfg rename to config/retroarch/borders/NyNy77/SNKHyperNeoGeo64-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SNKHyperNeoGeo64-nyny77.png b/config/retroarch/borders/NyNy77/SNKHyperNeoGeo64-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKHyperNeoGeo64-nyny77.png rename to config/retroarch/borders/NyNy77/SNKHyperNeoGeo64-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SNKNeoGeo-nyny77.cfg b/config/retroarch/borders/NyNy77/SNKNeoGeo-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKNeoGeo-nyny77.cfg rename to config/retroarch/borders/NyNy77/SNKNeoGeo-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SNKNeoGeo-nyny77.png b/config/retroarch/borders/NyNy77/SNKNeoGeo-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKNeoGeo-nyny77.png rename to config/retroarch/borders/NyNy77/SNKNeoGeo-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SNKNeoGeoCD-nyny77.cfg b/config/retroarch/borders/NyNy77/SNKNeoGeoCD-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKNeoGeoCD-nyny77.cfg rename to config/retroarch/borders/NyNy77/SNKNeoGeoCD-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SNKNeoGeoCD-nyny77.png b/config/retroarch/borders/NyNy77/SNKNeoGeoCD-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKNeoGeoCD-nyny77.png rename to config/retroarch/borders/NyNy77/SNKNeoGeoCD-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SNKNeoGeoMVS-nyny77.cfg b/config/retroarch/borders/NyNy77/SNKNeoGeoMVS-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKNeoGeoMVS-nyny77.cfg rename to config/retroarch/borders/NyNy77/SNKNeoGeoMVS-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SNKNeoGeoMVS-nyny77.png b/config/retroarch/borders/NyNy77/SNKNeoGeoMVS-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKNeoGeoMVS-nyny77.png rename to config/retroarch/borders/NyNy77/SNKNeoGeoMVS-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SNKNeoGeoPlaymore-nyny77.cfg b/config/retroarch/borders/NyNy77/SNKNeoGeoPlaymore-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKNeoGeoPlaymore-nyny77.cfg rename to config/retroarch/borders/NyNy77/SNKNeoGeoPlaymore-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SNKNeoGeoPlaymore-nyny77.png b/config/retroarch/borders/NyNy77/SNKNeoGeoPlaymore-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKNeoGeoPlaymore-nyny77.png rename to config/retroarch/borders/NyNy77/SNKNeoGeoPlaymore-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SNKNeoGeoPocket-nyny77.cfg b/config/retroarch/borders/NyNy77/SNKNeoGeoPocket-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKNeoGeoPocket-nyny77.cfg rename to config/retroarch/borders/NyNy77/SNKNeoGeoPocket-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SNKNeoGeoPocket-nyny77.png b/config/retroarch/borders/NyNy77/SNKNeoGeoPocket-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKNeoGeoPocket-nyny77.png rename to config/retroarch/borders/NyNy77/SNKNeoGeoPocket-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SNKNeoGeoPocketColor-nyny77.cfg b/config/retroarch/borders/NyNy77/SNKNeoGeoPocketColor-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKNeoGeoPocketColor-nyny77.cfg rename to config/retroarch/borders/NyNy77/SNKNeoGeoPocketColor-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SNKNeoGeoPocketColor-nyny77.png b/config/retroarch/borders/NyNy77/SNKNeoGeoPocketColor-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKNeoGeoPocketColor-nyny77.png rename to config/retroarch/borders/NyNy77/SNKNeoGeoPocketColor-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SNKNeoGeoPocketColorB-nyny77.cfg b/config/retroarch/borders/NyNy77/SNKNeoGeoPocketColorB-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKNeoGeoPocketColorB-nyny77.cfg rename to config/retroarch/borders/NyNy77/SNKNeoGeoPocketColorB-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SNKNeoGeoPocketColorB-nyny77.png b/config/retroarch/borders/NyNy77/SNKNeoGeoPocketColorB-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKNeoGeoPocketColorB-nyny77.png rename to config/retroarch/borders/NyNy77/SNKNeoGeoPocketColorB-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SNKNeoGeoX-nyny77.cfg b/config/retroarch/borders/NyNy77/SNKNeoGeoX-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKNeoGeoX-nyny77.cfg rename to config/retroarch/borders/NyNy77/SNKNeoGeoX-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SNKNeoGeoX-nyny77.png b/config/retroarch/borders/NyNy77/SNKNeoGeoX-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SNKNeoGeoX-nyny77.png rename to config/retroarch/borders/NyNy77/SNKNeoGeoX-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SammyAtomiswave-nyny77.cfg b/config/retroarch/borders/NyNy77/SammyAtomiswave-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SammyAtomiswave-nyny77.cfg rename to config/retroarch/borders/NyNy77/SammyAtomiswave-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SammyAtomiswave-nyny77.png b/config/retroarch/borders/NyNy77/SammyAtomiswave-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SammyAtomiswave-nyny77.png rename to config/retroarch/borders/NyNy77/SammyAtomiswave-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SammyAtomiswaveb-nyny77.cfg b/config/retroarch/borders/NyNy77/SammyAtomiswaveb-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SammyAtomiswaveb-nyny77.cfg rename to config/retroarch/borders/NyNy77/SammyAtomiswaveb-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SammyAtomiswaveb-nyny77.png b/config/retroarch/borders/NyNy77/SammyAtomiswaveb-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SammyAtomiswaveb-nyny77.png rename to config/retroarch/borders/NyNy77/SammyAtomiswaveb-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/ScummVM-nyny77.cfg b/config/retroarch/borders/NyNy77/ScummVM-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ScummVM-nyny77.cfg rename to config/retroarch/borders/NyNy77/ScummVM-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/ScummVM-nyny77.png b/config/retroarch/borders/NyNy77/ScummVM-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ScummVM-nyny77.png rename to config/retroarch/borders/NyNy77/ScummVM-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Sega32X-nyny77.cfg b/config/retroarch/borders/NyNy77/Sega32X-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Sega32X-nyny77.cfg rename to config/retroarch/borders/NyNy77/Sega32X-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Sega32X-nyny77.png b/config/retroarch/borders/NyNy77/Sega32X-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Sega32X-nyny77.png rename to config/retroarch/borders/NyNy77/Sega32X-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaAM2-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaAM2-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaAM2-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaAM2-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaAM2-nyny77.png b/config/retroarch/borders/NyNy77/SegaAM2-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaAM2-nyny77.png rename to config/retroarch/borders/NyNy77/SegaAM2-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaAM3-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaAM3-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaAM3-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaAM3-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaAM3-nyny77.png b/config/retroarch/borders/NyNy77/SegaAM3-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaAM3-nyny77.png rename to config/retroarch/borders/NyNy77/SegaAM3-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaCD-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaCD-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaCD-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaCD-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaCD-nyny77.png b/config/retroarch/borders/NyNy77/SegaCD-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaCD-nyny77.png rename to config/retroarch/borders/NyNy77/SegaCD-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaDefault-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaDefault-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaDefault-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaDefault-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaDefault-nyny77.png b/config/retroarch/borders/NyNy77/SegaDefault-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaDefault-nyny77.png rename to config/retroarch/borders/NyNy77/SegaDefault-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaDreamcast-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaDreamcast-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaDreamcast-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaDreamcast-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaDreamcast-nyny77.png b/config/retroarch/borders/NyNy77/SegaDreamcast-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaDreamcast-nyny77.png rename to config/retroarch/borders/NyNy77/SegaDreamcast-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaGameGear-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaGameGear-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaGameGear-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaGameGear-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaGameGear-nyny77.png b/config/retroarch/borders/NyNy77/SegaGameGear-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaGameGear-nyny77.png rename to config/retroarch/borders/NyNy77/SegaGameGear-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaGenesis-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaGenesis-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaGenesis-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaGenesis-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaGenesis-nyny77.png b/config/retroarch/borders/NyNy77/SegaGenesis-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaGenesis-nyny77.png rename to config/retroarch/borders/NyNy77/SegaGenesis-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaGenesis3-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaGenesis3-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaGenesis3-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaGenesis3-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaGenesis3-nyny77.png b/config/retroarch/borders/NyNy77/SegaGenesis3-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaGenesis3-nyny77.png rename to config/retroarch/borders/NyNy77/SegaGenesis3-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaGenesisCDx-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaGenesisCDx-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaGenesisCDx-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaGenesisCDx-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaGenesisCDx-nyny77.png b/config/retroarch/borders/NyNy77/SegaGenesisCDx-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaGenesisCDx-nyny77.png rename to config/retroarch/borders/NyNy77/SegaGenesisCDx-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaHikaru-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaHikaru-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaHikaru-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaHikaru-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaHikaru-nyny77.png b/config/retroarch/borders/NyNy77/SegaHikaru-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaHikaru-nyny77.png rename to config/retroarch/borders/NyNy77/SegaHikaru-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaMasterSystem-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaMasterSystem-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaMasterSystem-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaMasterSystem-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaMasterSystem-nyny77.png b/config/retroarch/borders/NyNy77/SegaMasterSystem-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaMasterSystem-nyny77.png rename to config/retroarch/borders/NyNy77/SegaMasterSystem-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaMegaCD-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaMegaCD-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaMegaCD-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaMegaCD-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaMegaCD-nyny77.png b/config/retroarch/borders/NyNy77/SegaMegaCD-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaMegaCD-nyny77.png rename to config/retroarch/borders/NyNy77/SegaMegaCD-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaMegadrive-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaMegadrive-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaMegadrive-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaMegadrive-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaMegadrive-nyny77.png b/config/retroarch/borders/NyNy77/SegaMegadrive-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaMegadrive-nyny77.png rename to config/retroarch/borders/NyNy77/SegaMegadrive-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaNomad-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaNomad-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaNomad-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaNomad-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaNomad-nyny77.png b/config/retroarch/borders/NyNy77/SegaNomad-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaNomad-nyny77.png rename to config/retroarch/borders/NyNy77/SegaNomad-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaPico-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaPico-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaPico-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaPico-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaPico-nyny77.png b/config/retroarch/borders/NyNy77/SegaPico-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaPico-nyny77.png rename to config/retroarch/borders/NyNy77/SegaPico-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaSC3000H-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaSC3000H-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaSC3000H-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaSC3000H-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaSC3000H-nyny77.png b/config/retroarch/borders/NyNy77/SegaSC3000H-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaSC3000H-nyny77.png rename to config/retroarch/borders/NyNy77/SegaSC3000H-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaSG1000-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaSG1000-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaSG1000-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaSG1000-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaSG1000-nyny77.png b/config/retroarch/borders/NyNy77/SegaSG1000-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaSG1000-nyny77.png rename to config/retroarch/borders/NyNy77/SegaSG1000-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaSTV-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaSTV-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaSTV-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaSTV-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaSTV-nyny77.png b/config/retroarch/borders/NyNy77/SegaSTV-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaSTV-nyny77.png rename to config/retroarch/borders/NyNy77/SegaSTV-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaSaturnEU-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaSaturnEU-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaSaturnEU-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaSaturnEU-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaSaturnEU-nyny77.png b/config/retroarch/borders/NyNy77/SegaSaturnEU-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaSaturnEU-nyny77.png rename to config/retroarch/borders/NyNy77/SegaSaturnEU-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaSaturnJAP-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaSaturnJAP-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaSaturnJAP-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaSaturnJAP-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaSaturnJAP-nyny77.png b/config/retroarch/borders/NyNy77/SegaSaturnJAP-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaSaturnJAP-nyny77.png rename to config/retroarch/borders/NyNy77/SegaSaturnJAP-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaTriforce-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaTriforce-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaTriforce-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaTriforce-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaTriforce-nyny77.png b/config/retroarch/borders/NyNy77/SegaTriforce-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaTriforce-nyny77.png rename to config/retroarch/borders/NyNy77/SegaTriforce-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SegaTriforceb-nyny77.cfg b/config/retroarch/borders/NyNy77/SegaTriforceb-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaTriforceb-nyny77.cfg rename to config/retroarch/borders/NyNy77/SegaTriforceb-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SegaTriforceb-nyny77.png b/config/retroarch/borders/NyNy77/SegaTriforceb-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SegaTriforceb-nyny77.png rename to config/retroarch/borders/NyNy77/SegaTriforceb-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SharpX1-nyny77.cfg b/config/retroarch/borders/NyNy77/SharpX1-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SharpX1-nyny77.cfg rename to config/retroarch/borders/NyNy77/SharpX1-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SharpX1-nyny77.png b/config/retroarch/borders/NyNy77/SharpX1-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SharpX1-nyny77.png rename to config/retroarch/borders/NyNy77/SharpX1-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SharpX68000-nyny77.cfg b/config/retroarch/borders/NyNy77/SharpX68000-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SharpX68000-nyny77.cfg rename to config/retroarch/borders/NyNy77/SharpX68000-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SharpX68000-nyny77.png b/config/retroarch/borders/NyNy77/SharpX68000-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SharpX68000-nyny77.png rename to config/retroarch/borders/NyNy77/SharpX68000-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SharpX79000-nyny77.cfg b/config/retroarch/borders/NyNy77/SharpX79000-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SharpX79000-nyny77.cfg rename to config/retroarch/borders/NyNy77/SharpX79000-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SharpX79000-nyny77.png b/config/retroarch/borders/NyNy77/SharpX79000-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SharpX79000-nyny77.png rename to config/retroarch/borders/NyNy77/SharpX79000-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SinclairZX81-nyny77.cfg b/config/retroarch/borders/NyNy77/SinclairZX81-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SinclairZX81-nyny77.cfg rename to config/retroarch/borders/NyNy77/SinclairZX81-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SinclairZX81-nyny77.png b/config/retroarch/borders/NyNy77/SinclairZX81-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SinclairZX81-nyny77.png rename to config/retroarch/borders/NyNy77/SinclairZX81-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SinclairZXSpectrum-nyny77.cfg b/config/retroarch/borders/NyNy77/SinclairZXSpectrum-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SinclairZXSpectrum-nyny77.cfg rename to config/retroarch/borders/NyNy77/SinclairZXSpectrum-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SinclairZXSpectrum-nyny77.png b/config/retroarch/borders/NyNy77/SinclairZXSpectrum-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SinclairZXSpectrum-nyny77.png rename to config/retroarch/borders/NyNy77/SinclairZXSpectrum-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SonyPlaystation-nyny77.cfg b/config/retroarch/borders/NyNy77/SonyPlaystation-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SonyPlaystation-nyny77.cfg rename to config/retroarch/borders/NyNy77/SonyPlaystation-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SonyPlaystation-nyny77.png b/config/retroarch/borders/NyNy77/SonyPlaystation-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SonyPlaystation-nyny77.png rename to config/retroarch/borders/NyNy77/SonyPlaystation-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SordM5-nyny77.cfg b/config/retroarch/borders/NyNy77/SordM5-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SordM5-nyny77.cfg rename to config/retroarch/borders/NyNy77/SordM5-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SordM5-nyny77.png b/config/retroarch/borders/NyNy77/SordM5-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SordM5-nyny77.png rename to config/retroarch/borders/NyNy77/SordM5-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SpectraVideo-nyny77.cfg b/config/retroarch/borders/NyNy77/SpectraVideo-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SpectraVideo-nyny77.cfg rename to config/retroarch/borders/NyNy77/SpectraVideo-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SpectraVideo-nyny77.png b/config/retroarch/borders/NyNy77/SpectraVideo-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SpectraVideo-nyny77.png rename to config/retroarch/borders/NyNy77/SpectraVideo-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SuperCassetteVision-nyny77.cfg b/config/retroarch/borders/NyNy77/SuperCassetteVision-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SuperCassetteVision-nyny77.cfg rename to config/retroarch/borders/NyNy77/SuperCassetteVision-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SuperCassetteVision-nyny77.png b/config/retroarch/borders/NyNy77/SuperCassetteVision-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SuperCassetteVision-nyny77.png rename to config/retroarch/borders/NyNy77/SuperCassetteVision-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SuperGameBoy-nyny77.cfg b/config/retroarch/borders/NyNy77/SuperGameBoy-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SuperGameBoy-nyny77.cfg rename to config/retroarch/borders/NyNy77/SuperGameBoy-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SuperGameBoy-nyny77.png b/config/retroarch/borders/NyNy77/SuperGameBoy-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SuperGameBoy-nyny77.png rename to config/retroarch/borders/NyNy77/SuperGameBoy-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/SuperVision-nyny77.cfg b/config/retroarch/borders/NyNy77/SuperVision-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SuperVision-nyny77.cfg rename to config/retroarch/borders/NyNy77/SuperVision-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/SuperVision-nyny77.png b/config/retroarch/borders/NyNy77/SuperVision-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/SuperVision-nyny77.png rename to config/retroarch/borders/NyNy77/SuperVision-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/TaitoClassics-nyny77.cfg b/config/retroarch/borders/NyNy77/TaitoClassics-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TaitoClassics-nyny77.cfg rename to config/retroarch/borders/NyNy77/TaitoClassics-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/TaitoClassics-nyny77.png b/config/retroarch/borders/NyNy77/TaitoClassics-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TaitoClassics-nyny77.png rename to config/retroarch/borders/NyNy77/TaitoClassics-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/TaitoClassicsV2-nyny77.cfg b/config/retroarch/borders/NyNy77/TaitoClassicsV2-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TaitoClassicsV2-nyny77.cfg rename to config/retroarch/borders/NyNy77/TaitoClassicsV2-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/TaitoClassicsV2-nyny77.png b/config/retroarch/borders/NyNy77/TaitoClassicsV2-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TaitoClassicsV2-nyny77.png rename to config/retroarch/borders/NyNy77/TaitoClassicsV2-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/TaitoTypeX2-nyny77.cfg b/config/retroarch/borders/NyNy77/TaitoTypeX2-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TaitoTypeX2-nyny77.cfg rename to config/retroarch/borders/NyNy77/TaitoTypeX2-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/TaitoTypeX2-nyny77.png b/config/retroarch/borders/NyNy77/TaitoTypeX2-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TaitoTypeX2-nyny77.png rename to config/retroarch/borders/NyNy77/TaitoTypeX2-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/TaitoTypeX3-nyny77.cfg b/config/retroarch/borders/NyNy77/TaitoTypeX3-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TaitoTypeX3-nyny77.cfg rename to config/retroarch/borders/NyNy77/TaitoTypeX3-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/TaitoTypeX3-nyny77.png b/config/retroarch/borders/NyNy77/TaitoTypeX3-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TaitoTypeX3-nyny77.png rename to config/retroarch/borders/NyNy77/TaitoTypeX3-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/TaitoTypeX7-nyny77.cfg b/config/retroarch/borders/NyNy77/TaitoTypeX7-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TaitoTypeX7-nyny77.cfg rename to config/retroarch/borders/NyNy77/TaitoTypeX7-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/TaitoTypeX7-nyny77.png b/config/retroarch/borders/NyNy77/TaitoTypeX7-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TaitoTypeX7-nyny77.png rename to config/retroarch/borders/NyNy77/TaitoTypeX7-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/TaitoTypeXPlus-nyny77.cfg b/config/retroarch/borders/NyNy77/TaitoTypeXPlus-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TaitoTypeXPlus-nyny77.cfg rename to config/retroarch/borders/NyNy77/TaitoTypeXPlus-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/TaitoTypeXPlus-nyny77.png b/config/retroarch/borders/NyNy77/TaitoTypeXPlus-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TaitoTypeXPlus-nyny77.png rename to config/retroarch/borders/NyNy77/TaitoTypeXPlus-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/TaitoTypeXZero-nyny77.cfg b/config/retroarch/borders/NyNy77/TaitoTypeXZero-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TaitoTypeXZero-nyny77.cfg rename to config/retroarch/borders/NyNy77/TaitoTypeXZero-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/TaitoTypeXZero-nyny77.png b/config/retroarch/borders/NyNy77/TaitoTypeXZero-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TaitoTypeXZero-nyny77.png rename to config/retroarch/borders/NyNy77/TaitoTypeXZero-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/TandyTRS80-nyny77.cfg b/config/retroarch/borders/NyNy77/TandyTRS80-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TandyTRS80-nyny77.cfg rename to config/retroarch/borders/NyNy77/TandyTRS80-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/TandyTRS80-nyny77.png b/config/retroarch/borders/NyNy77/TandyTRS80-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TandyTRS80-nyny77.png rename to config/retroarch/borders/NyNy77/TandyTRS80-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Techmos-nyny77.cfg b/config/retroarch/borders/NyNy77/Techmos-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Techmos-nyny77.cfg rename to config/retroarch/borders/NyNy77/Techmos-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Techmos-nyny77.png b/config/retroarch/borders/NyNy77/Techmos-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Techmos-nyny77.png rename to config/retroarch/borders/NyNy77/Techmos-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/TexasInstrumentTI994A-nyny77.cfg b/config/retroarch/borders/NyNy77/TexasInstrumentTI994A-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TexasInstrumentTI994A-nyny77.cfg rename to config/retroarch/borders/NyNy77/TexasInstrumentTI994A-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/TexasInstrumentTI994A-nyny77.png b/config/retroarch/borders/NyNy77/TexasInstrumentTI994A-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TexasInstrumentTI994A-nyny77.png rename to config/retroarch/borders/NyNy77/TexasInstrumentTI994A-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/TheImaginationMachine-nyny77.cfg b/config/retroarch/borders/NyNy77/TheImaginationMachine-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TheImaginationMachine-nyny77.cfg rename to config/retroarch/borders/NyNy77/TheImaginationMachine-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/TheImaginationMachine-nyny77.png b/config/retroarch/borders/NyNy77/TheImaginationMachine-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TheImaginationMachine-nyny77.png rename to config/retroarch/borders/NyNy77/TheImaginationMachine-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/TigerGameCom-nyny77.cfg b/config/retroarch/borders/NyNy77/TigerGameCom-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TigerGameCom-nyny77.cfg rename to config/retroarch/borders/NyNy77/TigerGameCom-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/TigerGameCom-nyny77.png b/config/retroarch/borders/NyNy77/TigerGameCom-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TigerGameCom-nyny77.png rename to config/retroarch/borders/NyNy77/TigerGameCom-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Toaplan-nyny77.cfg b/config/retroarch/borders/NyNy77/Toaplan-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Toaplan-nyny77.cfg rename to config/retroarch/borders/NyNy77/Toaplan-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Toaplan-nyny77.png b/config/retroarch/borders/NyNy77/Toaplan-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Toaplan-nyny77.png rename to config/retroarch/borders/NyNy77/Toaplan-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/TomyTutor-nyny77.cfg b/config/retroarch/borders/NyNy77/TomyTutor-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TomyTutor-nyny77.cfg rename to config/retroarch/borders/NyNy77/TomyTutor-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/TomyTutor-nyny77.png b/config/retroarch/borders/NyNy77/TomyTutor-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TomyTutor-nyny77.png rename to config/retroarch/borders/NyNy77/TomyTutor-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/TouhouProject-nyny77.cfg b/config/retroarch/borders/NyNy77/TouhouProject-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TouhouProject-nyny77.cfg rename to config/retroarch/borders/NyNy77/TouhouProject-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/TouhouProject-nyny77.png b/config/retroarch/borders/NyNy77/TouhouProject-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/TouhouProject-nyny77.png rename to config/retroarch/borders/NyNy77/TouhouProject-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Vector06C-nyny77.cfg b/config/retroarch/borders/NyNy77/Vector06C-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Vector06C-nyny77.cfg rename to config/retroarch/borders/NyNy77/Vector06C-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Vector06C-nyny77.png b/config/retroarch/borders/NyNy77/Vector06C-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Vector06C-nyny77.png rename to config/retroarch/borders/NyNy77/Vector06C-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Vectrex-nyny77.cfg b/config/retroarch/borders/NyNy77/Vectrex-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Vectrex-nyny77.cfg rename to config/retroarch/borders/NyNy77/Vectrex-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Vectrex-nyny77.png b/config/retroarch/borders/NyNy77/Vectrex-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Vectrex-nyny77.png rename to config/retroarch/borders/NyNy77/Vectrex-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Vectrexb-nyny77.cfg b/config/retroarch/borders/NyNy77/Vectrexb-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Vectrexb-nyny77.cfg rename to config/retroarch/borders/NyNy77/Vectrexb-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Vectrexb-nyny77.png b/config/retroarch/borders/NyNy77/Vectrexb-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Vectrexb-nyny77.png rename to config/retroarch/borders/NyNy77/Vectrexb-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Vierge-nyny77.cfg b/config/retroarch/borders/NyNy77/Vierge-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Vierge-nyny77.cfg rename to config/retroarch/borders/NyNy77/Vierge-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Vierge-nyny77.png b/config/retroarch/borders/NyNy77/Vierge-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Vierge-nyny77.png rename to config/retroarch/borders/NyNy77/Vierge-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/ViergeVertical-nyny77.cfg b/config/retroarch/borders/NyNy77/ViergeVertical-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ViergeVertical-nyny77.cfg rename to config/retroarch/borders/NyNy77/ViergeVertical-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/ViergeVertical-nyny77.png b/config/retroarch/borders/NyNy77/ViergeVertical-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/ViergeVertical-nyny77.png rename to config/retroarch/borders/NyNy77/ViergeVertical-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/WataraSupervision-nyny77.cfg b/config/retroarch/borders/NyNy77/WataraSupervision-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/WataraSupervision-nyny77.cfg rename to config/retroarch/borders/NyNy77/WataraSupervision-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/WataraSupervision-nyny77.png b/config/retroarch/borders/NyNy77/WataraSupervision-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/WataraSupervision-nyny77.png rename to config/retroarch/borders/NyNy77/WataraSupervision-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/Zinc-nyny77.cfg b/config/retroarch/borders/NyNy77/Zinc-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Zinc-nyny77.cfg rename to config/retroarch/borders/NyNy77/Zinc-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/Zinc-nyny77.png b/config/retroarch/borders/NyNy77/Zinc-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/Zinc-nyny77.png rename to config/retroarch/borders/NyNy77/Zinc-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/vert-CPS1-nyny77.cfg b/config/retroarch/borders/NyNy77/vert-CPS1-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-CPS1-nyny77.cfg rename to config/retroarch/borders/NyNy77/vert-CPS1-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/vert-CPS1-nyny77.png b/config/retroarch/borders/NyNy77/vert-CPS1-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-CPS1-nyny77.png rename to config/retroarch/borders/NyNy77/vert-CPS1-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/vert-CPS2-nyny77.cfg b/config/retroarch/borders/NyNy77/vert-CPS2-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-CPS2-nyny77.cfg rename to config/retroarch/borders/NyNy77/vert-CPS2-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/vert-CPS2-nyny77.png b/config/retroarch/borders/NyNy77/vert-CPS2-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-CPS2-nyny77.png rename to config/retroarch/borders/NyNy77/vert-CPS2-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/vert-CPS3-nyny77.cfg b/config/retroarch/borders/NyNy77/vert-CPS3-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-CPS3-nyny77.cfg rename to config/retroarch/borders/NyNy77/vert-CPS3-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/vert-CPS3-nyny77.png b/config/retroarch/borders/NyNy77/vert-CPS3-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-CPS3-nyny77.png rename to config/retroarch/borders/NyNy77/vert-CPS3-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/vert-Capcom-nyny77.cfg b/config/retroarch/borders/NyNy77/vert-Capcom-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-Capcom-nyny77.cfg rename to config/retroarch/borders/NyNy77/vert-Capcom-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/vert-Capcom-nyny77.png b/config/retroarch/borders/NyNy77/vert-Capcom-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-Capcom-nyny77.png rename to config/retroarch/borders/NyNy77/vert-Capcom-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/vert-Cave-nyny77.cfg b/config/retroarch/borders/NyNy77/vert-Cave-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-Cave-nyny77.cfg rename to config/retroarch/borders/NyNy77/vert-Cave-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/vert-Cave-nyny77.png b/config/retroarch/borders/NyNy77/vert-Cave-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-Cave-nyny77.png rename to config/retroarch/borders/NyNy77/vert-Cave-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/vert-IGSPolygameMaster-nyny77.cfg b/config/retroarch/borders/NyNy77/vert-IGSPolygameMaster-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-IGSPolygameMaster-nyny77.cfg rename to config/retroarch/borders/NyNy77/vert-IGSPolygameMaster-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/vert-IGSPolygameMaster-nyny77.png b/config/retroarch/borders/NyNy77/vert-IGSPolygameMaster-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-IGSPolygameMaster-nyny77.png rename to config/retroarch/borders/NyNy77/vert-IGSPolygameMaster-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/vert-KonamiGX4000-nyny77.cfg b/config/retroarch/borders/NyNy77/vert-KonamiGX4000-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-KonamiGX4000-nyny77.cfg rename to config/retroarch/borders/NyNy77/vert-KonamiGX4000-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/vert-KonamiGX4000-nyny77.png b/config/retroarch/borders/NyNy77/vert-KonamiGX4000-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-KonamiGX4000-nyny77.png rename to config/retroarch/borders/NyNy77/vert-KonamiGX4000-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/vert-MameShmup-nyny77.cfg b/config/retroarch/borders/NyNy77/vert-MameShmup-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-MameShmup-nyny77.cfg rename to config/retroarch/borders/NyNy77/vert-MameShmup-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/vert-MameShmup-nyny77.png b/config/retroarch/borders/NyNy77/vert-MameShmup-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-MameShmup-nyny77.png rename to config/retroarch/borders/NyNy77/vert-MameShmup-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/vert-NamcoGalaga-nyny77.cfg b/config/retroarch/borders/NyNy77/vert-NamcoGalaga-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-NamcoGalaga-nyny77.cfg rename to config/retroarch/borders/NyNy77/vert-NamcoGalaga-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/vert-NamcoGalaga-nyny77.png b/config/retroarch/borders/NyNy77/vert-NamcoGalaga-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-NamcoGalaga-nyny77.png rename to config/retroarch/borders/NyNy77/vert-NamcoGalaga-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/vert-Psikyo-nyny77.cfg b/config/retroarch/borders/NyNy77/vert-Psikyo-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-Psikyo-nyny77.cfg rename to config/retroarch/borders/NyNy77/vert-Psikyo-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/vert-Psikyo-nyny77.png b/config/retroarch/borders/NyNy77/vert-Psikyo-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-Psikyo-nyny77.png rename to config/retroarch/borders/NyNy77/vert-Psikyo-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/vert-SegaSTV-nyny77.cfg b/config/retroarch/borders/NyNy77/vert-SegaSTV-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-SegaSTV-nyny77.cfg rename to config/retroarch/borders/NyNy77/vert-SegaSTV-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/vert-SegaSTV-nyny77.png b/config/retroarch/borders/NyNy77/vert-SegaSTV-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-SegaSTV-nyny77.png rename to config/retroarch/borders/NyNy77/vert-SegaSTV-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/vert-TaitoClassics-nyny77.cfg b/config/retroarch/borders/NyNy77/vert-TaitoClassics-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-TaitoClassics-nyny77.cfg rename to config/retroarch/borders/NyNy77/vert-TaitoClassics-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/vert-TaitoClassics-nyny77.png b/config/retroarch/borders/NyNy77/vert-TaitoClassics-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-TaitoClassics-nyny77.png rename to config/retroarch/borders/NyNy77/vert-TaitoClassics-nyny77.png diff --git a/emu-configs/retroarch/borders/NyNy77/vert-Toaplan-nyny77.cfg b/config/retroarch/borders/NyNy77/vert-Toaplan-nyny77.cfg similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-Toaplan-nyny77.cfg rename to config/retroarch/borders/NyNy77/vert-Toaplan-nyny77.cfg diff --git a/emu-configs/retroarch/borders/NyNy77/vert-Toaplan-nyny77.png b/config/retroarch/borders/NyNy77/vert-Toaplan-nyny77.png similarity index 100% rename from emu-configs/retroarch/borders/NyNy77/vert-Toaplan-nyny77.png rename to config/retroarch/borders/NyNy77/vert-Toaplan-nyny77.png diff --git a/emu-configs/retroarch/borders/pegasus/3DO.cfg b/config/retroarch/borders/pegasus/3DO.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/3DO.cfg rename to config/retroarch/borders/pegasus/3DO.cfg diff --git a/emu-configs/retroarch/borders/pegasus/3do.png b/config/retroarch/borders/pegasus/3do.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/3do.png rename to config/retroarch/borders/pegasus/3do.png diff --git a/emu-configs/retroarch/borders/pegasus/ChannelF.cfg b/config/retroarch/borders/pegasus/ChannelF.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/ChannelF.cfg rename to config/retroarch/borders/pegasus/ChannelF.cfg diff --git a/emu-configs/retroarch/borders/pegasus/ColecoVision.cfg b/config/retroarch/borders/pegasus/ColecoVision.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/ColecoVision.cfg rename to config/retroarch/borders/pegasus/ColecoVision.cfg diff --git a/emu-configs/retroarch/borders/pegasus/Dreamcast.cfg b/config/retroarch/borders/pegasus/Dreamcast.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/Dreamcast.cfg rename to config/retroarch/borders/pegasus/Dreamcast.cfg diff --git a/emu-configs/retroarch/borders/pegasus/GX4000.cfg b/config/retroarch/borders/pegasus/GX4000.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/GX4000.cfg rename to config/retroarch/borders/pegasus/GX4000.cfg diff --git a/emu-configs/retroarch/borders/pegasus/Gamecube.cfg b/config/retroarch/borders/pegasus/Gamecube.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/Gamecube.cfg rename to config/retroarch/borders/pegasus/Gamecube.cfg diff --git a/emu-configs/retroarch/borders/pegasus/Intellivision.cfg b/config/retroarch/borders/pegasus/Intellivision.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/Intellivision.cfg rename to config/retroarch/borders/pegasus/Intellivision.cfg diff --git a/emu-configs/retroarch/borders/pegasus/LICENSE b/config/retroarch/borders/pegasus/LICENSE similarity index 100% rename from emu-configs/retroarch/borders/pegasus/LICENSE rename to config/retroarch/borders/pegasus/LICENSE diff --git a/emu-configs/retroarch/borders/pegasus/MSX.cfg b/config/retroarch/borders/pegasus/MSX.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/MSX.cfg rename to config/retroarch/borders/pegasus/MSX.cfg diff --git a/emu-configs/retroarch/borders/pegasus/MSX2.cfg b/config/retroarch/borders/pegasus/MSX2.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/MSX2.cfg rename to config/retroarch/borders/pegasus/MSX2.cfg diff --git a/emu-configs/retroarch/borders/pegasus/MarkIII.cfg b/config/retroarch/borders/pegasus/MarkIII.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/MarkIII.cfg rename to config/retroarch/borders/pegasus/MarkIII.cfg diff --git a/emu-configs/retroarch/borders/pegasus/N64.cfg b/config/retroarch/borders/pegasus/N64.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/N64.cfg rename to config/retroarch/borders/pegasus/N64.cfg diff --git a/emu-configs/retroarch/borders/pegasus/Odyssey2.cfg b/config/retroarch/borders/pegasus/Odyssey2.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/Odyssey2.cfg rename to config/retroarch/borders/pegasus/Odyssey2.cfg diff --git a/emu-configs/retroarch/borders/pegasus/SNES87.png b/config/retroarch/borders/pegasus/SNES87.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/SNES87.png rename to config/retroarch/borders/pegasus/SNES87.png diff --git a/emu-configs/retroarch/borders/pegasus/ScummVM.cfg b/config/retroarch/borders/pegasus/ScummVM.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/ScummVM.cfg rename to config/retroarch/borders/pegasus/ScummVM.cfg diff --git a/emu-configs/retroarch/borders/pegasus/SuperGrafx.cfg b/config/retroarch/borders/pegasus/SuperGrafx.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/SuperGrafx.cfg rename to config/retroarch/borders/pegasus/SuperGrafx.cfg diff --git a/emu-configs/retroarch/borders/pegasus/X1.cfg b/config/retroarch/borders/pegasus/X1.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/X1.cfg rename to config/retroarch/borders/pegasus/X1.cfg diff --git a/emu-configs/retroarch/borders/pegasus/amstradcpc.cfg b/config/retroarch/borders/pegasus/amstradcpc.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/amstradcpc.cfg rename to config/retroarch/borders/pegasus/amstradcpc.cfg diff --git a/emu-configs/retroarch/borders/pegasus/amstradcpc.png b/config/retroarch/borders/pegasus/amstradcpc.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/amstradcpc.png rename to config/retroarch/borders/pegasus/amstradcpc.png diff --git a/emu-configs/retroarch/borders/pegasus/atari2600.cfg b/config/retroarch/borders/pegasus/atari2600.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/atari2600.cfg rename to config/retroarch/borders/pegasus/atari2600.cfg diff --git a/emu-configs/retroarch/borders/pegasus/atari2600.png b/config/retroarch/borders/pegasus/atari2600.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/atari2600.png rename to config/retroarch/borders/pegasus/atari2600.png diff --git a/emu-configs/retroarch/borders/pegasus/atari5200.cfg b/config/retroarch/borders/pegasus/atari5200.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/atari5200.cfg rename to config/retroarch/borders/pegasus/atari5200.cfg diff --git a/emu-configs/retroarch/borders/pegasus/atari5200.png b/config/retroarch/borders/pegasus/atari5200.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/atari5200.png rename to config/retroarch/borders/pegasus/atari5200.png diff --git a/emu-configs/retroarch/borders/pegasus/atari7800.cfg b/config/retroarch/borders/pegasus/atari7800.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/atari7800.cfg rename to config/retroarch/borders/pegasus/atari7800.cfg diff --git a/emu-configs/retroarch/borders/pegasus/atari7800.png b/config/retroarch/borders/pegasus/atari7800.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/atari7800.png rename to config/retroarch/borders/pegasus/atari7800.png diff --git a/emu-configs/retroarch/borders/pegasus/atari800.cfg b/config/retroarch/borders/pegasus/atari800.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/atari800.cfg rename to config/retroarch/borders/pegasus/atari800.cfg diff --git a/emu-configs/retroarch/borders/pegasus/atari800.png b/config/retroarch/borders/pegasus/atari800.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/atari800.png rename to config/retroarch/borders/pegasus/atari800.png diff --git a/emu-configs/retroarch/borders/pegasus/atarijaguar.cfg b/config/retroarch/borders/pegasus/atarijaguar.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/atarijaguar.cfg rename to config/retroarch/borders/pegasus/atarijaguar.cfg diff --git a/emu-configs/retroarch/borders/pegasus/atarijaguar.png b/config/retroarch/borders/pegasus/atarijaguar.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/atarijaguar.png rename to config/retroarch/borders/pegasus/atarijaguar.png diff --git a/emu-configs/retroarch/borders/pegasus/atarist.cfg b/config/retroarch/borders/pegasus/atarist.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/atarist.cfg rename to config/retroarch/borders/pegasus/atarist.cfg diff --git a/emu-configs/retroarch/borders/pegasus/atarist.png b/config/retroarch/borders/pegasus/atarist.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/atarist.png rename to config/retroarch/borders/pegasus/atarist.png diff --git a/emu-configs/retroarch/borders/pegasus/channelf.png b/config/retroarch/borders/pegasus/channelf.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/channelf.png rename to config/retroarch/borders/pegasus/channelf.png diff --git a/emu-configs/retroarch/borders/pegasus/colecovision.png b/config/retroarch/borders/pegasus/colecovision.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/colecovision.png rename to config/retroarch/borders/pegasus/colecovision.png diff --git a/emu-configs/retroarch/borders/pegasus/dreamcast.png b/config/retroarch/borders/pegasus/dreamcast.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/dreamcast.png rename to config/retroarch/borders/pegasus/dreamcast.png diff --git a/emu-configs/retroarch/borders/pegasus/fmtowns.cfg b/config/retroarch/borders/pegasus/fmtowns.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/fmtowns.cfg rename to config/retroarch/borders/pegasus/fmtowns.cfg diff --git a/emu-configs/retroarch/borders/pegasus/fmtowns.png b/config/retroarch/borders/pegasus/fmtowns.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/fmtowns.png rename to config/retroarch/borders/pegasus/fmtowns.png diff --git a/emu-configs/retroarch/borders/pegasus/gamecube.png b/config/retroarch/borders/pegasus/gamecube.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/gamecube.png rename to config/retroarch/borders/pegasus/gamecube.png diff --git a/emu-configs/retroarch/borders/pegasus/gb.cfg b/config/retroarch/borders/pegasus/gb.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/gb.cfg rename to config/retroarch/borders/pegasus/gb.cfg diff --git a/emu-configs/retroarch/borders/pegasus/gb.png b/config/retroarch/borders/pegasus/gb.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/gb.png rename to config/retroarch/borders/pegasus/gb.png diff --git a/emu-configs/retroarch/borders/pegasus/gba.cfg b/config/retroarch/borders/pegasus/gba.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/gba.cfg rename to config/retroarch/borders/pegasus/gba.cfg diff --git a/emu-configs/retroarch/borders/pegasus/gba.png b/config/retroarch/borders/pegasus/gba.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/gba.png rename to config/retroarch/borders/pegasus/gba.png diff --git a/emu-configs/retroarch/borders/pegasus/gbc.cfg b/config/retroarch/borders/pegasus/gbc.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/gbc.cfg rename to config/retroarch/borders/pegasus/gbc.cfg diff --git a/emu-configs/retroarch/borders/pegasus/gbc.png b/config/retroarch/borders/pegasus/gbc.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/gbc.png rename to config/retroarch/borders/pegasus/gbc.png diff --git a/emu-configs/retroarch/borders/pegasus/genesis.cfg b/config/retroarch/borders/pegasus/genesis.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/genesis.cfg rename to config/retroarch/borders/pegasus/genesis.cfg diff --git a/emu-configs/retroarch/borders/pegasus/gg-integer.png b/config/retroarch/borders/pegasus/gg-integer.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/gg-integer.png rename to config/retroarch/borders/pegasus/gg-integer.png diff --git a/emu-configs/retroarch/borders/pegasus/gg.cfg b/config/retroarch/borders/pegasus/gg.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/gg.cfg rename to config/retroarch/borders/pegasus/gg.cfg diff --git a/emu-configs/retroarch/borders/pegasus/gx4000.png b/config/retroarch/borders/pegasus/gx4000.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/gx4000.png rename to config/retroarch/borders/pegasus/gx4000.png diff --git a/emu-configs/retroarch/borders/pegasus/intellivision.png b/config/retroarch/borders/pegasus/intellivision.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/intellivision.png rename to config/retroarch/borders/pegasus/intellivision.png diff --git a/emu-configs/retroarch/borders/pegasus/markIII.png b/config/retroarch/borders/pegasus/markIII.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/markIII.png rename to config/retroarch/borders/pegasus/markIII.png diff --git a/emu-configs/retroarch/borders/pegasus/mastersystem.cfg b/config/retroarch/borders/pegasus/mastersystem.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/mastersystem.cfg rename to config/retroarch/borders/pegasus/mastersystem.cfg diff --git a/emu-configs/retroarch/borders/pegasus/mastersystem.png b/config/retroarch/borders/pegasus/mastersystem.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/mastersystem.png rename to config/retroarch/borders/pegasus/mastersystem.png diff --git a/emu-configs/retroarch/borders/pegasus/megadrive.cfg b/config/retroarch/borders/pegasus/megadrive.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/megadrive.cfg rename to config/retroarch/borders/pegasus/megadrive.cfg diff --git a/emu-configs/retroarch/borders/pegasus/megadrive.png b/config/retroarch/borders/pegasus/megadrive.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/megadrive.png rename to config/retroarch/borders/pegasus/megadrive.png diff --git a/emu-configs/retroarch/borders/pegasus/msx.png b/config/retroarch/borders/pegasus/msx.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/msx.png rename to config/retroarch/borders/pegasus/msx.png diff --git a/emu-configs/retroarch/borders/pegasus/msx2.png b/config/retroarch/borders/pegasus/msx2.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/msx2.png rename to config/retroarch/borders/pegasus/msx2.png diff --git a/emu-configs/retroarch/borders/pegasus/n64.png b/config/retroarch/borders/pegasus/n64.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/n64.png rename to config/retroarch/borders/pegasus/n64.png diff --git a/emu-configs/retroarch/borders/pegasus/neogeo.cfg b/config/retroarch/borders/pegasus/neogeo.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/neogeo.cfg rename to config/retroarch/borders/pegasus/neogeo.cfg diff --git a/emu-configs/retroarch/borders/pegasus/neogeo.png b/config/retroarch/borders/pegasus/neogeo.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/neogeo.png rename to config/retroarch/borders/pegasus/neogeo.png diff --git a/emu-configs/retroarch/borders/pegasus/neogeocd.cfg b/config/retroarch/borders/pegasus/neogeocd.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/neogeocd.cfg rename to config/retroarch/borders/pegasus/neogeocd.cfg diff --git a/emu-configs/retroarch/borders/pegasus/neogeocd.png b/config/retroarch/borders/pegasus/neogeocd.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/neogeocd.png rename to config/retroarch/borders/pegasus/neogeocd.png diff --git a/emu-configs/retroarch/borders/pegasus/neogeopocket.png b/config/retroarch/borders/pegasus/neogeopocket.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/neogeopocket.png rename to config/retroarch/borders/pegasus/neogeopocket.png diff --git a/emu-configs/retroarch/borders/pegasus/nes.cfg b/config/retroarch/borders/pegasus/nes.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/nes.cfg rename to config/retroarch/borders/pegasus/nes.cfg diff --git a/emu-configs/retroarch/borders/pegasus/nes.png b/config/retroarch/borders/pegasus/nes.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/nes.png rename to config/retroarch/borders/pegasus/nes.png diff --git a/emu-configs/retroarch/borders/pegasus/ngp.cfg b/config/retroarch/borders/pegasus/ngp.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/ngp.cfg rename to config/retroarch/borders/pegasus/ngp.cfg diff --git a/emu-configs/retroarch/borders/pegasus/ngpc.cfg b/config/retroarch/borders/pegasus/ngpc.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/ngpc.cfg rename to config/retroarch/borders/pegasus/ngpc.cfg diff --git a/emu-configs/retroarch/borders/pegasus/odyssey2.png b/config/retroarch/borders/pegasus/odyssey2.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/odyssey2.png rename to config/retroarch/borders/pegasus/odyssey2.png diff --git a/emu-configs/retroarch/borders/pegasus/pc.cfg b/config/retroarch/borders/pegasus/pc.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/pc.cfg rename to config/retroarch/borders/pegasus/pc.cfg diff --git a/emu-configs/retroarch/borders/pegasus/pc.png b/config/retroarch/borders/pegasus/pc.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/pc.png rename to config/retroarch/borders/pegasus/pc.png diff --git a/emu-configs/retroarch/borders/pegasus/pc88.cfg b/config/retroarch/borders/pegasus/pc88.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/pc88.cfg rename to config/retroarch/borders/pegasus/pc88.cfg diff --git a/emu-configs/retroarch/borders/pegasus/pc88.png b/config/retroarch/borders/pegasus/pc88.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/pc88.png rename to config/retroarch/borders/pegasus/pc88.png diff --git a/emu-configs/retroarch/borders/pegasus/pc98.cfg b/config/retroarch/borders/pegasus/pc98.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/pc98.cfg rename to config/retroarch/borders/pegasus/pc98.cfg diff --git a/emu-configs/retroarch/borders/pegasus/pc98.png b/config/retroarch/borders/pegasus/pc98.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/pc98.png rename to config/retroarch/borders/pegasus/pc98.png diff --git a/emu-configs/retroarch/borders/pegasus/pcengine.cfg b/config/retroarch/borders/pegasus/pcengine.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/pcengine.cfg rename to config/retroarch/borders/pegasus/pcengine.cfg diff --git a/emu-configs/retroarch/borders/pegasus/pcengine.png b/config/retroarch/borders/pegasus/pcengine.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/pcengine.png rename to config/retroarch/borders/pegasus/pcengine.png diff --git a/emu-configs/retroarch/borders/pegasus/pcenginecd.cfg b/config/retroarch/borders/pegasus/pcenginecd.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/pcenginecd.cfg rename to config/retroarch/borders/pegasus/pcenginecd.cfg diff --git a/emu-configs/retroarch/borders/pegasus/pcenginecd.png b/config/retroarch/borders/pegasus/pcenginecd.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/pcenginecd.png rename to config/retroarch/borders/pegasus/pcenginecd.png diff --git a/emu-configs/retroarch/borders/pegasus/pcfx.cfg b/config/retroarch/borders/pegasus/pcfx.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/pcfx.cfg rename to config/retroarch/borders/pegasus/pcfx.cfg diff --git a/emu-configs/retroarch/borders/pegasus/pcfx.png b/config/retroarch/borders/pegasus/pcfx.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/pcfx.png rename to config/retroarch/borders/pegasus/pcfx.png diff --git a/emu-configs/retroarch/borders/pegasus/ps2.cfg b/config/retroarch/borders/pegasus/ps2.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/ps2.cfg rename to config/retroarch/borders/pegasus/ps2.cfg diff --git a/emu-configs/retroarch/borders/pegasus/ps2.png b/config/retroarch/borders/pegasus/ps2.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/ps2.png rename to config/retroarch/borders/pegasus/ps2.png diff --git a/emu-configs/retroarch/borders/pegasus/psx.cfg b/config/retroarch/borders/pegasus/psx.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/psx.cfg rename to config/retroarch/borders/pegasus/psx.cfg diff --git a/emu-configs/retroarch/borders/pegasus/psx.png b/config/retroarch/borders/pegasus/psx.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/psx.png rename to config/retroarch/borders/pegasus/psx.png diff --git a/emu-configs/retroarch/borders/pegasus/saturn.cfg b/config/retroarch/borders/pegasus/saturn.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/saturn.cfg rename to config/retroarch/borders/pegasus/saturn.cfg diff --git a/emu-configs/retroarch/borders/pegasus/saturn.png b/config/retroarch/borders/pegasus/saturn.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/saturn.png rename to config/retroarch/borders/pegasus/saturn.png diff --git a/emu-configs/retroarch/borders/pegasus/scummvm.png b/config/retroarch/borders/pegasus/scummvm.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/scummvm.png rename to config/retroarch/borders/pegasus/scummvm.png diff --git a/emu-configs/retroarch/borders/pegasus/sega32x.cfg b/config/retroarch/borders/pegasus/sega32x.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/sega32x.cfg rename to config/retroarch/borders/pegasus/sega32x.cfg diff --git a/emu-configs/retroarch/borders/pegasus/sega32x.png b/config/retroarch/borders/pegasus/sega32x.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/sega32x.png rename to config/retroarch/borders/pegasus/sega32x.png diff --git a/emu-configs/retroarch/borders/pegasus/segacd.cfg b/config/retroarch/borders/pegasus/segacd.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/segacd.cfg rename to config/retroarch/borders/pegasus/segacd.cfg diff --git a/emu-configs/retroarch/borders/pegasus/segacd.png b/config/retroarch/borders/pegasus/segacd.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/segacd.png rename to config/retroarch/borders/pegasus/segacd.png diff --git a/emu-configs/retroarch/borders/pegasus/sg1000.cfg b/config/retroarch/borders/pegasus/sg1000.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/sg1000.cfg rename to config/retroarch/borders/pegasus/sg1000.cfg diff --git a/emu-configs/retroarch/borders/pegasus/sg1000.png b/config/retroarch/borders/pegasus/sg1000.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/sg1000.png rename to config/retroarch/borders/pegasus/sg1000.png diff --git a/emu-configs/retroarch/borders/pegasus/sgb.cfg b/config/retroarch/borders/pegasus/sgb.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/sgb.cfg rename to config/retroarch/borders/pegasus/sgb.cfg diff --git a/emu-configs/retroarch/borders/pegasus/sgb.png b/config/retroarch/borders/pegasus/sgb.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/sgb.png rename to config/retroarch/borders/pegasus/sgb.png diff --git a/emu-configs/retroarch/borders/pegasus/snes.cfg b/config/retroarch/borders/pegasus/snes.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/snes.cfg rename to config/retroarch/borders/pegasus/snes.cfg diff --git a/emu-configs/retroarch/borders/pegasus/snes.png b/config/retroarch/borders/pegasus/snes.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/snes.png rename to config/retroarch/borders/pegasus/snes.png diff --git a/emu-configs/retroarch/borders/pegasus/snes87.cfg b/config/retroarch/borders/pegasus/snes87.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/snes87.cfg rename to config/retroarch/borders/pegasus/snes87.cfg diff --git a/emu-configs/retroarch/borders/pegasus/supergrafx.png b/config/retroarch/borders/pegasus/supergrafx.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/supergrafx.png rename to config/retroarch/borders/pegasus/supergrafx.png diff --git a/emu-configs/retroarch/borders/pegasus/thomson.cfg b/config/retroarch/borders/pegasus/thomson.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/thomson.cfg rename to config/retroarch/borders/pegasus/thomson.cfg diff --git a/emu-configs/retroarch/borders/pegasus/thomson.png b/config/retroarch/borders/pegasus/thomson.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/thomson.png rename to config/retroarch/borders/pegasus/thomson.png diff --git a/emu-configs/retroarch/borders/pegasus/ti99.cfg b/config/retroarch/borders/pegasus/ti99.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/ti99.cfg rename to config/retroarch/borders/pegasus/ti99.cfg diff --git a/emu-configs/retroarch/borders/pegasus/ti99.png b/config/retroarch/borders/pegasus/ti99.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/ti99.png rename to config/retroarch/borders/pegasus/ti99.png diff --git a/emu-configs/retroarch/borders/pegasus/wswanc.cfg b/config/retroarch/borders/pegasus/wswanc.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/wswanc.cfg rename to config/retroarch/borders/pegasus/wswanc.cfg diff --git a/emu-configs/retroarch/borders/pegasus/wswanc.png b/config/retroarch/borders/pegasus/wswanc.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/wswanc.png rename to config/retroarch/borders/pegasus/wswanc.png diff --git a/emu-configs/retroarch/borders/pegasus/x1.png b/config/retroarch/borders/pegasus/x1.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/x1.png rename to config/retroarch/borders/pegasus/x1.png diff --git a/emu-configs/retroarch/borders/pegasus/x68000.cfg b/config/retroarch/borders/pegasus/x68000.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/x68000.cfg rename to config/retroarch/borders/pegasus/x68000.cfg diff --git a/emu-configs/retroarch/borders/pegasus/x68000.png b/config/retroarch/borders/pegasus/x68000.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/x68000.png rename to config/retroarch/borders/pegasus/x68000.png diff --git a/emu-configs/retroarch/borders/pegasus/zxspectrum.cfg b/config/retroarch/borders/pegasus/zxspectrum.cfg similarity index 100% rename from emu-configs/retroarch/borders/pegasus/zxspectrum.cfg rename to config/retroarch/borders/pegasus/zxspectrum.cfg diff --git a/emu-configs/retroarch/borders/pegasus/zxspectrum.png b/config/retroarch/borders/pegasus/zxspectrum.png similarity index 100% rename from emu-configs/retroarch/borders/pegasus/zxspectrum.png rename to config/retroarch/borders/pegasus/zxspectrum.png diff --git a/emu-configs/retroarch/core-overrides/PPSSPP/PPSSPP.cfg b/config/retroarch/core-overrides/PPSSPP/PPSSPP.cfg similarity index 100% rename from emu-configs/retroarch/core-overrides/PPSSPP/PPSSPP.cfg rename to config/retroarch/core-overrides/PPSSPP/PPSSPP.cfg diff --git a/emu-configs/retroarch/retroarch-core-options.cfg b/config/retroarch/retroarch-core-options.cfg similarity index 100% rename from emu-configs/retroarch/retroarch-core-options.cfg rename to config/retroarch/retroarch-core-options.cfg diff --git a/emu-configs/retroarch/retroarch.cfg b/config/retroarch/retroarch.cfg similarity index 99% rename from emu-configs/retroarch/retroarch.cfg rename to config/retroarch/retroarch.cfg index dc533f2e..05975dfd 100644 --- a/emu-configs/retroarch/retroarch.cfg +++ b/config/retroarch/retroarch.cfg @@ -2841,7 +2841,7 @@ kiosk_mode_enable = "false" kiosk_mode_password = "" led_driver = "null" libretro_directory = "/var/config/retroarch/cores" -libretro_info_path = "/app/share/libretro/info" +libretro_info_path = "/var/config/retroarch/cores" libretro_log_level = "1" load_dummy_on_core_shutdown = "true" location_allow = "false" @@ -3304,4 +3304,4 @@ xmb_shadows_enable = "true" xmb_switch_icons = "true" xmb_theme = "0" xmb_vertical_thumbnails = "false" -youtube_stream_key = "" +youtube_stream_key = "" \ No newline at end of file diff --git a/emu-configs/retroarch/scummvm.ini b/config/retroarch/scummvm.ini similarity index 100% rename from emu-configs/retroarch/scummvm.ini rename to config/retroarch/scummvm.ini diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_generic_standard_simple.vdf b/config/retrodeck/controller_configs/RetroDECK_controller_generic_standard_simple.vdf similarity index 100% rename from emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_generic_standard_simple.vdf rename to config/retrodeck/controller_configs/RetroDECK_controller_generic_standard_simple.vdf diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_ps3_dualshock3_simple.vdf b/config/retrodeck/controller_configs/RetroDECK_controller_ps3_dualshock3_simple.vdf similarity index 100% rename from emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_ps3_dualshock3_simple.vdf rename to config/retrodeck/controller_configs/RetroDECK_controller_ps3_dualshock3_simple.vdf diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_ps4_dualshock4_simple.vdf b/config/retrodeck/controller_configs/RetroDECK_controller_ps4_dualshock4_simple.vdf similarity index 100% rename from emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_ps4_dualshock4_simple.vdf rename to config/retrodeck/controller_configs/RetroDECK_controller_ps4_dualshock4_simple.vdf diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_ps5_dualsense_simple.vdf b/config/retrodeck/controller_configs/RetroDECK_controller_ps5_dualsense_simple.vdf similarity index 100% rename from emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_ps5_dualsense_simple.vdf rename to config/retrodeck/controller_configs/RetroDECK_controller_ps5_dualsense_simple.vdf diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_steam_controller_gordon_simple.vdf b/config/retrodeck/controller_configs/RetroDECK_controller_steam_controller_gordon_simple.vdf similarity index 100% rename from emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_steam_controller_gordon_simple.vdf rename to config/retrodeck/controller_configs/RetroDECK_controller_steam_controller_gordon_simple.vdf diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_steamdeck_neptune_full.vdf b/config/retrodeck/controller_configs/RetroDECK_controller_steamdeck_neptune_full.vdf similarity index 100% rename from emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_steamdeck_neptune_full.vdf rename to config/retrodeck/controller_configs/RetroDECK_controller_steamdeck_neptune_full.vdf diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_steamdeck_neptune_simple.vdf b/config/retrodeck/controller_configs/RetroDECK_controller_steamdeck_neptune_simple.vdf similarity index 100% rename from emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_steamdeck_neptune_simple.vdf rename to config/retrodeck/controller_configs/RetroDECK_controller_steamdeck_neptune_simple.vdf diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_switch_pro_simple.vdf b/config/retrodeck/controller_configs/RetroDECK_controller_switch_pro_simple.vdf similarity index 100% rename from emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_switch_pro_simple.vdf rename to config/retrodeck/controller_configs/RetroDECK_controller_switch_pro_simple.vdf diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_xbox360_simple.vdf b/config/retrodeck/controller_configs/RetroDECK_controller_xbox360_simple.vdf similarity index 100% rename from emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_xbox360_simple.vdf rename to config/retrodeck/controller_configs/RetroDECK_controller_xbox360_simple.vdf diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_xboxone_simple.vdf b/config/retrodeck/controller_configs/RetroDECK_controller_xboxone_simple.vdf similarity index 100% rename from emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_xboxone_simple.vdf rename to config/retrodeck/controller_configs/RetroDECK_controller_xboxone_simple.vdf diff --git a/emu-configs/defaults/retrodeck/helper_files/Install-firmware-through-Ryujinx.txt b/config/retrodeck/helper_files/Install-firmware-through-Ryujinx.txt similarity index 100% rename from emu-configs/defaults/retrodeck/helper_files/Install-firmware-through-Ryujinx.txt rename to config/retrodeck/helper_files/Install-firmware-through-Ryujinx.txt diff --git a/config/retrodeck/helper_files/es_systems.xml b/config/retrodeck/helper_files/es_systems.xml new file mode 100644 index 00000000..1adae1a6 --- /dev/null +++ b/config/retrodeck/helper_files/es_systems.xml @@ -0,0 +1,19 @@ + + + + + \ No newline at end of file diff --git a/emu-configs/defaults/retrodeck/helper_files/how-to-install-Duckstation-textures.txt b/config/retrodeck/helper_files/how-to-install-Duckstation-textures.txt similarity index 100% rename from emu-configs/defaults/retrodeck/helper_files/how-to-install-Duckstation-textures.txt rename to config/retrodeck/helper_files/how-to-install-Duckstation-textures.txt diff --git a/emu-configs/defaults/retrodeck/helper_files/how-to-install-Mesen-textures.txt b/config/retrodeck/helper_files/how-to-install-Mesen-textures.txt similarity index 100% rename from emu-configs/defaults/retrodeck/helper_files/how-to-install-Mesen-textures.txt rename to config/retrodeck/helper_files/how-to-install-Mesen-textures.txt diff --git a/emu-configs/defaults/retrodeck/helper_files/how-to-install-Mupen64Plus-textures.txt b/config/retrodeck/helper_files/how-to-install-Mupen64Plus-textures.txt similarity index 100% rename from emu-configs/defaults/retrodeck/helper_files/how-to-install-Mupen64Plus-textures.txt rename to config/retrodeck/helper_files/how-to-install-Mupen64Plus-textures.txt diff --git a/emu-configs/defaults/retrodeck/helper_files/how-to-install-PCSX2-textures.txt b/config/retrodeck/helper_files/how-to-install-PCSX2-textures.txt similarity index 100% rename from emu-configs/defaults/retrodeck/helper_files/how-to-install-PCSX2-textures.txt rename to config/retrodeck/helper_files/how-to-install-PCSX2-textures.txt diff --git a/emu-configs/defaults/retrodeck/helper_files/how-to-install-PPSSPP-textures.txt b/config/retrodeck/helper_files/how-to-install-PPSSPP-textures.txt similarity index 100% rename from emu-configs/defaults/retrodeck/helper_files/how-to-install-PPSSPP-textures.txt rename to config/retrodeck/helper_files/how-to-install-PPSSPP-textures.txt diff --git a/emu-configs/defaults/retrodeck/helper_files/how-to-install-dolphin-mods.txt b/config/retrodeck/helper_files/how-to-install-dolphin-mods.txt similarity index 100% rename from emu-configs/defaults/retrodeck/helper_files/how-to-install-dolphin-mods.txt rename to config/retrodeck/helper_files/how-to-install-dolphin-mods.txt diff --git a/emu-configs/defaults/retrodeck/helper_files/how-to-install-primehack-mods.txt b/config/retrodeck/helper_files/how-to-install-primehack-mods.txt similarity index 100% rename from emu-configs/defaults/retrodeck/helper_files/how-to-install-primehack-mods.txt rename to config/retrodeck/helper_files/how-to-install-primehack-mods.txt diff --git a/emu-configs/defaults/retrodeck/helper_files/how-to-install-psvita-games.txt b/config/retrodeck/helper_files/how-to-install-psvita-games.txt similarity index 100% rename from emu-configs/defaults/retrodeck/helper_files/how-to-install-psvita-games.txt rename to config/retrodeck/helper_files/how-to-install-psvita-games.txt diff --git a/config/retrodeck/net.retrodeck.retrodeck.mime.xml b/config/retrodeck/net.retrodeck.retrodeck.mime.xml new file mode 100644 index 00000000..4065fd36 --- /dev/null +++ b/config/retrodeck/net.retrodeck.retrodeck.mime.xml @@ -0,0 +1,338 @@ + + + + Retro Game + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emu-configs/defaults/retrodeck/presets/citra_presets.cfg b/config/retrodeck/presets/citra_presets.cfg similarity index 63% rename from emu-configs/defaults/retrodeck/presets/citra_presets.cfg rename to config/retrodeck/presets/citra_presets.cfg index 05b0d7b0..6ebd5c48 100644 --- a/emu-configs/defaults/retrodeck/presets/citra_presets.cfg +++ b/config/retrodeck/presets/citra_presets.cfg @@ -1,7 +1,7 @@ config_file_format^citra -change^ask_to_exit^confirmClose^true^UI^$citraconf^$emuconfigs/citra/qt-config.ini -change^ask_to_exit^confirmClose\default^true^UI^$citraconf^$emuconfigs/citra/qt-config.ini -change^abxy_button_swap^profiles\1\button_a^button:1,engine:sdl,guid:030079f6de280000ff11000001000000,port:0^Controls^$citraconf^$emuconfigs/citra/qt-config.ini -change^abxy_button_swap^profiles\1\button_b^button:0,engine:sdl,guid:030079f6de280000ff11000001000000,port:0^Controls^$citraconf^$emuconfigs/citra/qt-config.ini -change^abxy_button_swap^profiles\1\button_x^button:3,engine:sdl,guid:030079f6de280000ff11000001000000,port:0^Controls^$citraconf^$emuconfigs/citra/qt-config.ini -change^abxy_button_swap^profiles\1\button_y^button:2,engine:sdl,guid:030079f6de280000ff11000001000000,port:0^Controls^$citraconf^$emuconfigs/citra/qt-config.ini +change^ask_to_exit^confirmClose^true^UI^$citraconf^$config/citra/qt-config.ini +change^ask_to_exit^confirmClose\default^true^UI^$citraconf^$config/citra/qt-config.ini +change^abxy_button_swap^profiles\1\button_a^button:1,engine:sdl,guid:030079f6de280000ff11000001000000,port:0^Controls^$citraconf^$config/citra/qt-config.ini +change^abxy_button_swap^profiles\1\button_b^button:0,engine:sdl,guid:030079f6de280000ff11000001000000,port:0^Controls^$citraconf^$config/citra/qt-config.ini +change^abxy_button_swap^profiles\1\button_x^button:3,engine:sdl,guid:030079f6de280000ff11000001000000,port:0^Controls^$citraconf^$config/citra/qt-config.ini +change^abxy_button_swap^profiles\1\button_y^button:2,engine:sdl,guid:030079f6de280000ff11000001000000,port:0^Controls^$citraconf^$config/citra/qt-config.ini diff --git a/config/retrodeck/presets/dolphin_presets.cfg b/config/retrodeck/presets/dolphin_presets.cfg new file mode 100644 index 00000000..2348df5b --- /dev/null +++ b/config/retrodeck/presets/dolphin_presets.cfg @@ -0,0 +1,2 @@ +config_file_format^dolphin +change^ask_to_exit^ConfirmStop^True^Interface^$dolphinconf^$config/dolphin/Dolphin.ini diff --git a/config/retrodeck/presets/duckstation_presets.cfg b/config/retrodeck/presets/duckstation_presets.cfg new file mode 100644 index 00000000..c15b5db1 --- /dev/null +++ b/config/retrodeck/presets/duckstation_presets.cfg @@ -0,0 +1,8 @@ +config_file_format^duckstation +change^cheevos^Enabled^true^Cheevos^$duckstationconf^$config/duckstation/settings.ini +change^cheevos^Username^$cheevos_username^Cheevos^$duckstationconf^$config/duckstation/settings.ini +change^cheevos^Token^$cheevos_token^Cheevos^$duckstationconf^$config/duckstation/settings.ini +change^cheevos^LoginTimestamp^$cheevos_login_timestamp^Cheevos^$duckstationconf^$config/duckstation/settings.ini +change^cheevos_hardcore^ChallengeMode^true^Cheevos^$duckstationconf^$config/duckstation/settings.ini +change^savestate_auto_save^SaveStateOnExit^true^Main^$duckstationconf^$config/duckstation/settings.ini +change^ask_to_exit^ConfirmPowerOff^true^Main^$duckstationconf^$config/duckstation/settings.ini diff --git a/emu-configs/defaults/retrodeck/presets/example.txt b/config/retrodeck/presets/example.txt similarity index 92% rename from emu-configs/defaults/retrodeck/presets/example.txt rename to config/retrodeck/presets/example.txt index 3d64330c..8b32161e 100644 --- a/emu-configs/defaults/retrodeck/presets/example.txt +++ b/config/retrodeck/presets/example.txt @@ -6,4 +6,4 @@ enable^abxy_button_swap^/var/config/retroarch/config/remaps/Snes9x/snes.rmp # T OTHER NOTES: - The name of the presets configuration file for any given system MUST be _presets.cfg - The is whatever name is given to this system in retrodeck.cfg, it is not tied to the actual emulator name. -- The name given to the system in retrodeck.cfg will be translated to a "nice looking" format for user dialogs through the file at emu-configs/defaults/retrodeck/reference_lists/pretty_system_names.cfg but will be used internally as-is +- The name given to the system in retrodeck.cfg will be translated to a "nice looking" format for user dialogs through the file at config/retrodeck/reference_lists/pretty_system_names.cfg but will be used internally as-is diff --git a/emu-configs/defaults/retrodeck/presets/gb_presets.cfg b/config/retrodeck/presets/gb_presets.cfg similarity index 57% rename from emu-configs/defaults/retrodeck/presets/gb_presets.cfg rename to config/retrodeck/presets/gb_presets.cfg index 5c61c27b..ef495dfa 100644 --- a/emu-configs/defaults/retrodeck/presets/gb_presets.cfg +++ b/config/retrodeck/presets/gb_presets.cfg @@ -1,13 +1,13 @@ config_file_format^retroarch -change^borders^aspect_ratio_index^23^^/var/config/retroarch/config/Gambatte/gb.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^custom_viewport_height^576^^/var/config/retroarch/config/Gambatte/gb.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^custom_viewport_width^640^^/var/config/retroarch/config/Gambatte/gb.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^custom_viewport_x^320^^/var/config/retroarch/config/Gambatte/gb.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^custom_viewport_y^20^^/var/config/retroarch/config/Gambatte/gb.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay^/var/config/retroarch/overlays/borders/pegasus/gb.cfg^^/var/config/retroarch/config/Gambatte/gb.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_aspect_adjust_landscape^0.110000^^/var/config/retroarch/config/Gambatte/gb.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_enable^true^^/var/config/retroarch/config/Gambatte/gb.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_scale_landscape^1.205000^^/var/config/retroarch/config/Gambatte/gb.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_y_offset_landscape^0.005000^^/var/config/retroarch/config/Gambatte/gb.cfg^$emuconfigs/retroarch/retroarch.cfg +change^borders^aspect_ratio_index^23^^/var/config/retroarch/config/Gambatte/gb.cfg^$config/retroarch/retroarch.cfg +change^borders^custom_viewport_height^576^^/var/config/retroarch/config/Gambatte/gb.cfg^$config/retroarch/retroarch.cfg +change^borders^custom_viewport_width^640^^/var/config/retroarch/config/Gambatte/gb.cfg^$config/retroarch/retroarch.cfg +change^borders^custom_viewport_x^320^^/var/config/retroarch/config/Gambatte/gb.cfg^$config/retroarch/retroarch.cfg +change^borders^custom_viewport_y^20^^/var/config/retroarch/config/Gambatte/gb.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay^/var/config/retroarch/overlays/borders/pegasus/gb.cfg^^/var/config/retroarch/config/Gambatte/gb.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_aspect_adjust_landscape^0.110000^^/var/config/retroarch/config/Gambatte/gb.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_enable^true^^/var/config/retroarch/config/Gambatte/gb.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_scale_landscape^1.205000^^/var/config/retroarch/config/Gambatte/gb.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_y_offset_landscape^0.005000^^/var/config/retroarch/config/Gambatte/gb.cfg^$config/retroarch/retroarch.cfg enable^abxy_button_swap^/var/config/retroarch/config/remaps/Gambatte/gb.rmp -change^rewind^rewind_enable^true^^/var/config/retroarch/config/Gambatte/gb.cfg^$emuconfigs/retroarch/retroarch.cfg +change^rewind^rewind_enable^true^^/var/config/retroarch/config/Gambatte/gb.cfg^$config/retroarch/retroarch.cfg diff --git a/emu-configs/defaults/retrodeck/presets/gba_presets.cfg b/config/retrodeck/presets/gba_presets.cfg similarity index 58% rename from emu-configs/defaults/retrodeck/presets/gba_presets.cfg rename to config/retrodeck/presets/gba_presets.cfg index 7f4d649e..f0f80cc4 100644 --- a/emu-configs/defaults/retrodeck/presets/gba_presets.cfg +++ b/config/retrodeck/presets/gba_presets.cfg @@ -1,13 +1,13 @@ config_file_format^retroarch -change^borders^aspect_ratio_index^23^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^custom_viewport_height^640^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^custom_viewport_width^960^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^custom_viewport_x^160^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^custom_viewport_y^0^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay^/var/config/retroarch/overlays/borders/pegasus/gba.cfg^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_aspect_adjust_landscape^0.110000^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_enable^true^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_scale_landscape^1.2150000^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_y_offset_landscape^0.020000^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg +change^borders^aspect_ratio_index^23^^/var/config/retroarch/config/mGBA/gba.cfg^$config/retroarch/retroarch.cfg +change^borders^custom_viewport_height^640^^/var/config/retroarch/config/mGBA/gba.cfg^$config/retroarch/retroarch.cfg +change^borders^custom_viewport_width^960^^/var/config/retroarch/config/mGBA/gba.cfg^$config/retroarch/retroarch.cfg +change^borders^custom_viewport_x^160^^/var/config/retroarch/config/mGBA/gba.cfg^$config/retroarch/retroarch.cfg +change^borders^custom_viewport_y^0^^/var/config/retroarch/config/mGBA/gba.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay^/var/config/retroarch/overlays/borders/pegasus/gba.cfg^^/var/config/retroarch/config/mGBA/gba.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_aspect_adjust_landscape^0.110000^^/var/config/retroarch/config/mGBA/gba.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_enable^true^^/var/config/retroarch/config/mGBA/gba.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_scale_landscape^1.2150000^^/var/config/retroarch/config/mGBA/gba.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_y_offset_landscape^0.020000^^/var/config/retroarch/config/mGBA/gba.cfg^$config/retroarch/retroarch.cfg enable^abxy_button_swap^/var/config/retroarch/config/remaps/mGBA/gba.rmp -change^rewind^rewind_enable^true^^/var/config/retroarch/config/mGBA/gba.cfg^$emuconfigs/retroarch/retroarch.cfg +change^rewind^rewind_enable^true^^/var/config/retroarch/config/mGBA/gba.cfg^$config/retroarch/retroarch.cfg diff --git a/emu-configs/defaults/retrodeck/presets/gbc_presets.cfg b/config/retrodeck/presets/gbc_presets.cfg similarity index 58% rename from emu-configs/defaults/retrodeck/presets/gbc_presets.cfg rename to config/retrodeck/presets/gbc_presets.cfg index 4580722e..4bdbbb9d 100644 --- a/emu-configs/defaults/retrodeck/presets/gbc_presets.cfg +++ b/config/retrodeck/presets/gbc_presets.cfg @@ -1,13 +1,13 @@ config_file_format^retroarch -change^borders^aspect_ratio_index^23^^/var/config/retroarch/config/Gambatte/gbc.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^custom_viewport_height^576^^/var/config/retroarch/config/Gambatte/gbc.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^custom_viewport_width^640^^/var/config/retroarch/config/Gambatte/gbc.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^custom_viewport_x^320^^/var/config/retroarch/config/Gambatte/gbc.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^custom_viewport_y^20^^/var/config/retroarch/config/Gambatte/gbc.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay^/var/config/retroarch/overlays/borders/pegasus/gbc.cfg^^/var/config/retroarch/config/Gambatte/gbc.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_aspect_adjust_landscape^0.110000^^/var/config/retroarch/config/Gambatte/gbc.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_enable^true^^/var/config/retroarch/config/Gambatte/gbc.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_scale_landscape^1.205000^^/var/config/retroarch/config/Gambatte/gbc.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_y_offset_landscape^-0.040000^^/var/config/retroarch/config/Gambatte/gbc.cfg^$emuconfigs/retroarch/retroarch.cfg +change^borders^aspect_ratio_index^23^^/var/config/retroarch/config/Gambatte/gbc.cfg^$config/retroarch/retroarch.cfg +change^borders^custom_viewport_height^576^^/var/config/retroarch/config/Gambatte/gbc.cfg^$config/retroarch/retroarch.cfg +change^borders^custom_viewport_width^640^^/var/config/retroarch/config/Gambatte/gbc.cfg^$config/retroarch/retroarch.cfg +change^borders^custom_viewport_x^320^^/var/config/retroarch/config/Gambatte/gbc.cfg^$config/retroarch/retroarch.cfg +change^borders^custom_viewport_y^20^^/var/config/retroarch/config/Gambatte/gbc.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay^/var/config/retroarch/overlays/borders/pegasus/gbc.cfg^^/var/config/retroarch/config/Gambatte/gbc.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_aspect_adjust_landscape^0.110000^^/var/config/retroarch/config/Gambatte/gbc.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_enable^true^^/var/config/retroarch/config/Gambatte/gbc.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_scale_landscape^1.205000^^/var/config/retroarch/config/Gambatte/gbc.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_y_offset_landscape^-0.040000^^/var/config/retroarch/config/Gambatte/gbc.cfg^$config/retroarch/retroarch.cfg enable^abxy_button_swap^/var/config/retroarch/config/remaps/Gambatte/gbc.rmp -change^rewind^rewind_enable^true^^/var/config/retroarch/config/Gambatte/gbc.cfg^$emuconfigs/retroarch/retroarch.cfg +change^rewind^rewind_enable^true^^/var/config/retroarch/config/Gambatte/gbc.cfg^$config/retroarch/retroarch.cfg diff --git a/emu-configs/defaults/retrodeck/presets/genesis_presets.cfg b/config/retrodeck/presets/genesis_presets.cfg similarity index 52% rename from emu-configs/defaults/retrodeck/presets/genesis_presets.cfg rename to config/retrodeck/presets/genesis_presets.cfg index 59fccbf8..5de02f08 100644 --- a/emu-configs/defaults/retrodeck/presets/genesis_presets.cfg +++ b/config/retrodeck/presets/genesis_presets.cfg @@ -1,7 +1,7 @@ config_file_format^retroarch -change^borders^input_overlay^/var/config/retroarch/overlays/borders/pegasus/genesis.cfg^^/var/config/retroarch/config/Genesis Plus GX/genesis.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_aspect_adjust_landscape^0.100000^^/var/config/retroarch/config/Genesis Plus GX/genesis.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_enable^true^^/var/config/retroarch/config/Genesis Plus GX/genesis.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_scale_landscape^1.040000^^/var/config/retroarch/config/Genesis Plus GX/genesis.cfg^$emuconfigs/retroarch/retroarch.cfg -change^widescreen^aspect_ratio_index^24^^/var/config/retroarch/config/Genesis Plus GX/genesis.cfg^$emuconfigs/retroarch/retroarch.cfg -change^rewind^rewind_enable^true^^/var/config/retroarch/config/Genesis Plus GX/genesis.cfg^$emuconfigs/retroarch/retroarch.cfg +change^borders^input_overlay^/var/config/retroarch/overlays/borders/pegasus/genesis.cfg^^/var/config/retroarch/config/Genesis Plus GX/genesis.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_aspect_adjust_landscape^0.100000^^/var/config/retroarch/config/Genesis Plus GX/genesis.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_enable^true^^/var/config/retroarch/config/Genesis Plus GX/genesis.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_scale_landscape^1.040000^^/var/config/retroarch/config/Genesis Plus GX/genesis.cfg^$config/retroarch/retroarch.cfg +change^widescreen^aspect_ratio_index^24^^/var/config/retroarch/config/Genesis Plus GX/genesis.cfg^$config/retroarch/retroarch.cfg +change^rewind^rewind_enable^true^^/var/config/retroarch/config/Genesis Plus GX/genesis.cfg^$config/retroarch/retroarch.cfg diff --git a/emu-configs/defaults/retrodeck/presets/gg_presets.cfg b/config/retrodeck/presets/gg_presets.cfg similarity index 52% rename from emu-configs/defaults/retrodeck/presets/gg_presets.cfg rename to config/retrodeck/presets/gg_presets.cfg index c2b58364..5920c6d1 100644 --- a/emu-configs/defaults/retrodeck/presets/gg_presets.cfg +++ b/config/retrodeck/presets/gg_presets.cfg @@ -1,12 +1,12 @@ config_file_format^retroarch -change^borders^aspect_ratio_index^23^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^custom_viewport_width^960^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^custom_viewport_height^720^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^custom_viewport_x^160^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^custom_viewport_y^24^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay^/var/config/retroarch/overlays/borders/pegasus/gg.cfg^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_aspect_adjust_landscape^0.110000^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_enable^true^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_scale_landscape^1.350000^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_y_offset_landscape^0.020000^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$emuconfigs/retroarch/retroarch.cfg -change^rewind^rewind_enable^true^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$emuconfigs/retroarch/retroarch.cfg +change^borders^aspect_ratio_index^23^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$config/retroarch/retroarch.cfg +change^borders^custom_viewport_width^960^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$config/retroarch/retroarch.cfg +change^borders^custom_viewport_height^720^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$config/retroarch/retroarch.cfg +change^borders^custom_viewport_x^160^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$config/retroarch/retroarch.cfg +change^borders^custom_viewport_y^24^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay^/var/config/retroarch/overlays/borders/pegasus/gg.cfg^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_aspect_adjust_landscape^0.110000^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_enable^true^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_scale_landscape^1.350000^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_y_offset_landscape^0.020000^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$config/retroarch/retroarch.cfg +change^rewind^rewind_enable^true^^/var/config/retroarch/config/Genesis Plus GX/gg.cfg^$config/retroarch/retroarch.cfg diff --git a/emu-configs/defaults/retrodeck/presets/n64_presets.cfg b/config/retrodeck/presets/n64_presets.cfg similarity index 61% rename from emu-configs/defaults/retrodeck/presets/n64_presets.cfg rename to config/retrodeck/presets/n64_presets.cfg index 8a92b041..147b8b3d 100644 --- a/emu-configs/defaults/retrodeck/presets/n64_presets.cfg +++ b/config/retrodeck/presets/n64_presets.cfg @@ -1,6 +1,6 @@ config_file_format^retroarch -change^borders^input_overlay^/var/config/retroarch/overlays/borders/pegasus/N64.cfg^^/var/config/retroarch/config/Mupen64Plus-Next/n64.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_aspect_adjust_landscape^0.145000^^/var/config/retroarch/config/Mupen64Plus-Next/n64.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_enable^true^^/var/config/retroarch/config/Mupen64Plus-Next/n64.cfg^$emuconfigs/retroarch/retroarch.cfg -change^widescreen^aspect_ratio_index^24^^/var/config/retroarch/config/Mupen64Plus-Next/n64.cfg^$emuconfigs/retroarch/retroarch.cfg +change^borders^input_overlay^/var/config/retroarch/overlays/borders/pegasus/N64.cfg^^/var/config/retroarch/config/Mupen64Plus-Next/n64.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_aspect_adjust_landscape^0.145000^^/var/config/retroarch/config/Mupen64Plus-Next/n64.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_enable^true^^/var/config/retroarch/config/Mupen64Plus-Next/n64.cfg^$config/retroarch/retroarch.cfg +change^widescreen^aspect_ratio_index^24^^/var/config/retroarch/config/Mupen64Plus-Next/n64.cfg^$config/retroarch/retroarch.cfg enable^abxy_button_swap^/var/config/retroarch/config/remaps/Snes9x/snes.rmp diff --git a/config/retrodeck/presets/pcsx2_presets.cfg b/config/retrodeck/presets/pcsx2_presets.cfg new file mode 100644 index 00000000..d91d4f90 --- /dev/null +++ b/config/retrodeck/presets/pcsx2_presets.cfg @@ -0,0 +1,8 @@ +config_file_format^pcsx2 +change^cheevos^Enabled^true^Achievements^$pcsx2conf^$config/PCSX2/PCSX2.ini +change^cheevos^Username^$cheevos_username^Achievements^$pcsx2conf^$config/PCSX2/PCSX2.ini +change^cheevos^Token^$cheevos_token^Achievements^$pcsx2conf^$config/PCSX2/PCSX2.ini +change^cheevos^LoginTimestamp^$cheevos_login_timestamp^Achievements^$pcsx2conf^$config/PCSX2/PCSX2.ini +change^cheevos_hardcore^ChallengeMode^true^Achievements^$pcsx2conf^$config/PCSX2/PCSX2.ini +change^savestate_auto_save^SaveStateOnShutdown^true^EmuCore^$pcsx2conf^$config/PCSX2/PCSX2.ini +change^ask_to_exit^ConfirmShutdown^true^UI^$pcsx2conf^$config/PCSX2/PCSX2.ini diff --git a/emu-configs/defaults/retrodeck/presets/ppsspp_presets.cfg b/config/retrodeck/presets/ppsspp_presets.cfg similarity index 63% rename from emu-configs/defaults/retrodeck/presets/ppsspp_presets.cfg rename to config/retrodeck/presets/ppsspp_presets.cfg index 061b6dee..2236fdd2 100644 --- a/emu-configs/defaults/retrodeck/presets/ppsspp_presets.cfg +++ b/config/retrodeck/presets/ppsspp_presets.cfg @@ -1,5 +1,5 @@ config_file_format^ppsspp -change^savestate_auto_load^AutoLoadSaveState^2^General^$ppssppconf^$emuconfigs/ppssppdl/ppsspp.ini -change^cheevos^AchievementsEnable^True^Achievements^$ppssppconf^$emuconfigs/ppssppdl/ppsspp.ini -change^cheevos^AchievementsUserName^Achievements^$cheevos_username^$ppssppconf^$emuconfigs/ppssppdl/ppsspp.ini -change^cheevos_hardcore^AchievementsChallengeMode^True^Achievements^$ppssppconf^$emuconfigs/ppssppdl/ppsspp.ini +change^savestate_auto_load^AutoLoadSaveState^2^General^$ppssppconf^$config/ppssppdl/ppsspp.ini +change^cheevos^AchievementsEnable^True^Achievements^$ppssppconf^$config/ppssppdl/ppsspp.ini +change^cheevos^AchievementsUserName^Achievements^$cheevos_username^$ppssppconf^$config/ppssppdl/ppsspp.ini +change^cheevos_hardcore^AchievementsChallengeMode^True^Achievements^$ppssppconf^$config/ppssppdl/ppsspp.ini diff --git a/config/retrodeck/presets/primehack_presets.cfg b/config/retrodeck/presets/primehack_presets.cfg new file mode 100644 index 00000000..6e5754be --- /dev/null +++ b/config/retrodeck/presets/primehack_presets.cfg @@ -0,0 +1,2 @@ +config_file_format^primehack +change^ask_to_exit^ConfirmStop^True^Interface^$primehackconf^$config/primehack/Dolphin.ini diff --git a/emu-configs/defaults/retrodeck/presets/psx_ra_presets.cfg b/config/retrodeck/presets/psx_ra_presets.cfg similarity index 55% rename from emu-configs/defaults/retrodeck/presets/psx_ra_presets.cfg rename to config/retrodeck/presets/psx_ra_presets.cfg index f9cffa4f..3376f1d0 100644 --- a/emu-configs/defaults/retrodeck/presets/psx_ra_presets.cfg +++ b/config/retrodeck/presets/psx_ra_presets.cfg @@ -1,6 +1,6 @@ config_file_format^retroarch -change^borders^input_overlay^/var/config/retrodeck/overlays/borders/pegasus/psx.cfg^^/var/config/retroarch/config/SwanStation/psx.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_aspect_adjust_landscape^0.120000^^/var/config/retroarch/config/SwanStation/psx.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_enable^true^^/var/config/retroarch/config/SwanStation/psx.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_scale_landscape^1.040000^^/var/config/retroarch/config/SwanStation/psx.cfg^$emuconfigs/retroarch/retroarch.cfg -change^widescreen^aspect_ratio_index^24^^/var/config/retroarch/config/SwanStation/psx.cfg^$emuconfigs/retroarch/retroarch.cfg +change^borders^input_overlay^/var/config/retrodeck/overlays/borders/pegasus/psx.cfg^^/var/config/retroarch/config/SwanStation/psx.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_aspect_adjust_landscape^0.120000^^/var/config/retroarch/config/SwanStation/psx.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_enable^true^^/var/config/retroarch/config/SwanStation/psx.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_scale_landscape^1.040000^^/var/config/retroarch/config/SwanStation/psx.cfg^$config/retroarch/retroarch.cfg +change^widescreen^aspect_ratio_index^24^^/var/config/retroarch/config/SwanStation/psx.cfg^$config/retroarch/retroarch.cfg diff --git a/emu-configs/defaults/retrodeck/presets/remaps/Gambatte/gb.rmp.disabled b/config/retrodeck/presets/remaps/Gambatte/gb.rmp.disabled similarity index 100% rename from emu-configs/defaults/retrodeck/presets/remaps/Gambatte/gb.rmp.disabled rename to config/retrodeck/presets/remaps/Gambatte/gb.rmp.disabled diff --git a/emu-configs/defaults/retrodeck/presets/remaps/Gambatte/gbc.rmp.disabled b/config/retrodeck/presets/remaps/Gambatte/gbc.rmp.disabled similarity index 100% rename from emu-configs/defaults/retrodeck/presets/remaps/Gambatte/gbc.rmp.disabled rename to config/retrodeck/presets/remaps/Gambatte/gbc.rmp.disabled diff --git a/emu-configs/defaults/retrodeck/presets/remaps/Mesen/nes.rmp.disabled b/config/retrodeck/presets/remaps/Mesen/nes.rmp.disabled similarity index 100% rename from emu-configs/defaults/retrodeck/presets/remaps/Mesen/nes.rmp.disabled rename to config/retrodeck/presets/remaps/Mesen/nes.rmp.disabled diff --git a/emu-configs/defaults/retrodeck/presets/remaps/Mupen64Plus-Next/n64.rmp.disabled b/config/retrodeck/presets/remaps/Mupen64Plus-Next/n64.rmp.disabled similarity index 100% rename from emu-configs/defaults/retrodeck/presets/remaps/Mupen64Plus-Next/n64.rmp.disabled rename to config/retrodeck/presets/remaps/Mupen64Plus-Next/n64.rmp.disabled diff --git a/emu-configs/defaults/retrodeck/presets/remaps/Snes9x/snes.rmp.disabled b/config/retrodeck/presets/remaps/Snes9x/snes.rmp.disabled similarity index 100% rename from emu-configs/defaults/retrodeck/presets/remaps/Snes9x/snes.rmp.disabled rename to config/retrodeck/presets/remaps/Snes9x/snes.rmp.disabled diff --git a/emu-configs/defaults/retrodeck/presets/remaps/mGBA/gba.rmp.disabled b/config/retrodeck/presets/remaps/mGBA/gba.rmp.disabled similarity index 100% rename from emu-configs/defaults/retrodeck/presets/remaps/mGBA/gba.rmp.disabled rename to config/retrodeck/presets/remaps/mGBA/gba.rmp.disabled diff --git a/config/retrodeck/presets/retroarch_presets.cfg b/config/retrodeck/presets/retroarch_presets.cfg new file mode 100644 index 00000000..9a05b1f6 --- /dev/null +++ b/config/retrodeck/presets/retroarch_presets.cfg @@ -0,0 +1,7 @@ +config_file_format^retroarch-all +change^cheevos^cheevos_enable^true^^$raconf^$config/retroarch/retroarch.cfg +change^cheevos^cheevos_token^$cheevos_token^^$raconf^$config/retroarch/retroarch.cfg +change^cheevos^cheevos_username^$cheevos_username^^$raconf^$config/retroarch/retroarch.cfg +change^cheevos_hardcore^cheevos_hardcore_mode_enable^true^^$raconf^$config/retroarch/retroarch.cfg +change^quick_resume^savestate_auto_load^true^^$raconf^$config/retroarch/retroarch.cfg +change^quick_resume^savestate_auto_save^true^^$raconf^$config/retroarch/retroarch.cfg diff --git a/emu-configs/defaults/retrodeck/presets/snes_presets.cfg b/config/retrodeck/presets/snes_presets.cfg similarity index 60% rename from emu-configs/defaults/retrodeck/presets/snes_presets.cfg rename to config/retrodeck/presets/snes_presets.cfg index 99825095..396a7131 100644 --- a/emu-configs/defaults/retrodeck/presets/snes_presets.cfg +++ b/config/retrodeck/presets/snes_presets.cfg @@ -1,8 +1,8 @@ config_file_format^retroarch -change^borders^input_overlay^/var/config/retroarch/overlays/borders/pegasus/snes87.cfg^^/var/config/retroarch/config/Snes9x/snes.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_aspect_adjust_landscape^0.305000^^/var/config/retroarch/config/Snes9x/snes.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_scale_landscape^1.050000^^/var/config/retroarch/config/Snes9x/snes.cfg^$emuconfigs/retroarch/retroarch.cfg -change^borders^input_overlay_enable^true^^/var/config/retroarch/config/Snes9x/snes.cfg^$emuconfigs/retroarch/retroarch.cfg -change^widescreen^aspect_ratio_index^24^^/var/config/retroarch/config/Snes9x/snes.cfg^$emuconfigs/retroarch/retroarch.cfg +change^borders^input_overlay^/var/config/retroarch/overlays/borders/pegasus/snes87.cfg^^/var/config/retroarch/config/Snes9x/snes.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_aspect_adjust_landscape^0.305000^^/var/config/retroarch/config/Snes9x/snes.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_scale_landscape^1.050000^^/var/config/retroarch/config/Snes9x/snes.cfg^$config/retroarch/retroarch.cfg +change^borders^input_overlay_enable^true^^/var/config/retroarch/config/Snes9x/snes.cfg^$config/retroarch/retroarch.cfg +change^widescreen^aspect_ratio_index^24^^/var/config/retroarch/config/Snes9x/snes.cfg^$config/retroarch/retroarch.cfg enable^abxy_button_swap^/var/config/retroarch/config/remaps/Snes9x/snes.rmp -change^rewind^rewind_enable^true^^/var/config/retroarch/config/Snes9x/snes.cfg^$emuconfigs/retroarch/retroarch.cfg +change^rewind^rewind_enable^true^^/var/config/retroarch/config/Snes9x/snes.cfg^$config/retroarch/retroarch.cfg diff --git a/emu-configs/defaults/retrodeck/presets/yuzu_presets.cfg b/config/retrodeck/presets/yuzu_presets.cfg similarity index 62% rename from emu-configs/defaults/retrodeck/presets/yuzu_presets.cfg rename to config/retrodeck/presets/yuzu_presets.cfg index e03474f1..8c7247a0 100644 --- a/emu-configs/defaults/retrodeck/presets/yuzu_presets.cfg +++ b/config/retrodeck/presets/yuzu_presets.cfg @@ -1,7 +1,7 @@ config_file_format^yuzu -change^ask_to_exit^confirmClose^true^UI^$yuzuconf^$emuconfigs/yuzu/qt-config.ini -change^ask_to_exit^confirmClose\default^true^UI^$yuzuconf^$emuconfigs/yuzu/qt-config.ini -change^abxy_button_swap^player_0_button_a^"engine:sdl,guid:03000000de280000ff11000001000000,port:0,button:0,pad:0"^Controls^$yuzuconf^$emuconfigs/yuzu/qt-config.ini -change^abxy_button_swap^player_0_button_b^"engine:sdl,guid:03000000de280000ff11000001000000,port:0,button:1,pad:0"^Controls^$yuzuconf^$emuconfigs/yuzu/qt-config.ini -change^abxy_button_swap^player_0_button_x^"engine:sdl,guid:03000000de280000ff11000001000000,port:0,button:2,pad:0"^Controls^$yuzuconf^$emuconfigs/yuzu/qt-config.ini -change^abxy_button_swap^player_0_button_y^"engine:sdl,guid:03000000de280000ff11000001000000,port:0,button:3,pad:0"^Controls^$yuzuconf^$emuconfigs/yuzu/qt-config.ini +change^ask_to_exit^confirmClose^true^UI^$yuzuconf^$config/yuzu/qt-config.ini +change^ask_to_exit^confirmClose\default^true^UI^$yuzuconf^$config/yuzu/qt-config.ini +change^abxy_button_swap^player_0_button_a^"engine:sdl,guid:03000000de280000ff11000001000000,port:0,button:0,pad:0"^Controls^$yuzuconf^$config/yuzu/qt-config.ini +change^abxy_button_swap^player_0_button_b^"engine:sdl,guid:03000000de280000ff11000001000000,port:0,button:1,pad:0"^Controls^$yuzuconf^$config/yuzu/qt-config.ini +change^abxy_button_swap^player_0_button_x^"engine:sdl,guid:03000000de280000ff11000001000000,port:0,button:2,pad:0"^Controls^$yuzuconf^$config/yuzu/qt-config.ini +change^abxy_button_swap^player_0_button_y^"engine:sdl,guid:03000000de280000ff11000001000000,port:0,button:3,pad:0"^Controls^$yuzuconf^$config/yuzu/qt-config.ini diff --git a/config/retrodeck/reference_lists/bios.json b/config/retrodeck/reference_lists/bios.json new file mode 100644 index 00000000..cfd528a8 --- /dev/null +++ b/config/retrodeck/reference_lists/bios.json @@ -0,0 +1,2334 @@ +{ + "bios": { + "panafz1.bin": { + "md5": "f47264dd47fe30f73ab3c010015c155b", + "system": "3do", + "description": "Panasonic FZ-1" + }, + "panafz10.bin": { + "md5": "51f2f43ae2f3508a14d9f56597e2d3ce", + "system": "3do", + "description": "Panasonic FZ-10" + }, + "panafz10-norsa.bin": { + "md5": "1477bda80dc33731a65468c1f5bcbee9", + "system": "3do", + "description": "Panasonic FZ-10 [RSA Patch]" + }, + "panafz10e-anvil.bin": { + "md5": "a48e6746bd7edec0f40cff078f0bb19f", + "system": "3do", + "description": "Panasonic FZ-10-E [Anvil]" + }, + "panafz10e-anvil-norsa.bin": { + "md5": "cf11bbb5a16d7af9875cca9de9a15e09", + "system": "3do", + "description": "Panasonic FZ-10-E [Anvil RSA Patch]" + }, + "panafz1j.bin": { + "md5": "a496cfdded3da562759be3561317b605", + "system": "3do", + "description": "Panasonic FZ-1J" + }, + "panafz1j-norsa.bin": { + "md5": "f6c71de7470d16abe4f71b1444883dc8", + "system": "3do", + "description": "Panasonic FZ-1J [RSA Patch]" + }, + "goldstar.bin": { + "md5": "8639fd5e549bd6238cfee79e3e749114", + "system": "3do", + "description": "Goldstar GDO-101M" + }, + "sanyotry.bin": { + "md5": "35fa1a1ebaaeea286dc5cd15487c13ea", + "system": "3do", + "description": "Sanyo IMP-21J TRY" + }, + "3do_arcade_saot.bin": { + "md5": "8970fc987ab89a7f64da9f8a8c4333ff", + "system": "3do", + "description": "Shootout At Old Tucson" + }, + "panafz1-kanji.bin": { + "md5": "b8dc97f778a6245c58e064b0312e8281", + "system": "3do", + "description": "Panasonic FZ-1 Kanji Font ROM", + "required": "Required for some Japanese games. Optional otherwise" + }, + "panafz10ja-anvil-kanji.bin": { + "md5": "428577250f43edc902ea239c50d2240d", + "system": "3do", + "description": "Panasonic FZ-10JA Kanji Font ROM", + "required": "Required for some Japanese games. Optional otherwise" + }, + "panafz1j-kanji.bin": { + "md5": "c23fb5d5e6bb1c240d02cf968972be37", + "system": "3do", + "description": "Panasonic FZ-1J Kanji Font ROM", + "required": "Required for some Japanese games. Optional otherwise" + }, + "neogeo.zip": { + "md5": "00dad01abdbf8ea9e79ad2fe11bdb182", + "system": "fbneo", + "description": "Neo Geo BIOS", + "required": "required", + "paths": [ + "roms/neogeo", + "roms/fbneo", + "roms/arcade" + ] + }, + "neocdz.zip": { + "md5": "c733b4b7bd30fa849874d96c591c8639", + "system": "fbneo", + "description": "Neo Geo CDZ BIOS", + "required": "required" + }, + "decocass.zip": { + "md5": "b7e1189b341bf6a8e270017c096d21b0", + "system": "fbneo", + "description": "DECO Cassette System BIOS", + "required": "required" + }, + "isgsm.zip": { + "md5": "4a56d56e2219c5e2b006b66a4263c01c", + "system": "fbneo", + "description": "ISG Selection Master Type 2006 System BIOS", + "required": "required" + }, + "midssio.zip": { + "md5": "5904b0de768d1d506e766aa7e18994c1", + "system": "fbneo", + "description": "Midway SSIO Sound Board Internal ROM", + "required": "required" + }, + "nmk004.zip": { + "md5": "bfacf1a68792d5348f93cf724d2f1dda", + "system": "fbneo", + "description": "NMK004 Internal ROM", + "required": "required" + }, + "pgm.zip": { + "md5": "87cc944eef4c671aa2629a8ba48a08e0", + "system": "fbneo", + "description": "PGM System BIOS", + "required": "required" + }, + "skns.zip": { + "md5": "3f956c4e7008804cb47cbde49bd5b908", + "system": "fbneo", + "description": "Super Kaneko Nova System BIOS", + "required": "required" + }, + "ym2608.zip": { + "md5": "79ae0d2bb1901b7e606b6dc339b79a97", + "system": "fbneo", + "description": "YM2608 Internal ROM", + "required": "required" + }, + "cchip.zip": { + "md5": "df6f8a3d83c028a5cb9f2f2be60773f3", + "system": "fbneo", + "description": "C-Chip Internal ROM", + "required": "required" + }, + "bubsys.zip": { + "md5": "f81298afd68a1a24a49a1a2d9f087964", + "system": "fbneo", + "description": "Bubble System BIOS", + "required": "required" + }, + "namcoc69.zip": { + "system": "fbneo", + "description": "Namco C69 BIOS", + "required": "required" + }, + "namcoc70.zip": { + "system": "fbneo", + "description": "Namco C70 BIOS", + "required": "required" + }, + "namcoc75.zip": { + "system": "fbneo", + "description": "Namco C75 BIOS", + "required": "required" + }, + "coleco.zip": { + "system": "fbneo", + "description": "ColecoVision System BIOS", + "required": "required" + }, + "fdsbios.zip": { + "system": "fbneo", + "description": "FDS System BIOS", + "required": "required" + }, + "msx.zip": { + "system": "fbneo", + "description": "MSX1 System BIOS", + "required": "required" + }, + "ngp.zip": { + "system": "fbneo", + "description": "NeoGeo Pocket BIOS", + "required": "required" + }, + "spectrum.zip": { + "system": "fbneo", + "description": "ZX Spectrum BIOS", + "required": "required" + }, + "spec128.zip": { + "system": "fbneo", + "description": "ZX Spectrum 128 BIOS", + "required": "required" + }, + "spec1282a.zip": { + "system": "fbneo", + "description": "ZX Spectrum 128 +2a BIOS", + "required": "required" + }, + "channelf.zip": { + "system": "fbneo", + "description": "Fairchild Channel F BIOS", + "required": "required" + }, + "5200.rom": { + "md5": "281f20ea4320404ec820fb7ec0693b38", + "system": "atari5200", + "description": "Atari 5200 BIOS", + "required": "required" + }, + "ATARIXL.ROM": { + "md5": "06daac977823773a3eea3422fd26a703", + "system": "atari5200", + "description": "Atari XL/XE OS BIOS ", + "required": "required" + }, + "ATARIBAS.ROM": { + "md5": "0bac0c6a50104045d902df4503a4c30b", + "system": "atari5200", + "description": "BASIC interpreter BIOS ", + "required": "required" + }, + "ATARIOSA.ROM": { + "md5": "eb1f32f5d9f382db1bbfb8d7f9cb343a", + "system": "atari5200", + "description": "atari800", + "required": "required" + }, + "ATARIOSB.ROM": { + "md5": [ + "4177f386a3bac989a981d3fe3388cb6c", + "a3e8d617c95d08031fe1b20d541434b2" + ], + "system": "atari5200", + "description": "BIOS for Atari 400/800 NTSC ", + "required": "required" + }, + "tos.img": { + "md5": "c1c57ce48e8ee4135885cee9e63a68a2", + "system": "atarist", + "description": "TOS Boot Image", + "required": "required" + }, + "lynxboot.img": { + "md5": "fcd403db69f54290b51035d82f835e7b", + "system": "atarilynx", + "description": "Atari Lynx Boot Image", + "required": "required" + }, + "o2rom.bin": { + "md5": "562d5ebf9e030a40d6fabfc2f33139fd", + "system": [ + "odyssey2", + "videopac" + ], + "description": "Odyssey2 BIOS - G7000 model", + "required": "required" + }, + "c52.bin": { + "md5": "f1071cdb0b6b10dde94d3bc8a6146387", + "system": [ + "odyssey2", + "videopac" + ], + "description": "Videopac+ French BIOS - G7000 model", + "required": "required" + }, + "g7400.bin": { + "md5": "c500ff71236068e0dc0d0603d265ae76", + "system": [ + "odyssey2", + "videopac" + ], + "description": "Videopac+ European BIOS - G7400 model", + "required": "required" + }, + "jopac.bin": { + "md5": "279008e4a0db2dc5f1c048853b033828", + "system": [ + "odyssey2", + "videopac" + ], + "description": "Videopac+ French BIOS - G7400 model", + "required": "required" + }, + "exec.bin": { + "md5": "62e761035cb657903761800f4437b8af", + "system": "intellivision", + "description": "Executive ROM", + "required": "required" + }, + "grom.bin": { + "md5": "0cd5946c6473e42e8e4c2137785e427f", + "system": "intellivision", + "description": "Graphics ROM", + "required": "required" + }, + "MSX.ROM": { + "md5": [ + "364a1a579fe5cb8dba54519bcfcdac0d", + "aa95aea2563cd5ec0a0919b44cc17d47" + ], + "system": "msx", + "description": "MSX BIOS", + "required": "required" + }, + "MSX2.ROM": { + "md5": "ec3a01c91f24fbddcbcab0ad301bc9ef", + "system": "msx", + "description": "MSX2 BIOS", + "required": "required" + }, + "MSX2EXT.ROM": { + "md5": "2183c2aff17cf4297bdb496de78c2e8a", + "system": "msx", + "description": "MSX2 ExtROM", + "required": "required" + }, + "MSX2P.ROM": { + "md5": [ + "847cc025ffae665487940ff2639540e5", + "6d8c0ca64e726c82a4b726e9b01cdf1e" + ], + "system": "msx", + "description": "MSX2+ BIOS", + "required": "required" + }, + "MSX2PEXT.ROM": { + "md5": "7c8243c71d8f143b2531f01afa6a05dc", + "system": "msx", + "description": "MSX2+ ExtROM", + "required": "required" + }, + "DISK.ROM": { + "md5": "80dcd1ad1a4cf65d64b7ba10504e8190", + "system": "msx", + "description": "MSX DiskROM/BDOS", + "required": "required" + }, + "FMPAC.ROM": { + "md5": "6f69cc8b5ed761b03afd78000dfb0e19", + "system": "msx", + "description": "MSX FMPAC BIOS", + "required": "required" + }, + "MSXDOS2.ROM": { + "md5": "6418d091cd6907bbcf940324339e43bb", + "system": "msx", + "description": "MSX-DOS 2", + "required": "required" + }, + "PAINTER.ROM": { + "md5": "403cdea1cbd2bb24fae506941f8f655e", + "system": "msx", + "description": "MSX Yamaha Painter", + "required": "required" + }, + "KANJI.ROM": { + "md5": "febe8782b466d7c3b16de6d104826b34", + "system": "msx", + "description": "Kanji Font", + "required": "required" + }, + "mcpx_1.0.bin": { + "md5": "d49c52a4102f6df7bcf8d0617ac475ed", + "system": "xbox", + "description": "Used by XEMU emulator" + }, + "Complex.bin": { + "system": "xbox", + "description": "Used by XEMU emulator" + }, + "Complex_4627v1.03.bin": { + "system": "xbox", + "description": "Used by XEMU emulator" + }, + "Complex_4627.bin": { + "system": "xbox", + "description": "Used by XEMU emulator" + }, + "syscard3.pce": { + "md5": "38179df8f4ac870017db21ebcbf53114", + "system": [ + "pcengine", + "pcenginecd" + ], + "description": "Super CD-ROM2 System V3.xx", + "required": "required" + }, + "syscard2.pce": { + "md5": "3cdd6614a918616bfc41c862e889dd79", + "system": [ + "pcengine", + "pcenginecd" + ], + "description": "CD-ROM System V2.xx" + }, + "syscard1.pce": { + "md5": "2b7ccb3d86baa18f6402c176f3065082", + "system": [ + "pcengine", + "pcenginecd" + ], + "description": "CD-ROM System V1.xx" + }, + "gexpress.pce": { + "md5": "6d2cb14fc3e1f65ceb135633d1694122", + "system": [ + "pcengine", + "pcenginecd" + ], + "description": "Game Express CD Card" + }, + "font.bmp": { + "md5": "7da1e5b7c482d4108d22a5b09631d967", + "system": "pc98", + "description": "Needed to display text", + "required": "required" + }, + "FONT.ROM": { + "md5": "2af6179d7de4893ea0b705c00e9a98d6", + "system": "pc98", + "description": "Alternative font file", + "required": "Required if normal font file is missing" + }, + "itf.rom": { + "md5": "72ea51443070f0e9212bfc9b793ee28e", + "system": "pc98", + "description": "NEC PC-9800 BIOS", + "required": "required" + }, + "sound.rom": { + "md5": "524473c1a5a03b17e21d86a0408ff827", + "system": "pc98", + "description": "NEC PC-9800 BIOS", + "required": "required" + }, + "bios9821.rom": { + "system": "pc98", + "description": "Optional BIOS file" + }, + "d8000.rom": { + "system": "pc98", + "description": "Optional BIOS file" + }, + "2608_BD.WAV": { + "md5": "d94546e70f17fd899be8df3544ab6cbb", + "system": "pc98", + "description": "YM2608 RYTHM sample" + }, + "2608_SD.WAV": { + "md5": "d71004351c8bbfdad53b18222c061d49", + "system": "pc98", + "description": "YM2608 RYTHM sample" + }, + "2608_TOP.WAV": { + "md5": "593cff6597ab9380d822b8f824fd2c28", + "system": "pc98", + "description": "YM2608 RYTHM sample" + }, + "2608_HH.WAV": { + "md5": "08c54a0c1f774a5538a848a6665a34b4", + "system": "pc98", + "description": "YM2608 RYTHM sample" + }, + "2608_TOM.WAV": { + "md5": "96a4ead13f364734f79b0c58af2f0e1f", + "system": "pc98", + "description": "YM2608 RYTHM sample" + }, + "2608_RIM.WAV": { + "md5": "465ea0768b27da404aec45dfc501404b", + "system": "pc98", + "description": "YM2608 RYTHM sample" + }, + "n88.rom": { + "md5": "4f984e04a99d56c4cfe36115415d6eb8", + "system": "pc88", + "description": "BIOS File", + "required": "required" + }, + "n88n.rom": { + "md5": "2ff07b8769367321128e03924af668a0", + "system": "pc88", + "description": "Required for PC-8000 series emulation. (N BASIC mode)" + }, + "disk.rom": { + "md5": "793f86784e5608352a5d7f03f03e0858", + "system": "pc88", + "description": "Required for loading disk images" + }, + "n88knj1.rom": { + "md5": "d81c6d5d7ad1a4bbbd6ae22a01257603", + "system": "pc88", + "description": "Required for viewing kanji" + }, + "n88_0.rom": { + "md5": "d675a2ca186c6efcd6277b835de4c7e5", + "system": "pc88", + "description": "Required for viewing kanji" + }, + "n88_1.rom": { + "md5": "e844534dfe5744b381444dbe61ef1b66", + "system": "pc88", + "description": "Optional BIOS file" + }, + "n88_2.rom": { + "md5": "6548fa45061274dee1ea8ae1e9e93910", + "system": "pc88", + "description": "Optional BIOS file" + }, + "n88_3.rom": { + "md5": "fc4b76a402ba501e6ba6de4b3e8b4273", + "system": "pc88", + "description": "Optional BIOS file" + }, + "neocd_f.rom": { + "md5": "8834880c33164ccbe6476b559f3e37de", + "system": [ + "neogeocd", + "neogeocdjp" + ], + "description": "Front Loader BIOS", + "required": "at least one for this system" + }, + "neocd_sf.rom": { + "md5": "043d76d5f0ef836500700c34faef774d", + "system": [ + "neogeocd", + "neogeocdjp" + ], + "description": "Front Loader BIOS (SMKDAN 0.7b DEC 2010)", + "required": "at least one for this system" + }, + "neocd_t.rom": { + "md5": "de3cf45d227ad44645b22aa83b49f450", + "system": [ + "neogeocd", + "neogeocdjp" + ], + "description": "Top Loader BIOS", + "required": "at least one for this system" + }, + "neocd_st.rom": { + "md5": "f6325a33c6d63ea4b9162a3fa8c32727", + "system": [ + "neogeocd", + "neogeocdjp" + ], + "description": "Top Loader BIOS (SMKDAN 0.7b DEC 2010)", + "required": "at least one for this system" + }, + "neocd_z.rom": { + "md5": "11526d58d4c524daef7d5d677dc6b004", + "system": [ + "neogeocd", + "neogeocdjp" + ], + "description": "CDZ BIOS", + "required": "at least one for this system" + }, + "neocd_sz.rom": { + "md5": "971ee8a36fb72da57aed01758f0a37f5", + "system": [ + "neogeocd", + "neogeocdjp" + ], + "description": "CDZ BIOS (SMKDAN 0.7b DEC 2010)", + "required": "at least one for this system" + }, + "front-sp1.bin": { + "md5": "5c2366f25ff92d71788468ca492ebeca", + "system": [ + "neogeocd", + "neogeocdjp" + ], + "description": "Front Loader BIOS (MAME)", + "required": "at least one for this system" + }, + "top-sp1.bin": { + "md5": "122aee210324c72e8a11116e6ef9c0d0", + "system": [ + "neogeocd", + "neogeocdjp" + ], + "description": "Top Loader BIOS (MAME)", + "required": "at least one for this system" + }, + "neocd.bin": { + "md5": "f39572af7584cb5b3f70ae8cc848aba2", + "system": [ + "neogeocd", + "neogeocdjp" + ], + "description": "CDZ BIOS (MAME)", + "required": "at least one for this system" + }, + "uni-bioscd.rom": { + "md5": "08ca8b2dba6662e8024f9e789711c6fc", + "system": [ + "neogeocd", + "neogeocdjp" + ], + "description": "Universe BIOS CD 3.3" + }, + "gb_bios.bin": { + "md5": "32fbbd84168d3482956eb3c5051637f5", + "system": "gb", + "description": "Optional BIOS file (used to display the Nintendo logo at boot)" + }, + "gbc_bios.bin": { + "md5": "dbfce9db9deaa2567f6a84fde55f9680", + "system": "gbc", + "description": "Optional BIOS file (used to display the Nintendo logo at boot)" + }, + "gba_bios.bin": { + "md5": "a860e8c0b6d573d191e4ec7db1b1e4f6", + "system": "gba", + "description": "Optional BIOS file (used to display the Nintendo logo at boot)" + }, + "aes_keys.txt": { + "system": "n3ds", + "description": "Decryption keys used by Citra emulator" + }, + "bios7.bin": { + "md5": "df692a80a5b1bc90728bc3dfc76cd948", + "system": "nds", + "description": "Nintendo DS arm7 bios (Required only by MelonDS Standalone)" + }, + "bios9.bin": { + "md5": "a392174eb3e572fed6447e956bde4b25", + "system": "nds", + "description": "Nintendo DS arm9 bios (Required only by MelonDS Standalone)" + }, + "firmware.bin": { + "md5": "e45033d9b0fa6b0de071292bba7c9d13", + "system": "nds", + "description": "Nintendo DS firmware (Required only by MelonDS Standalone)" + }, + "biosdsi7.bin": { + "sha256": "2946281e730e71f7cafdb125f5cb60fed944ca5d610ee1e082c441b602b5f4e2", + "system": "nds", + "description": "Nintendo DSi arm7 bios (Required for DSi games)", + "required": "required" + }, + "biosdsi9.bin": { + "sha256": "47538922a8e8a8e79b922ff1203863ef5c40d9c54656a8d2c89c56ece52029ce", + "system": "nds", + "description": "Nintendo DSi arm9 bios (Required for DSi games)", + "required": "required" + }, + "dsifirmware.bin": { + "sha256": "11a150e3729bdde3ae8f5e7fc8be67d8bfbc548a1d2e523da58aa826ca0ffa99", + "system": "nds", + "description": "Nintendo DSi firmware (Required for DSi games)", + "required": "required" + }, + "disksys.rom": { + "md5": "ca30b50f880eb660a320674ed365ef7a", + "system": [ + "nes", + "sfc" + ], + "description": "Family Computer Disk System BIOS - Required for Family Computer Disk System emulation" + }, + "bios.min": { + "md5": "1e4fb124a3a886865acb574f388c803d", + "system": "pokemini", + "description": "Pokémon Mini BIOS" + }, + "prod.keys": { + "system": "switch", + "description": "A file required for Switch emulation", + "required": "required", + "paths": "bios/switch/keys" + }, + "title.keys": { + "system": "switch", + "description": "A file required for Switch emulation", + "required": "required", + "paths": "bios/switch/keys" + }, + "pico8": { + "system": "PICO-8", + "description": "The PICO-8 executable", + "required": "required" + }, + "pico8.dat": { + "system": "PICO-8", + "description": "A PICO-8 system file", + "required": "required" + }, + "pico8_dyn": { + "system": "PICO-8", + "description": "A PICO-8 system file", + "required": "required" + }, + "bios_CD_E.bin": { + "md5": "e66fa1dc5820d254611fdcdba0662372", + "system": "segacd", + "description": "MegaCD EU BIOS", + "required": "at least one for this system" + }, + "bios_CD_U.bin": { + "md5": "2efd74e3232ff260e371b99f84024f7f", + "system": "segacd", + "description": "SegaCD US BIOS", + "required": "at least one for this system" + }, + "bios_CD_J.bin": { + "md5": "278a9397d192149e84e820ac621a8edd", + "system": "segacd", + "description": "MegaCD JP BIOS", + "required": "at least one for this system" + }, + "dc_boot.bin": { + "md5": "e10c53c2f8b90bab96ead2d368858623", + "system": "dreamcast", + "description": "Dreamcast BIOS", + "paths": "bios/dc", + "required": "required" + }, + "naomi.zip": { + "md5": [ + "0ea6d3650ce4a7608a589e5df21a1f2f", + "526eda1e2a7920c92c88178789d71d84" + ], + "system": "dreamcast", + "description": "Naomi BIOS", + "paths": "bios/dc" + }, + "naomi2.zip": { + "md5": "9b85e0de6ef359e5006c9b79a5a266b0", + "system": "dreamcast", + "description": "Naomi BIOS", + "paths": "bios/dc" + }, + "naomi_boot.bin": { + "md5": [ + "96cb91c4a0bedd86e5a6965cfe6c0148", + "3bffafac42a7767d8dcecf771f5552ba" + ], + "system": [ + "dreamcast", + "arcade" + ], + "description": "Naomi BIOS", + "paths": "bios/dc" + }, + "hod2bios.zip": { + "md5": [ + "629bb0552463ba116ccf23d9a468a9f0", + "f4011d3116500354edf7302a90402711" + ], + "system": "dreamcast", + "description": "Naomi The House of the Dead 2 BIOS", + "paths": "bios/dc" + }, + "f355dlx.zip": { + "md5": [ + "4b5bb177cbd760477598f85531dbe7fd", + "1028615bcac4c31634a3364ce5c04044" + ], + "system": "dreamcast", + "description": "Naomi Ferrari F355 Challenge Deluxe BIOS", + "paths": "bios/dc" + }, + "f355bios.zip": { + "md5": [ + "547f3d12aed389058ca06148f1cca0ed", + "882f2c1cf8ec030955c48fe6aa6929ea" + ], + "system": [ + "dreamcast", + "arcade" + ], + "description": "Naomi Ferrari F355 Challenge Twin/Deluxe BIOS", + "paths": "bios/dc" + }, + "airlbios.zip": { + "md5": [ + "09ef4b8dea6cd8db2de1c13d510a6a87", + "7a11bfe0cc72886d032e386db68f890c" + ], + "system": [ + "dreamcast", + "arcade" + ], + "description": "Naomi Airline Pilots Deluxe BIOS", + "paths": "bios/dc" + }, + "awbios.zip": { + "md5": [ + "b2f122e091da223beb824efafc3d6a36", + "85254fbe320ca82a768ec2c26bb08def" + ], + "system": [ + "dreamcast", + "arcade" + ], + "description": "Naomi Atomiswave BIOS", + "paths": "bios/dc" + }, + "bios.sms": { + "md5": "840481177270d5642a14ca71ee72844c", + "system": "mastersystem", + "description": "SEGA Master System BIOS" + }, + "bios.gg": { + "md5": "672e104c3be3a238301aceffc3b23fd6", + "system": "gamegear", + "description": "SEGA Game Gear BIOS" + }, + "BIOS.col": { + "md5": "2c66f5911e5b42b8ebe113403548eee7", + "system": "colecovision", + "description": "Colecovision BIOS" + }, + "colecovision.rom": { + "md5": "2c66f5911e5b42b8ebe113403548eee7", + "system": "colecovision", + "description": "Colecovision BIOS" + }, + "sega_101.bin": { + "md5": "85ec9ca47d8f6807718151cbcca8b964", + "system": [ + "saturn", + "saturnjp" + ], + "description": "Saturn JP BIOS", + "required": "at least one for this system" + }, + "mpr-17933.bin": { + "md5": "3240872c70984b6cbfda1586cab68dbe", + "system": [ + "saturn", + "saturnjp" + ], + "description": "Saturn US.mdEU - US/EU BIOS", + "required": "required" + }, + "mpr-18811-mx.ic1": { + "md5": "255113ba943c92a54facd25a10fd780c", + "system": [ + "saturn", + "saturnjp" + ], + "description": "The King of Fighters 95 ROM Cartridge (Required for this game)" + }, + "mpr-19367-mx.ic1": { + "md5": "1cd19988d1d72a3e7caa0b73234c96b4", + "system": [ + "saturn", + "saturnjp" + ], + "description": "Ultraman: Hikari no Kyojin Densetsu ROM Cartridge (Required for this game)" + }, + "iplrom.dat": { + "md5": "7fd4caabac1d9169e289f0f7bbf71d8e", + "system": "x68000", + "description": "X68000 BIOS", + "required": "required" + }, + "cgrom.dat": { + "md5": "cb0a5cfcf7247a7eab74bb2716260269", + "system": "x68000", + "description": "Font file", + "required": "required" + }, + "iplrom30.dat": { + "md5": "f373003710ab4322642f527f567e020a", + "system": "x68000", + "description": "X68000 BIOS 2" + }, + "iplromcdc_flash.bino.dat": { + "md5": "cc78d4f4900f622bd6de1aed7f52592f", + "system": "x68000", + "description": "X68000 BIOS 3" + }, + "iplromxv.dat": { + "md5": "0617321daa182c3f3d6f41fd02fb3275", + "system": "x68000", + "description": "X68000 BIOS 4" + }, + "psxonpsp660.bin": { + "md5": "c53ca5908936d412331790f4426c6c33", + "system": "psx", + "description": "PS1 BIOS from PSP", + "required": "at least one for this system" + }, + "scph5500.bin": { + "md5": "8dd7d5296a650fac7319bce665a6a53c", + "system": "psx", + "description": "PS1 JP BIOS", + "required": "at least one for this system" + }, + "scph5501.bin": { + "md5": "490f666e1afb15b7362b406ed1cea246", + "system": "psx", + "description": "PS1 US BIOS", + "required": "at least one for this system" + }, + "scph5502.bin": { + "md5": "32736f17079d0b2b7024407c39bd3050", + "system": "psx", + "description": "PS1 EU BIOS", + "required": "at least one for this system" + }, + "scph7001.bin": { + "md5": "1e68c231d0896b7eadcad1d7d8e76129", + "system": "psx", + "description": "PS1 BIOS", + "required": "at least one for this system" + }, + "scph7002.bin": { + "md5": "b9d9a0286c33dc6b7237bb13cd46fdee", + "system": "psx", + "description": "PS1 BIOS", + "required": "at least one for this system" + }, + "scph7003.bin": { + "md5": "490f666e1afb15b7362b406ed1cea246", + "system": "psx", + "description": "PS1 BIOS", + "required": "at least one for this system" + }, + "scph7502.bin": { + "md5": "b9d9a0286c33dc6b7237bb13cd46fdee", + "system": "psx", + "description": "PS1 BIOS", + "required": "at least one for this system" + }, + "scph9002(7502).bin": { + "md5": "b9d9a0286c33dc6b7237bb13cd46fdee", + "system": "psx", + "description": "PS1 BIOS", + "required": "at least one for this system" + }, + "ps1_rom.bin": { + "md5": "81bbe60ba7a3d1cea1d48c14cbcc647b", + "system": "psx", + "description": "PS1 BIOS", + "required": "at least one for this system" + }, + "ps2-0200a-20040614.bin": { + "md5": "d333558cc14561c1fdc334c75d5f37b7", + "system": "ps2", + "description": "PS2 US BIOS", + "required": "at least one for this system" + }, + "ps2-0200e-20040614.bin": { + "md5": "dc752f160044f2ed5fc1f4964db2a095", + "system": "ps2", + "description": "PS2 EU BIOS", + "required": "at least one for this system" + }, + "ps2-0200j-20040614.bin": { + "md5": "0eee5d1c779aa50e94edd168b4ebf42e", + "system": "ps2", + "description": "PS2 JP BIOS", + "required": "at least one for this system" + }, + "128p-0.rom": { + "md5": "a249565f03b98d004ee7f019570069cd", + "system": "zxspectrum", + "description": "Pentagon 128K/512K/1024 ROM", + "required": "required" + }, + "128p-1.rom": { + "md5": "6e09e5d3c4aef166601669feaaadc01c", + "system": "zxspectrum", + "description": "Pentagon 128K/512K/1024 ROM", + "required": "required" + }, + "trdos.rom": { + "md5": "0da70a5d2a0e733398e005b96b7e4ba6", + "system": "zxspectrum", + "description": "Pentagon 128K/512K/1024 ROM", + "required": "required" + }, + "gluck.rom": { + "md5": "d5869034604dbfd2c1d54170e874fd0a", + "system": "zxspectrum", + "description": "Pentagon 512K/1024 ROM", + "required": "required" + }, + "256s-0.rom": { + "md5": "b9fda5b6a747ff037365b0e2d8c4379a", + "system": "zxspectrum", + "description": "Scorpion 256K ROM", + "required": "required" + }, + "256s-1.rom": { + "md5": "643861ad34831b255bf2eb64e8b6ecb8", + "system": "zxspectrum", + "description": "Scorpion 256K ROM", + "required": "required" + }, + "256s-2.rom": { + "md5": "d8ad507b1c915a9acfe0d73957082926", + "system": "zxspectrum", + "description": "Scorpion 256K ROM", + "required": "required" + }, + "256s-3.rom": { + "md5": "ce0723f9bc02f4948c15d3b3230ae831", + "system": "zxspectrum", + "description": "Scorpion 256K ROM", + "required": "required" + }, + "7800 BIOS (E).rom": { + "md5": "397bb566584be7b9764e7a68974c4263", + "system": "atari7800", + "description": "Atari 7800 Europe BIOS" + }, + "7800 BIOS (U).rom": { + "md5": "0763f1ffb006ddbe32e52d497ee848ae", + "system": "atari7800", + "description": "Atari 7800 US BIOS" + }, + "kick34005.A500": { + "md5": "82a21c1890cae844b3df741f2762d48d", + "system": "amiga", + "description": "Amiga BIOS" + }, + "kick40063.A600": { + "md5": "e40a5dfb3d017ba8779faba30cbd1c8e", + "system": "amiga", + "description": "Amiga BIOS" + }, + "kick40068.A1200": { + "md5": "646773759326fbac3b2311fd8c8793ee", + "system": "amiga", + "description": "Amiga BIOS" + }, + "sl31253.bin": { + "md5": "ac9804d4c0e9d07e33472e3726ed15c3", + "system": "channelf", + "description": "Fairchild Channel F BIOS" + }, + "sl31254.bin": { + "md5": "da98f4bb3242ab80d76629021bb27585", + "system": "channelf", + "description": "Fairchild Channel F BIOS" + }, + "sl90025.bin": { + "md5": "95d339631d867c8f1d15a5f2ec26069d", + "system": "channelf", + "description": "Fairchild Channel F BIOS" + }, + "prboom.wad": { + "md5": "72ae1b47820fcc93cc0df9c428d0face", + "system": "doom", + "description": "PrBoom RetroArch Core" + }, + "freej2me-lr.jar": { + "md5": "ccd92e7156ce2f0ce14c88ffb68a16eb", + "system": "j2me", + "description": "FreeJ2ME BIOS", + "required": "required" + }, + "freej2me-sdl.jar": { + "md5": "4da74084fc1b1bd3d776ed8d3ee648de", + "system": "j2me", + "description": "FreeJ2ME BIOS", + "required": "required" + }, + "freej2me.jar": { + "md5": "29a92d0867da2917275b7c6c805d256f", + "system": "j2me", + "description": "FreeJ2ME BIOS", + "required": "required" + }, + "MacII.ROM": { + "md5": "66223be1497460f1e60885eeb35e03cc", + "system": "mac2", + "description": "Macintosh II BIOS", + "required": "required" + }, + "CARTS.SHA": { + "md5": "74b0f217fa0e2b8bb5a2f8e2ecc69da3", + "system": "msx", + "description": "MSX Carts BIOS" + }, + "FMPAC16.ROM": { + "md5": "74b0f217fa0e2b8bb5a2f8e2ecc69da3", + "system": "msx", + "description": "MSX FMPAC 16 BIOS", + "required": "required" + }, + "RS232.ROM": { + "md5": "279efd1eae0d358eecd4edc7d9adedf3", + "system": "msx", + "description": "MSX RS232 BIOS" + }, + "CYRILLIC.FNT": { + "md5": "85b38e4128bbc300e675f55b278683a8", + "system": "msx", + "description": "MSX Cyrillic Font" + }, + "DEFAULT.FNT": { + "md5": "85b38e4128bbc300e675f55b278683a8", + "system": "msx", + "description": "MSX Default Font" + }, + "INTERNAT.FNT": { + "md5": "ac4f4a90c1b1887db48ded39c9d9c847", + "system": "msx", + "description": "MSX Internal Font" + }, + "ITALIC.FNT": { + "md5": "c83e50e9f33b8dd893c414691822740d", + "system": "msx", + "description": "MSX Italic Font" + }, + "JAPANESE.FNT": { + "md5": "aa28f0703b951a6be8df3e28e20d263d", + "system": "msx", + "description": "MSX Japanese Font" + }, + "KOREAN.FNT": { + "md5": "73291e76638a2f5aa2eceb843df468f4", + "system": "msx", + "description": "MSX Korean Font" + }, + "syscard2u.pce": { + "md5": "94279f315e8b52904f65ab3108542afe", + "system": "turbografx16", + "description": "TurboGrafx-16 BIOS" + }, + "bios.rom": { + "md5": [ + "cd237e16e7e77c06bb58540e9e9fca68", + "e246140dec5124c5e404869a84caefce" + ], + "system": "pc98", + "description": "NEC PC-9800 BIOS", + "required": "required" + }, + "font.rom": { + "md5": "38d32748ae49d1815b0614970849fd40", + "system": "pc98", + "description": "NEC PC-9800 BIOS", + "required": "required" + }, + "fx-scsi.rom": { + "md5": "430e9745f9235c515bc8e652d6ca3004", + "system": "pcfx", + "description": "NEC PC-FX BIOS", + "required": "required" + }, + "pcfx.rom": { + "md5": "08e36edbea28a017f79f8d4f7ff9b6d7", + "system": "pcfx", + "description": "NEC PC-FX BIOS", + "required": "required" + }, + "pcfxbios.bin": { + "md5": "08e36edbea28a017f79f8d4f7ff9b6d7", + "system": "pcfx", + "description": "NEC PC-FX BIOS", + "required": "required" + }, + "pcfxga.rom": { + "md5": "5885bc9a64bf80d4530b9b9b978ff587", + "system": "pcfx", + "description": "NEC PC-FX BIOS", + "required": "required" + }, + "pcfxv101.bin": { + "md5": "e2fb7c7220e3a7838c2dd7e401a7f3d8", + "system": "pcfx", + "description": "NEC PC-FX BIOS", + "required": "required" + }, + "gc-dvd-20010608.bin": { + "md5": "561532ad496f644897952d2cef5bb431", + "system": "gc", + "description": "Gamecube DVD BIOS" + }, + "gc-dvd-20010831.bin": { + "md5": "b953eb1a8fc9922b3f7051c1cdc451f1", + "system": "gc", + "description": "Gamecube DVD BIOS" + }, + "gc-dvd-20020402.bin": { + "md5": "413154dd0e2c824c9b18b807fd03ec4e", + "system": "gc", + "description": "Gamecube DVD BIOS" + }, + "gc-dvd-20020823.bin": { + "md5": "c03f6bbaf644eb9b3ee261dbe199eb42", + "system": "gc", + "description": "Gamecube DVD BIOS" + }, + "gc-ntsc-10.bin": { + "md5": "fc924a7c879b661abc37cec4f018fdf3", + "system": "gc", + "description": "Gamecube NTSC BIOS" + }, + "gc-ntsc-11.bin": { + "md5": "019e39822a9ca3029124f74dd4d55ac4", + "system": "gc", + "description": "Gamecube NTSC BIOS" + }, + "gc-ntsc-12.bin": { + "md5": "b17148254a5799684c7d783206504926", + "system": "gc", + "description": "Gamecube NTSC BIOS" + }, + "gc-pal-10.bin": { + "md5": "0cdda509e2da83c85bfe423dd87346cc", + "system": "gc", + "description": "Gamecube PAL BIOS" + }, + "gc-pal-11.bin": { + "md5": "339848a0b7c2124cf155276c1e79cbd0", + "system": "gc", + "description": "Gamecube PAL BIOS" + }, + "gc-pal-12.bin": { + "md5": "db92574caab77a7ec99d4605fd6f2450", + "system": "gc", + "description": "Gamecube PAL BIOS" + }, + "64DD_IPL.bin": { + "md5": "8d3d9f294b6e174bc7b1d2fd1c727530", + "system": "n64dd", + "description": "Nintendo 64 64DD BIOS" + }, + "NstDatabase.xml": { + "md5": "7bfe8c0540ed4bd6a0f1e2a0f0118ced", + "system": "nes", + "description": "NES Nestopia NstDatabase" + }, + "BS-X.bin": { + "md5": "fed4d8242cfbed61343d53d48432aced", + "system": [ + "snes", + "satellaview" + ], + "description": "Satellaview BIOS" + }, + "BS-X (En).bin": { + "md5": "33b62505da6ca4525e3839db4e1a7bca", + "system": [ + "snes", + "satellaview" + ], + "description": "Satellaview EN BIOS" + }, + "BS-X (En) (DRM-Free).bin": { + "md5": "4ed9648505ab33a4daec93707b16caba", + "system": [ + "snes", + "satellaview" + ], + "description": "Satellaview EN DRM-Free BIOS" + }, + "STBIOS.bin": { + "md5": "d3a44ba7d42a74d3ac58cb9c14c6a5ca", + "system": [ + "snes", + "sufami" + ], + "description": "SuFami Turbo BIOS" + }, + "SGB1.sfc": { + "md5": "b15ddb15721c657d82c5bab6db982ee9", + "system": [ + "snes", + "supergb" + ], + "description": "Super Gameboy BIOS" + }, + "SGB2.sfc": { + "md5": "8ecd73eb4edf7ed7e81aef1be80031d5", + "system": [ + "snes", + "supergb" + ], + "description": "Super Gameboy BIOS" + }, + "sgb1.boot.rom": { + "md5": "d574d4f9c12f305074798f54c091a8b4", + "system": [ + "snes", + "supergb" + ], + "description": "Super Gameboy BIOS" + }, + "sgb1.program.rom": { + "md5": "b15ddb15721c657d82c5bab6db982ee9", + "system": [ + "snes", + "supergb" + ], + "description": "Super Gameboy BIOS" + }, + "sgb2.boot.rom": { + "md5": "e0430bca9925fb9882148fd2dc2418c1", + "system": [ + "snes", + "supergb" + ], + "description": "Super Gameboy BIOS" + }, + "sgb_bios.bin": { + "md5": "e0430bca9925fb9882148fd2dc2418c1", + "system": [ + "snes", + "supergb" + ], + "description": "Super Gameboy BIOS" + }, + "cx4.data.rom": { + "md5": "037ac4296b6b6a5c47c440188d3c72e3", + "system": "snes", + "description": "SNES CX4 BIOS" + }, + "dsp1.data.rom": { + "md5": "3d81b45fa0c2aa8b852dfb1ece7c0971", + "system": "snes", + "description": "SNES dsp1 BIOS" + }, + "dsp1b.data.rom": { + "md5": "1e3f568634a7d8284020dddc0ae905bc", + "system": "snes", + "description": "SNES DSP1 BIOS" + }, + "dsp1b.program.rom": { + "md5": "d10f446888e097cbf500f3f663cf4f6d", + "system": "snes", + "description": "SNES DSP1 BIOS" + }, + "dsp2.data.rom": { + "md5": "e9417e29223b139c3c4b635a2a3b8744", + "system": "snes", + "description": "SNES DSP2 BIOS" + }, + "dsp2.program.rom": { + "md5": "aa6e5922a3ed5ded54f24247c11143c5", + "system": "snes", + "description": "SNES DSP2 BIOS" + }, + "dsp3.data.rom": { + "md5": "0a81210c0a940b997dd9843281008ee6", + "system": "snes", + "description": "SNES DSP3 BIOS" + }, + "dsp3.program.rom": { + "md5": "d99ca4562818d49cee1f242705bba6f8", + "system": "snes", + "description": "SNES DSP3 BIOS" + }, + "dsp4.data.rom": { + "md5": "ee4990879eb68e3cbca239c5bc20303d", + "system": "snes", + "description": "SNES DSP4 BIOS" + }, + "dsp4.program.rom": { + "md5": "a151023b948b90ffc23a5b594bb6fef2", + "system": "snes", + "description": "SNES DSP4 BIOS" + }, + "st010.data.rom": { + "md5": "254d70762b6f59f99c27c395aba7d07d", + "system": "snes", + "description": "SNES ST010 BIOS" + }, + "st010.program.rom": { + "md5": "1d70019179a59a566a0bb5d3f2845544", + "system": "snes", + "description": "SNES ST010 BIOS" + }, + "st011.data.rom": { + "md5": "10bd3f4aa949737ab9836512c35bcc29", + "system": "snes", + "description": "SNES ST011 BIOS" + }, + "st011.program.rom": { + "md5": "95222ebf1c0c2990bcf25db43743f032", + "system": "snes", + "description": "SNES ST011 BIOS" + }, + "snes:st018.data.rom": { + "md5": "49c898b60d0f15e90d0ba780dd12f366", + "system": "snes", + "description": "SNES ST018 BIOS" + }, + "st018.program.rom": { + "md5": "dda40ccd57390c96e49d30a041f9a9e7", + "system": "snes", + "description": "SNES ST018 BIOS" + }, + "dc_flash.bin": { + "md5": "0a93f7940c455905bea6e392dfde92a4", + "system": "dreamcast", + "description": "Dreamcast BIOS", + "required": "required", + "paths": "bios/dc" + }, + "flash.bin": { + "md5": "0a93f7940c455905bea6e392dfde92a4", + "system": "dreamcast", + "description": "Dreamcast BIOS", + "required": "required", + "paths": "bios/dc" + }, + "bios_J.sms": { + "md5": "24a519c53f67b00640d0048ef7089105", + "system": "sms", + "description": "SEGA Master System J BIOS" + }, + "areplay.bin": { + "md5": "a0028b3043f9d59ceeb03da5b073b30d", + "system": [ + "megadrive", + "genesis" + ], + "description": "SEGA Genesis / Mega Drive BIOS" + }, + "bios_MD.bin": { + "md5": "d3293ebaaa7f4eb2a6766b68a0fb4609", + "system": [ + "megadrive", + "genesis" + ], + "description": "SEGA Genesis / Mega Drive BIOS" + }, + "ggenie.bin": { + "md5": "e8af7fe115a75c849f6aab3701e7799b", + "system": [ + "megadrive", + "genesis" + ], + "description": "SEGA Genesis / Mega Drive BIOS" + }, + "rom.db": { + "md5": "ff4a3572475236e859e3e9ac5c87d1f1", + "system": [ + "megadrive", + "genesis" + ], + "description": "SEGA Genesis / Mega Drive BIOS" + }, + "sk.bin": { + "md5": "4ea493ea4e9f6c9ebfccbdb15110367e", + "system": [ + "megadrive", + "genesis" + ], + "description": "SEGA Genesis / Mega Drive BIOS" + }, + "sk2chip.bin": { + "md5": "b4e76e416b887f4e7413ba76fa735f16", + "system": [ + "megadrive", + "genesis" + ], + "description": "SEGA Genesis / Mega Drive BIOS" + }, + "hisaturn.bin": { + "md5": "3ea3202e2634cb47cb90f3a05c015010", + "system": [ + "saturn", + "saturnjp" + ], + "description": "SEGA Saturn BIOS" + }, + "mpr-18100.bin": { + "md5": "cb2cebc1b6e573b7c44523d037edcd45", + "system": [ + "saturn", + "saturnjp" + ], + "description": "SEGA Saturn BIOS" + }, + "saturn_bios.bin": { + "md5": "af5828fdff51384f99b3c4926be27762", + "system": [ + "saturn", + "saturnjp" + ], + "description": "SEGA Saturn BIOS", + "required": "required" + }, + "stvbios.zip": { + "md5": "53a094ad3a188f86de4e64624fe9b3ca", + "system": [ + "saturn", + "saturnjp" + ], + "description": "SEGA Saturn BIOS", + "required": "required" + }, + "sega1003.bin": { + "md5": "74570fed4d44b2682b560c8cd44b8b6a", + "system": [ + "saturn", + "saturnjp" + ], + "description": "SEGA Saturn BIOS", + "required": "required" + }, + "sega_100a.bin": { + "md5": "f273555d7d91e8a5a6bfd9bcf066331c", + "system": [ + "saturn", + "saturnjp" + ], + "description": "SEGA Saturn BIOS" + }, + "sega_100.bin": { + "md5": "af5828fdff51384f99b3c4926be27762", + "system": [ + "saturn", + "saturnjp" + ], + "description": "SEGA Saturn BIOS" + }, + "vsaturn.bin": { + "md5": "ac4e4b6522e200c0d23d371a8cecbfd3", + "system": [ + "saturn", + "saturnjp" + ], + "description": "SEGA Saturn BIOS" + }, + "iplrom.x1": { + "md5": "eeeea1cd29c6e0e8b094790ae969bfa7", + "system": "x1", + "description": "Sharp X1 BIOS", + "required": "required" + }, + "iplrom.x1t": { + "md5": "851e4a5936f17d13f8c39a980cf00d77", + "system": "x1", + "description": "Sharp X1 BIOS", + "required": "required" + }, + "128-0.rom": { + "md5": "b4d2692115a9f2924df92a3cbfb358fb", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "128-spanish-0.rom": { + "md5": "c1231a70b8129311216acb7479b031d5", + "system": "zxspectrum", + "description": "ZX Spectrum Spanish BIOS" + }, + "128-spanish-1.rom": { + "md5": "4f341936594cbcab75cfa62ce96e3682", + "system": "zxspectrum", + "description": "ZX Spectrum Spanish BIOS" + }, + "zxs:48.rom": { + "md5": "4c42a2f075212361c3117015b107ff68", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "disciple.rom": { + "md5": "78e61a2a02121873c1756b21fd1398b1", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "disk_plus3.szx": { + "md5": "e6db6b9f6ad15012851115a7bc4b31d8", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "zxs:if1-2.rom": { + "md5": "31b704ae925305e74f50699271fddd9a", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "if1-1.rom": { + "md5": "5c11c61a2dd2ca4bf39328d9ff42d289", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "plus2-0.rom": { + "md5": "4ed7af4636308b8a48d7a35e6c5b546b", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "plus2-1.rom": { + "md5": "b3db95931cc844efaeb82db9c171b9f3", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "plus3-0.rom": { + "md5": "3abdc20e72890a750dd3c745d286dfba", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "plus3-1.rom": { + "md5": "8361a1d9c8bcef89c0c39293776564ad", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "plus3-2.rom": { + "md5": "f36c5c2d1f2a682caadeaa6f947db0da", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "plus3-3.rom": { + "md5": "a148bcc575e51389e84fdf5d555c3196", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "plus3e-0.rom": { + "md5": "3abdc20e72890a750dd3c745d286dfba", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "plus3e-1.rom": { + "md5": "8361a1d9c8bcef89c0c39293776564ad", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "plus3e-2.rom": { + "md5": "f36c5c2d1f2a682caadeaa6f947db0da", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "plus3e-3.rom": { + "md5": "f36c5c2d1f2a682caadeaa6f947db0da", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "plusd.rom": { + "md5": "42e5de16fb5e50082bb954ec7ce45851", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "se-0.rom": { + "md5": "fb3f86eb1e5a695d9c50c124e7cfb875", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "se-1.rom": { + "md5": "88de4a3129086f34bb9ca559acc51e6c", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "speccyboot-1.4.rom": { + "md5": "c54aa8f374b0971f51546c29d5d1eba1", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "tape_128.sz": { + "md5": "8942b43b73ed4eb7f32bd1741709a4dc", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "tape_16.szx": { + "md5": "fec97eb9ea1b017cae84de78508feb4a", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "tape_2048.szx": { + "md5": "116f732bbae4e49d625aaf2f311474d0", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "tape_2068.szx": { + "md5": "0b0f267b95d556318bb652af2e8dc25c", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "tape_48.szx": { + "md5": "0b0f267b95d556318bb652af2e8dc25c", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "tape_pentagon.szx": { + "md5": "bd7698603bd9079d337cdedfb04942d9", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "tape_plus2.szx": { + "md5": "166d4aa1a5aa4fbd99cc963b4e7c19cc", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "tape_plus2a.szx": { + "md5": "445d4817d5557bb363a216fbd6eeaa84", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "tape_plus3.szx": { + "md5": "0dc8828ac1db2e0efa915ac55191e96f", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "tape_plus3e.szx": { + "md5": "bf07537f028bbcb3309464bd30da779c", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "tape_scorpion.szx": { + "md5": "c10e677d3deb5a445689d3a599880745", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "tape_se.szx": { + "md5": "2518f9334bef8c44804a4185085579b5", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "tape_ts2068.szx": { + "md5": "1d360c09d370bb52a9a44b30cc7c59e6", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "tc2048.rom": { + "md5": "9dd7ecf784a6c04265c073c236f5fadb", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "tc2068-0.rom": { + "md5": "55d462fccc6c536037404ef4ced08bec", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "tc2068-1.rom": { + "md5": "575d203c6e15e679fba0b73f854ec7a2", + "system": "zxspectrum", + "description": "ZX Spectrum BIOS" + }, + "000-lo.lo": { + "md5": "fc7599f3f871578fe9a0453662d1c966", + "system": [ + "neogeocd", + "neogeocdjp" + ], + "description": "NeoGeo CD BIOS" + }, + "scph1000.bin": { + "md5": "239665b1a3dade1b5a52c06338011044", + "system": "psx", + "description": "PS1 BIOS", + "required": "at least one for this system" + }, + "scph1001.bin": { + "md5": "924e392ed05558ffdb115408c263dccf", + "system": "psx", + "description": "PS1 BIOS", + "required": "at least one for this system" + }, + "scph1002.bin": { + "md5": "54847e693405ffeb0359c6287434cbef", + "system": "psx", + "description": "PS1 BIOS", + "required": "at least one for this system" + }, + "scph100.bin": { + "md5": "8abc1b549a4a80954addc48ef02c4521", + "system": "psx", + "description": "PS1 BIOS", + "required": "at least one for this system" + }, + "scph101.bin": { + "md5": "6e3735ff4c7dc899ee98981385f6f3d0", + "system": "psx", + "description": "PS1 BIOS", + "required": "at least one for this system" + }, + "scph102A.bin": { + "md5": "b10f5e0e3d9eb60e5159690680b1e774", + "system": "psx", + "description": "PS1 BIOS", + "required": "at least one for this system" + }, + "scph102B.bin": { + "md5": "de93caec13d1a141a40a79f5c86168d6", + "system": "psx", + "description": "PS1 BIOS", + "required": "at least one for this system" + }, + "scph102C.bin": { + "md5": "de93caec13d1a141a40a79f5c86168d6", + "system": "psx", + "description": "PS1 BIOS", + "required": "at least one for this system" + }, + "scph3000.bin": { + "md5": "849515939161e62f6b866f6853006780", + "system": "psx", + "description": "PS1 BIOS", + "required": "at least one for this system" + }, + "scph3500.bin": { + "md5": "cba733ceeff5aef5c32254f1d617fa62", + "system": "psx", + "description": "PS1 BIOS", + "required": "at least one for this system" + }, + "scph5000.bin": { + "md5": "eb201d2d98251a598af467d4347bb62f", + "system": "psx", + "description": "PS1 BIOS", + "required": "at least one for this system" + }, + "ppge_atlas.zim": { + "md5": "866855cc330b9b95cc69135fb7b41d38", + "system": "psp", + "description": "PSP Assets" + }, + "ecwolf.pk3": { + "md5": "c011b428819eea4a80b455c245a5a04d", + "system": "wolfenstein", + "description": "Wolfenstein PK3" + }, + "scummvm.zip": { + "md5": "a17e0e0150155400d8cced329563d9c8", + "system": "scummvm", + "description": "SCUMMVM" + }, + "cpc464.rom": { + "md5": "a17e0e0150155400d8cced329563d9c8", + "system": "amstradcpc", + "description": "AMSTRAD CPC BIOS" + }, + "cpc664.rom": { + "md5": "5a384a2310f472c7857888371c00ed66", + "system": "amstradcpc", + "description": "AMSTRAD CPC BIOS" + }, + "cpc6128.rom": { + "md5": "b96280dc6c95a48857b4b8eb931533ae", + "system": "amstradcpc", + "description": "AMSTRAD CPC BIOS" + }, + "cpc_amsdos.rom": { + "md5": "25629dfe870d097469c217b95fdc1c95", + "system": "amstradcpc", + "description": "AMSTRAD CPC BIOS" + }, + "hun.rom": { + "md5": "22167938f142c222f40992839aa21a06", + "system": "enterprise", + "description": "Enterprise - 64/128 BIOS" + }, + "brd.rom": { + "md5": "6af0402906944fd134004b85097c8524", + "system": "enterprise", + "description": "Enterprise - 64/128 BIOS" + }, + "exos20.rom": { + "md5": "5ad3baaad3b5156d6b60b34229a676fb", + "system": "enterprise", + "description": "Enterprise - 64/128 BIOS" + }, + "exos21.rom": { + "md5": "f36f24cbb87745fbd2714e4df881db09", + "system": "enterprise", + "description": "Enterprise - 64/128 BIOS" + }, + "zt19uk.rom": { + "md5": "228540b6be83ae2acd7569c8ff0f91d0", + "system": "enterprise", + "description": "Enterprise - 64/128 BIOS" + }, + "basic20.rom": { + "md5": "8e18edce4a7acb2c33cc0ab18f988482", + "system": "enterprise", + "description": "Enterprise - 64/128 BIOS" + }, + "basic21.rom": { + "md5": "e972fe42b398c9ff1d93ff014786aec6", + "system": "enterprise", + "description": "Enterprise - 64/128 BIOS" + }, + "exdos13.rom": { + "md5": "ddff70c014d1958dc75378b6c9aab6f8", + "system": "enterprise", + "description": "Enterprise - 64/128 BIOS" + }, + "epd19hft.rom": { + "md5": "12cfc9c7e48c8a16c2e09edbd926d467", + "system": "enterprise", + "description": "Enterprise - 64/128 BIOS" + }, + "zt18hfnt.rom": { + "md5": "3082dc488d32f30a612761b99074199b", + "system": "enterprise", + "description": "Enterprise - 64/128 BIOS" + }, + "epfileio.rom": { + "md5": "a68ebcbc73a4d2178d755b7755bf18fe", + "system": "enterprise", + "description": "Enterprise - 64/128 BIOS" + }, + "exos24uk.rom": { + "md5": "55af78f877a21ca45eb2df68a74fcc60", + "system": "enterprise", + "description": "Enterprise - 64/128 BIOS" + }, + "ps2-0100jd-20000117.bin": { + "md5": "32f2e4d5ff5ee11072a6bc45530f5765", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0100j-20000117.bin": { + "md5": "acf4730ceb38ac9d8c7d8e21f2614600", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0101jd-20000217.bin": { + "md5": "acf9968c8f596d2b15f42272082513d1", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0101j-20000217.bin": { + "md5": "b1459d7446c69e3e97e6ace3ae23dd1c", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0101xd-20000224.bin": { + "md5": "d3f1853a16c2ec18f3cd1ae655213308", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0110ad-20000727.bin": { + "md5": "63e6fd9b3c72e0d7b920e80cf76645cd", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0110a-20000727.bin": { + "md5": "a20c97c02210f16678ca3010127caf36", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0120a-20000902.bin": { + "md5": "8db2fbbac7413bf3e7154c1e0715e565", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0120ed-20000902.bin": { + "md5": "91c87cb2f2eb6ce529a2360f80ce2457", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0120ed-20000902-20030110.bin": { + "md5": "3016b3dd42148a67e2c048595ca4d7ce", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0120e-20000902.bin": { + "md5": "b7fa11e87d51752a98b38e3e691cbf17", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0120j-20001027-185015.bin": { + "md5": "f63bc530bd7ad7c026fcd6f7bd0d9525", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0120j-20001027-191435.bin": { + "md5": "cee06bd68c333fc5768244eae77e4495", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0150ad-20001228-20030520.bin": { + "md5": "0bf988e9c7aaa4c051805b0fa6eb3387", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0150a-20001228.bin": { + "md5": "8accc3c49ac45f5ae2c5db0adc854633", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0150ed-20001228-20030520.bin": { + "md5": "6f9a6feb749f0533aaae2cc45090b0ed", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0150e-20001228.bin": { + "md5": "838544f12de9b0abc90811279ee223c8", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0150jd-20010118.bin": { + "md5": "bb6bbc850458fff08af30e969ffd0175", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0150j-20010118.bin": { + "md5": "815ac991d8bc3b364696bead3457de7d", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0160a-20010427.bin": { + "md5": "b107b5710042abe887c0f6175f6e94bb", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0160j-20010427.bin": { + "md5": "ab55cceea548303c22c72570cfd4dd71", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0160a-20010704.bin": { + "md5": "18bcaadb9ff74ed3add26cdf709fff2e", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0160e-20010704.bin": { + "md5": "491209dd815ceee9de02dbbc408c06d6", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0160a-20011004.bin": { + "md5": "7200a03d51cacc4c14fcdfdbc4898431", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0160e-20011004.bin": { + "md5": "8359638e857c8bc18c3c18ac17d9cc3c", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0160h-20010730.bin": { + "md5": "352d2ff9b3f68be7e6fa7e6dd8389346", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0160a-20020207.bin": { + "md5": "d5ce2c7d119f563ce04bc04dbc3a323e", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0160e-20020319.bin": { + "md5": "0d2228e6fd4fb639c9c39d077a9ec10c", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0160j-20020426.bin": { + "md5": "72da56fccb8fcd77bba16d1b6f479914", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0160e-20020426.bin": { + "md5": "5b1f47fbeb277c6be2fccdd6344ff2fd", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0160h-20020426.bin": { + "md5": "315a4003535dfda689752cb25f24785c", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0170j-20030206.bin": { + "md5": "312ad4816c232a9606e56f946bc0678a", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0170ed-20030227.bin": { + "md5": "666018ffec65c5c7e04796081295c6c7", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0170e-20030227.bin": { + "md5": "666018ffec65c5c7e04796081295c6c7", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0170ad-20030325.bin": { + "md5": "eb960de68f0c0f7f9fa083e9f79d0360", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0170a-20030325.bin": { + "md5": "8aa12ce243210128c5074552d3b86251", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0180cd-20030224.bin": { + "md5": "240d4c5ddd4b54069bdc4a3cd2faf99d", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0180j-20031028.bin": { + "md5": "1c6cd089e6c83da618fbf2a081eb4888", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0190j-20030623.bin": { + "md5": "463d87789c555a4a7604e97d7db545d1", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0190a-20030623.bin": { + "md5": "35461cecaa51712b300b2d6798825048", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0190e-20030623.bin": { + "md5": "bd6415094e1ce9e05daabe85de807666", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0190h-20030623.bin": { + "md5": "2e70ad008d4ec8549aada8002fdf42fb", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0190r-20030623.bin": { + "md5": "b53d51edc7fc086685e31b811dc32aad", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0190c-20030623.bin": { + "md5": "1b6e631b536247756287b916f9396872", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0190j-20030822.bin": { + "md5": "00da1b177096cfd2532c8fa22b43e667", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0190e-20030822.bin": { + "md5": "afde410bd026c16be605a1ae4bd651fd", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0190a-20040329.bin": { + "md5": "81f4336c1de607dd0865011c0447052e", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0200ed-20040614.bin": { + "md5": "63ead1d74893bf7f36880af81f68a82d", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0200h-20040614.bin": { + "md5": "3e3e030c0f600442fa05b94f87a1e238", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0210j-20040917.bin": { + "md5": "1ad977bb539fc9448a08ab276a836bbc", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0220j-20050620.bin": { + "md5": "eb4f40fcf4911ede39c1bbfe91e7a89a", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0220ad-20050620.bin": { + "md5": "9959ad7a8685cad66206e7752ca23f8b", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0220a-20050620.bin": { + "md5": "929a14baca1776b00869f983aa6e14d2", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0220e-20050620.bin": { + "md5": "573f7d4a430c32b3cc0fd0c41e104bbd", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0220h-20050620.bin": { + "md5": "df63a604e8bff5b0599bd1a6c2721bd0", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0220j-20060210.bin": { + "md5": "5b1ba4bb914406fae75ab8e38901684d", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0220a-20060210.bin": { + "md5": "cb801b7920a7d536ba07b6534d2433ca", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0220e-20060210.bin": { + "md5": "af60e6d1a939019d55e5b330d24b1c25", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0220h-20060210.bin": { + "md5": "549a66d0c698635ca9fa3ab012da7129", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0220j-20060905.bin": { + "md5": "5de9d0d730ff1e7ad122806335332524", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0220ad-20060905.bin": { + "md5": "21fe4cad111f7dc0f9af29477057f88d", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0220a-20060905.bin": { + "md5": "40c11c063b3b9409aa5e4058e984e30c", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0220e-20060905.bin": { + "md5": "80bbb237a6af9c611df43b16b930b683", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0220h-20060905.bin": { + "md5": "c37bce95d32b2be480f87dd32704e664", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0230j-20080220.bin": { + "md5": "80ac46fa7e77b8ab4366e86948e54f83", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0230a-20080220.bin": { + "md5": "21038400dc633070a78ad53090c53017", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0230e-20080220.bin": { + "md5": "dc69f0643a3030aaa4797501b483d6c4", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0230h-20080220.bin": { + "md5": "30d56e79d89fbddf10938fa67fe3f34e", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0250e-20100415.bin": { + "md5": "93ea3bcee4252627919175ff1b16a1d9", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "ps2-0250j-20100415.bin": { + "md5": "d3e81e95db25f5a86a7b7474550a2155", + "system": "ps2", + "description": "PS2 BIOS", + "required": "at least one for this system" + }, + "tvcfileio.romn": { + "md5": "a2cf86ba8e7fc58b242137fe59036832", + "system": "enterprise", + "description": "Enterprise - 64/128 BIOS" + }, + "tvc22_ext.rom": { + "md5": "5ce95a26ceed5bec73995d83568da9cf", + "system": "enterprise", + "description": "Enterprise - 64/128 BIOS" + }, + "tvc22_sys.rom": { + "md5": "8c54285f541930cde766069942bad0f2", + "system": "enterprise", + "description": "Enterprise - 64/128 BIOS" + }, + "tvc_dos12d.rom": { + "md5": "88dc7876d584f90e4106f91444ab23b7", + "system": "enterprise", + "description": "Enterprise - 64/128 BIOS" + } + } +} diff --git a/config/retrodeck/reference_lists/features.json b/config/retrodeck/reference_lists/features.json new file mode 100644 index 00000000..a477a1d6 --- /dev/null +++ b/config/retrodeck/reference_lists/features.json @@ -0,0 +1,1205 @@ +{ + "about_links": { + "rd_changelog": { + "description": "Opens the RetroDECK change log in your default browser", + "name": "Changelog", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_rd_versions/version-history/", + "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" + }, + "rd_contactus": { + "description": "Opens the RetroDECK contact us section in your default browser", + "name": "Contact us", + "url": "https://github.com/XargonWan/RetroDECK", + "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" + }, + "rd_credits": { + "description": "Opens the RetroDECK Credits in your default browser", + "name": "Credits", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/", + "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" + }, + "rd_donate": { + "description": "Opens Donations page in your default browser", + "name": "Donate", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/", + "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" + }, + "rd_licenses": { + "description": "Opens the RetroDECK licenses in your default browser", + "name": "Licences", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/", + "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" + }, + "rd_web": { + "description": "Opens the RetroDECK Website in your default browser", + "name": "Website", + "url": "https://retrodeck.net/", + "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" + }, + "rd_wiki": { + "description": "Opens the RetroDECK Wiki in your default browser", + "name": "Wiki", + "url": "https://retrodeck.readthedocs.io/en/latest/", + "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" + } + }, + "finit_default_options": { + "rd_controller_profile": { + "name": "RetroDECK Steam Controller Profiles Install", + "description": "Install RetroDECK Steam Input profiles to Steam - Recommended", + "enabled": true + }, + "rpcs3_firmware": { + "name": "RPCS3 Firmware Install", + "description": "Install firmware needed for PS3 emulation", + "enabled": false + }, + "vita3k_firmware": { + "name": "Vita3K Firmware Install", + "description": "Install firmware needed for Vita3K emulation", + "enabled": false + } + }, + "splash_screens": { + "new_year": { + "start_date": "1231", + "end_date": "0106", + "start_time": "0000", + "end_time": "2359", + "filename": "placeholder.svg" + }, + "chinese_new_year": { + "start_date": "0128", + "end_date": "0212", + "start_time": "0000", + "end_time": "2359", + "filename": "rd-lunar-snake-splash.svg" + }, + "valentines_day": { + "start_date": "0214", + "end_date": "0214", + "start_time": "0001", + "end_time": "2359", + "filename": "rd-valentines-splash.svg" + }, + "retrodeck_birthday_gmday": { + "start_date": "0304", + "end_date": "0304", + "start_time": "0000", + "end_time": "2359", + "filename": "rd-gm-bday-splash.svg" + }, + "st_patricks_day": { + "start_date": "0317", + "end_date": "0317", + "start_time": "0000", + "end_time": "2359", + "filename": "rd-stpatricks-splash.svg" + }, + "fruhlingsfest": { + "start_date": "0425", + "end_date": "0428", + "start_time": "0000", + "end_time": "2359", + "filename": "placeholder.svg" + }, + "kodomo_golden_week": { + "start_date": "0429", + "end_date": "0505", + "start_time": "0000", + "end_time": "2359", + "filename": "rd-kodomo-golden.svg" + }, + "midsommarafton": { + "start_date": "0620", + "end_date": "0621", + "start_time": "0000", + "end_time": "2359", + "filename": "placeholder.svg" + }, + "tanabata": { + "start_date": "0707", + "end_date": "0707", + "start_time": "0000", + "end_time": "2359", + "filename": "tanabata.svg" + }, + "mountain_day": { + "start_date": "0811", + "end_date": "0811", + "start_time": "0000", + "end_time": "2359", + "filename": "placeholder.svg" + }, + "obon": { + "start_date": "0813", + "end_date": "0816", + "start_time": "0000", + "end_time": "2359", + "filename": "placeholder.svg" + }, + "may_day": { + "start_date": "0405", + "end_date": "0405", + "start_time": "0000", + "end_time": "2359", + "full_start_date": "2024-04-05", + "full_end_date": "2024-04-05", + "filename": "placeholder.svg" + }, + "oktoberfest": { + "start_date": "0920", + "end_date": "1005", + "start_time": "0000", + "end_time": "2359", + "full_start_date": "2025-09-20", + "full_end_date": "2025-10-05", + "filename": "placeholder.svg" + }, + "xmas": { + "start_date": "1201", + "end_date": "1231", + "start_time": "0000", + "end_time": "2359", + "filename": "rd-xmas-splash.svg" + } + }, + "incompatible_presets": { + "borders": "widescreen" + }, + "helper_files": { + "dolphin_mods": { + "filename": "how-to-install-dolphin-mods.txt", + "location": "$mods_folder/Dolphin" + }, + "primehack_mods": { + "filename": "how-to-install-primehack-mods.txt", + "location": "$mods_folder/Primehack" + }, + "mesen_textures": { + "filename": "how-to-install-Mesen-textures.txt", + "location": "$texture_packs_folder/RetroArch-Mesen" + }, + "ppsspp_textures": { + "filename": "how-to-install-PPSSPP-textures.txt", + "location": "$texture_packs_folder/PPSSPP" + }, + "pcsx2_textures": { + "filename": "how-to-install-PCSX2-textures.txt", + "location": "$texture_packs_folder/PCSX2" + }, + "mupen64plus_cache_textures": { + "filename": "how-to-install-Mupen64Plus-textures.txt", + "location": "$texture_packs_folder/RetroArch-Mupen64Plus/cache" + }, + "mupen64plus_hires_textures": { + "filename": "how-to-install-Mupen64Plus-textures.txt", + "location": "$texture_packs_folder/RetroArch-Mupen64Plus/hires_texture" + }, + "duckstation_textures": { + "filename": "how-to-install-Duckstation-textures.txt", + "location": "$texture_packs_folder/Duckstation" + }, + "psvita_games": { + "filename": "how-to-install-psvita-games.txt", + "location": "$roms_folder/psvita" + }, + "ryujinx_firmware": { + "filename": "Install-firmware-through-Ryujinx.txt", + "location": "$bios_folder/switch/firmware" + }, + "custom_systems": { + "filename": "es_systems.xml", + "location": "$rdhome/ES-DE/custom_systems" + } + }, + "compression_targets": { + "chd": [ + "3do", + "amigacd32", + "dreamcast", + "megacd", + "neogeocd", + "pcenginecd", + "pcfx", + "psp", + "psx", + "ps2", + "saturn", + "saturnjp", + "segacd", + "tg-cd" + ], + "rvz": [ + "gc", + "wii" + ], + "zip": [ + "atari2600", + "atari5200", + "atari7800", + "atari800", + "atarijaguar", + "atarilynx", + "atarist", + "gamegear", + "gb", + "gba", + "gbc", + "genesis", + "mastersystem", + "n64", + "nes", + "ngp", + "ngpc", + "sega32x", + "sega32xjp", + "sega32xna", + "snes", + "snesna", + "tg16" + ] + }, + "zip_compressable_extensions": [ + ".32x", + ".68k", + ".NDS", + ".a26", + ".a52", + ".a78", + ".abs", + ".agb", + ".atr", + ".atx", + ".bin", + ".bml", + ".bms", + ".bs", + ".bsx", + ".cas", + ".cdm", + ".cgb", + ".cof", + ".col", + ".dim", + ".dmg", + ".dx2", + ".fds", + ".fig", + ".gb", + ".gba", + ".gbc", + ".gd3", + ".gd7", + ".gen", + ".gg", + ".ipf", + ".j64", + ".jag", + ".lnx", + ".md", + ".mdx", + ".mgd", + ".msa", + ".nds", + ".nes", + ".ngc", + ".o", + ".pce", + ".prg", + ".rom", + ".sfc", + ".sg", + ".sgb", + ".sgd", + ".smc", + ".smd", + ".sms", + ".st", + ".st", + ".stx", + ".swc", + ".unf", + ".unif", + ".xex", + ".xfd", + ".z64" + ], + "system": { + "3do": { + "name": "3DO Interactive Multiplayer" + }, + "adam": { + "name": "Coleco Adam" + }, + "amiga": { + "name": "Commodore Amiga" + }, + "amiga1200": { + "name": "Commodore Amiga 1200" + }, + "amiga600": { + "name": "Commodore Amiga 600" + }, + "amigacd32": { + "name": "Commodore Amiga CD32" + }, + "amstradcpc": { + "name": "Amstrad CPC" + }, + "apple2": { + "name": "Apple II" + }, + "apple2gs": { + "name": "Apple IIGS" + }, + "arcade": { + "name": "Arcade" + }, + "arcadia": { + "name": "Emerson Arcadia 2001" + }, + "archimedes": { + "name": "Acorn Archimedes" + }, + "arduboy": { + "name": "Arduboy Miniature Game System" + }, + "astrocde": { + "name": "Bally Astrocade" + }, + "atari2600": { + "name": "Atari 2600" + }, + "atari5200": { + "name": "Atari 5200" + }, + "atari7800": { + "name": "Atari 7800 ProSystem" + }, + "atari800": { + "name": "Atari 800" + }, + "atarijaguar": { + "name": "Atari Jaguar" + }, + "atarilynx": { + "name": "Atari Lynx" + }, + "atarist": { + "name": "Atari ST" + }, + "atarixe": { + "name": "Atari XE" + }, + "atomiswave": { + "name": "Sammy Corporation Atomiswave" + }, + "bbcmicro": { + "name": "Acorn Computers BBC Micro" + }, + "c64": { + "name": "Commodore 64" + }, + "cdimono1": { + "name": "Philips CD-i" + }, + "cdtv": { + "name": "Commodore CDTV" + }, + "chailove": { + "name": "ChaiLove Game Engine" + }, + "channelf": { + "name": "Fairchild Channel F" + }, + "colecovision": { + "name": "Coleco ColecoVision" + }, + "consolearcade": { + "name": "Console Arcade Systems" + }, + "cps": { + "name": "Capcom Play System" + }, + "cps1": { + "name": "Capcom Play System I" + }, + "cps2": { + "name": "Capcom Play System II" + }, + "cps3": { + "name": "Capcom Play System III" + }, + "crvision": { + "name": "VTech CreatiVision" + }, + "daphne": { + "name": "Daphne Arcade LaserDisc Emulator" + }, + "desktop": { + "name": "Desktop Applications" + }, + "doom": { + "name": "Doom" + }, + "dos": { + "name": "DOS (PC)" + }, + "dreamcast": { + "name": "Sega Dreamcast" + }, + "dc": { + "name": "Sega Dreamcast" + }, + "easyrpg": { + "name": "EasyRPG Game Engine" + }, + "electron": { + "name": "Acorn Electron" + }, + "emulators": { + "name": "Emulators" + }, + "famicom": { + "name": "Nintendo Family Computer" + }, + "fba": { + "name": "FinalBurn Alpha" + }, + "fbneo": { + "name": "FinalBurn Neo" + }, + "fds": { + "name": "Nintendo Famicom Disk System" + }, + "fm7": { + "name": "Fujitsu FM-7" + }, + "fmtowns": { + "name": "Fujitsu FM Towns" + }, + "gamate": { + "name": "Bit Corporation Gamate" + }, + "gameandwatch": { + "name": "Nintendo Game and Watch" + }, + "gamecom": { + "name": "Tiger Electronics Game.com" + }, + "gamegear": { + "name": "Sega Game Gear" + }, + "gg": { + "name": "Sega Game Gear" + }, + "gb": { + "name": "Nintendo Game Boy" + }, + "gba": { + "name": "Nintendo Game Boy Advance" + }, + "gbc": { + "name": "Nintendo Game Boy Color" + }, + "gc": { + "name": "Nintendo GameCube" + }, + "genesis": { + "name": "Sega Genesis" + }, + "gmaster": { + "name": "Hartung Game Master" + }, + "gx4000": { + "name": "Amstrad GX4000" + }, + "intellivision": { + "name": "Mattel Electronics Intellivision" + }, + "j2me": { + "name": "Java 2 Micro Edition (J2ME)" + }, + "laserdisc": { + "name": "LaserDisc Games" + }, + "lcdgames": { + "name": "LCD Handheld Games" + }, + "lowresnx": { + "name": "LowRes NX Fantasy Console" + }, + "lutris": { + "name": "Lutris Open Gaming Platform" + }, + "lutro": { + "name": "Lutro Game Engine" + }, + "macintosh": { + "name": "Apple Macintosh" + }, + "mame": { + "name": "Multiple Arcade Machine Emulator" + }, + "mastersystem": { + "name": "Sega Master System" + }, + "megacd": { + "name": "Sega Mega-CD" + }, + "megacdjp": { + "name": "Sega Mega-CD (Japan)" + }, + "megadrive": { + "name": "Sega Mega Drive" + }, + "megaduck": { + "name": "Creatronic Mega Duck" + }, + "mess": { + "name": "Multi Emulator Super System" + }, + "model2": { + "name": "Sega Model 2" + }, + "moto": { + "name": "Thomson MO/TO Series" + }, + "msx": { + "name": "MSX" + }, + "msx1": { + "name": "MSX1" + }, + "msx2": { + "name": "MSX2" + }, + "msxturbor": { + "name": "MSX Turbo R" + }, + "mugen": { + "name": "M.U.G.E.N Game Engine" + }, + "multivision": { + "name": "Othello Multivision" + }, + "n3ds": { + "name": "Nintendo 3DS" + }, + "n64": { + "name": "Nintendo 64" + }, + "n64dd": { + "name": "Nintendo 64DD" + }, + "naomi": { + "name": "Sega NAOMI" + }, + "naomi2": { + "name": "Sega NAOMI 2" + }, + "naomigd": { + "name": "Sega NAOMI GD-ROM" + }, + "nds": { + "name": "Nintendo DS" + }, + "neogeo": { + "name": "SNK Neo Geo" + }, + "neogeocd": { + "name": "SNK Neo Geo CD" + }, + "neogeocdjp": { + "name": "SNK Neo Geo CD (Japan)" + }, + "nes": { + "name": "Nintendo Entertainment System" + }, + "ngp": { + "name": "SNK Neo Geo Pocket" + }, + "ngpc": { + "name": "SNK Neo Geo Pocket Color" + }, + "odyssey2": { + "name": "Magnavox Odyssey 2" + }, + "openbor": { + "name": "OpenBOR Game Engine" + }, + "palm": { + "name": "Palm OS" + }, + "pc": { + "name": "IBM PC" + }, + "pc88": { + "name": "NEC PC-8800 Series" + }, + "pc98": { + "name": "NEC PC-9800 Series" + }, + "pcarcade": { + "name": "PC Arcade Systems" + }, + "pcengine": { + "name": "NEC PC Engine" + }, + "pcenginecd": { + "name": "NEC PC Engine CD" + }, + "pcfx": { + "name": "NEC PC-FX" + }, + "pico8": { + "name": "PICO-8 Fantasy Console" + }, + "plus4": { + "name": "Commodore Plus/4" + }, + "pokemini": { + "name": "Nintendo Pokémon Mini" + }, + "portmaster": { + "name": "PortMaster" + }, + "ports": { + "name": "Ports" + }, + "ps2": { + "name": "Sony PlayStation 2" + }, + "ps3": { + "name": "Sony PlayStation 3" + }, + "psp": { + "name": "Sony PlayStation Portable" + }, + "psvita": { + "name": "Sony PlayStation Vita" + }, + "psx": { + "name": "Sony PlayStation" + }, + "pv1000": { + "name": "Casio PV-1000" + }, + "quake": { + "name": "Quake" + }, + "satellaview": { + "name": "Nintendo Satellaview" + }, + "saturn": { + "name": "Sega Saturn" + }, + "saturnjp": { + "name": "Sega Saturn (Japan)" + }, + "scummvm": { + "name": "ScummVM Game Engine" + }, + "scv": { + "name": "Epoch Super Cassette Vision" + }, + "sega32x": { + "name": "Sega Mega Drive 32X" + }, + "sega32xjp": { + "name": "Sega Super 32X (Japan)" + }, + "sega32xna": { + "name": "Sega Genesis 32X" + }, + "segacd": { + "name": "Sega CD" + }, + "sfc": { + "name": "Nintendo SFC (Super Famicom)" + }, + "sg-1000": { + "name": "Sega SG-1000" + }, + "sgb": { + "name": "Nintendo Super Game Boy" + }, + "snes": { + "name": "Nintendo SNES (Super Nintendo)" + }, + "snesna": { + "name": "Nintendo SNES (Super Nintendo)" + }, + "solarus": { + "name": "Solarus Game Engine" + }, + "spectravideo": { + "name": "Spectravideo" + }, + "stv": { + "name": "Sega Titan Video Game System" + }, + "sufami": { + "name": "Bandai SuFami Turbo" + }, + "supergrafx": { + "name": "NEC SuperGrafx" + }, + "supervision": { + "name": "Watara Supervision" + }, + "supracan": { + "name": "Funtech Super A'Can" + }, + "switch": { + "name": "Nintendo Switch" + }, + "tg-cd": { + "name": "NEC TurboGrafx-CD" + }, + "tg16": { + "name": "NEC TurboGrafx-16" + }, + "ti99": { + "name": "Texas Instruments TI-99" + }, + "tic80": { + "name": "TIC-80 Fantasy Computer" + }, + "to8": { + "name": "Thomson TO8" + }, + "uzebox": { + "name": "Uzebox Open Source Console" + }, + "vectrex": { + "name": "GCE Vectrex" + }, + "vic20": { + "name": "Commodore VIC-20" + }, + "videopac": { + "name": "Philips Videopac G7000" + }, + "virtualboy": { + "name": "Nintendo Virtual Boy" + }, + "vsmile": { + "name": "VTech V.Smile" + }, + "wasm4": { + "name": "WASM-4 Fantasy Console" + }, + "wii": { + "name": "Nintendo Wii" + }, + "wiiu": { + "name": "Nintendo Wii U" + }, + "windows": { + "name": "Microsoft Windows" + }, + "windows3x": { + "name": "Microsoft Windows 3.x" + }, + "windows9x": { + "name": "Microsoft Windows 9x" + }, + "wonderswan": { + "name": "Bandai WonderSwan" + }, + "wonderswancolor": { + "name": "Bandai WonderSwan Color" + }, + "x1": { + "name": "Sharp X1" + }, + "x68000": { + "name": "Sharp X68000" + }, + "xbox": { + "name": "Microsoft Xbox" + }, + "zx81": { + "name": "Sinclair ZX81" + }, + "zxspectrum": { + "name": "Sinclair ZX Spectrum" + } + }, + "emulator": { + "retroarch": { + "description": "RetroArch (Multi-emulator Frontend)", + "name": "RetroArch", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/retroarch/retroarch-guide/", + "launch": "retroarch", + "cli-arg": "--version", + "system": "retroarch", + "properties": [ + { + "cheevos": true, + "cheevos_hardcore": true, + "quick_resume": true + } + ], + "cores": { + "citra_libretro": { + "description": "Nintendo 3DS Libretro Core", + "name": "Citra", + "system": "n3ds", + "properties": [ + { + "abxy_button": true + } + ] + }, + "mame_libretro": { + "description": "MAME: Multiple Arcade Machine Libretro Core", + "name": "MAME", + "system": "arcade", + "properties": [ + { + "tate_mode": true + } + ] + }, + "desmume_libretro": { + "description": "DeSmuME Nintendo DS Libretro Core", + "name": "desmume", + "system": "nds", + "properties": [ + { + "abxy_button": true + } + ] + }, + "melonds_libretro": { + "description": "MelonDS Nintendo DS Libretro Core", + "name": "melonds", + "system": "nds", + "properties": [ + { + "abxy_button": true + } + ] + }, + "swanstation_libretro": { + "name": "SwanStation", + "description": "Swanstation Libretro Core", + "system": "psx", + "properties": [ + { + "widescreen": true, + "borders": true + } + ] + }, + "picodrive_libretro": { + "name": "PicoDrive", + "description": "SEGA MS/MD/CD/32X Libretro Core", + "system": [ + "ms", + "md", + "cd", + "32x" + ], + "properties": [ + { + "widescreen": true, + "borders": true, + "rewind": true + } + ] + }, + "genesisplusgx_libretro": { + "name": "Genesis Plus GX", + "description": "SEGA MS/GG/MD/CD Libretro Core", + "system": [ + "ms", + "gg", + "mc", + "cd" + ], + "properties": [ + { + "widescreen": true, + "borders": true, + "rewind": true + } + ] + }, + "genesisplusgxwide_libretro": { + "name": "Genesis Plus GX Wide", + "description": "SEGA MS/GG/MD/CD Libretro Core for Wide Screen", + "system": [ + "ms", + "gg", + "mc", + "cd" + ], + "properties": [ + { + "widescreen": true, + "rewind": true + } + ] + }, + "mupen64plus-next_libretro": { + "name": "Mupen64Plus-Next", + "description": "Nintendo 64 Libretro Core", + "system": "n64", + "properties": [ + { + "widescreen": true, + "borders": true, + "abxy_button": true + } + ] + }, + "snes9x-current_libretro": { + "name": "Snes9x - Current", + "description": "Super Nintendo Libretro Core", + "system": "snes", + "properties": [ + { + "widescreen": true, + "borders": true, + "rewind": true, + "abxy_button": true + } + ] + }, + "gambatte_libretro": { + "name": "Gambatte", + "description": "Game Boy/Color Libretro Core", + "system": [ + "gb", + "gbc" + ], + "properties": [ + { + "borders": true, + "rewind": true, + "abxy_button": true + } + ] + }, + "mgba_libretro": { + "name": "mGBA", + "description": "Game Boy Advance Libretro Core", + "system": "gba", + "properties": [ + { + "borders": true, + "rewind": true, + "abxy_button": true + } + ] + } + } + }, + "mame": { + "description": "MAME: Multiple Arcade Machine Emulator", + "name": "MAME", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/mame/mame-guide/", + "system": [ + "arcade" + ], + "launch": "mame", + "cli-arg": "-help" + }, + "citra": { + "description": "Citra Nintendo 3DS Emulator (via Ponzu)", + "name": "Citra (via Ponzu)", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_about/what-is-retrodeck/", + "system": "n3ds", + "ponzu": true, + "launch": "citra-qt", + "cli-arg": "-version", + "properties": [ + { + "abxy_button": true, + "ask_to_exit": true + } + ] + }, + "ruffle": { + "description": "Flash Games emulator", + "name": "Ruffle", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_about/what-is-retrodeck/", + "system": "flash", + "launch": "ruffle-rdwrapper.sh", + "cli-arg": "" + }, + "melonds": { + "description": "MelonDS Nintendo DS Emulator", + "name": "melonDS", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/melonds/melonds-guide/", + "system": "nds", + "launch": "melonDS", + "cli-arg": "--help" + }, + "pcsx2": { + "name": "pcsx2", + "description": "PCSX2 Play Station 2 Emulator", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/pcsx2/pcsx2-guide/", + "system": "ps2", + "launch": "pcsx2-qt", + "cli-arg": "-version", + "properties": [ + { + "ask_to_exit": true, + "cheevos": true + } + ] + }, + "duckstation": { + "name": "Duckstation (Legacy)", + "description": "PlayStation Emulator", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/duckstation/duckstation-guide/", + "launch": "duckstation-qt", + "cli-arg": "-version", + "system": "psx", + "properties": [ + { + "ask_to_exit": true, + "cheevos": true + } + ] + }, + "ppsspp": { + "name": "PPSSPP", + "description": "PPSSPP: PlayStation Portable Emulator", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/ppsspp/ppsspp-guide/", + "launch": "PPSSPPSDL", + "cli-arg": "--version", + "system": "psp", + "properties": [ + { + "cheevos": true, + "cheevos_hardcore": true + } + ] + }, + "vita3k": { + "name": "Vita3k", + "description": "Vita3K PSVita Emulator", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/vita3k/vita3k-guide/", + "system": "psvita", + "launch": "Vita3K", + "cli-arg": "" + }, + "rpcs3": { + "name": "RPCS3", + "description": "RPCS3 PlayStation 3 Emulator", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/rpcs3/rpcs3-guide/", + "system": "ps3", + "launch": "rpcs3", + "cli-arg": "--version", + "launch-override": "cd $(dirname $game) && rpcs3 $game", + "properties": [ + { + "ask_to_exit": true + } + ] + }, + "ryujinx": { + "name": "Ryujinx", + "description": "Ryujinx Nintendo Switch Emulator", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/ryujinx/ryujinx-guide/", + "system": "switch", + "launch": "Ryujinx.sh", + "cli-arg": "" + }, + "yuzu": { + "name": "Yuzu (via Ponzu)", + "description": "Yuzu Nintendo Switch Emulator (via Ponzu)", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_about/what-is-retrodeck/", + "launch": "Yuzu", + "cli-arg": "", + "system": "switch", + "ponzu": true, + "abxy_button": true + }, + "dolphin": { + "name": "Dolphin", + "description": "Dolphin Wii and GameCube Emulator", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/dolphin-primehack/dolphin-primehack-guide/", + "launch": "dolphin-emu-wrapper", + "cli-arg": "--version", + "system": [ + "gc", + "wii" + ], + "properties": [ + { + "abxy_button": true, + "ask_to_exit": true, + "cheevos": true, + "cheevos_hardcore": true, + "universal_dyn_input": true + } + ] + }, + "primehack": { + "name": "PrimeHack", + "description": "A fork of Dolphiin to enhance Metroid Prime experience", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/dolphin-primehack/dolphin-primehack-guide/", + "launch": "primehack-wrapper", + "cli-arg": "--version", + "system": [ + "wii" + ], + "properties": [ + { + "ask_to_exit": true, + "universal_dyn_input": true + } + ] + }, + "cemu": { + "description": "Wii U emulator", + "name": "Cemu", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/cemu/cemu-guide/", + "system": "wiiu", + "launch": "Cemu-wrapper", + "cli-arg": "--version", + "properties": [ + { + "abxy_button": true, + "multi_user_config_dir": "Cemu" + } + ] + }, + "xemu": { + "description": "xemu Xbox Emulator", + "name": "xemu", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/xemu/xemu-guide/", + "system": "xbox", + "launch": "xemu", + "cli-arg": "--version" + }, + "es-de": { + "description": "ES-DE Emulation Frontend", + "name": "ES-DE", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_es_de/esde-guide/.", + "launch": "es-de", + "cli-arg": "--version" + }, + "steam-rom-manager": { + "description": "Steam ROM Manager (used to sync RetroDECK favorites with Steam)", + "name": "Steam ROM Manager", + "launch": "steam-rom-manager", + "cli-arg": "--version" + }, + "portmaster": { + "description": "PortMaster", + "name": "PortMaster", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_about/what-is-retrodeck/", + "system": "portmaster", + "launch": "PortMaster", + "cli-arg": "" + } + } +} diff --git a/emu-configs/defaults/retrodeck/reference_lists/input_validation.cfg b/config/retrodeck/reference_lists/input_validation.cfg similarity index 100% rename from emu-configs/defaults/retrodeck/reference_lists/input_validation.cfg rename to config/retrodeck/reference_lists/input_validation.cfg diff --git a/emu-configs/defaults/retrodeck/reference_lists/multi_user_emulator_config_dirs.cfg b/config/retrodeck/reference_lists/multi_user_emulator_config_dirs.cfg similarity index 100% rename from emu-configs/defaults/retrodeck/reference_lists/multi_user_emulator_config_dirs.cfg rename to config/retrodeck/reference_lists/multi_user_emulator_config_dirs.cfg diff --git a/config/retrodeck/reference_lists/retrodeck_credits.txt b/config/retrodeck/reference_lists/retrodeck_credits.txt new file mode 100644 index 00000000..0e981b40 --- /dev/null +++ b/config/retrodeck/reference_lists/retrodeck_credits.txt @@ -0,0 +1,80 @@ +The Team + +Those that make RetroDECK happen + +--- + +XargonWan + +RetroDECK project founder and also one of the founding members of AmberELEC. + +--- + +Lazorne + +Does community management/outreach, testing, documentation, emulator configurations, maestro and more. + +--- + +jiannazzone + +Does Web Development, Godot, Community management/outreach, testing, documentation and more. + +--- + +IceNine451 + +Focus on scripting and creator of the RetroDECK Configurator the RetroDECK Framework and various cool things. + +--- + +WallK + +Does Godot, backend development and various cool things. + +--- +--- +--- + + +RetroDECK Alumni + +RetroDECK Alumni are former members of the RetroDECK Team that have moved on to other pastures. They deserve their own special credit for the efforts done to make RetroDECK possible. + +--- + +dottormac + +Did bleeding edge cooker testing and provided valuable feedback. + +--- + +Lx32 + +Did the work of getting SRM and Steam Sync into RetroDECK. + +--- + +MonkeyX + +Did several Godot Configurator things and backend improvements. + +--- +--- +--- + +We want give special thanks to: + +- Our Patreon and donors that keeps the build servers running and provide feedback. + +- All related emulation, front end and software projects that we are dependent on. + +- All people that have put both time and money into emulation projects. + +- All the users who help others with support, guidance and good spirit. + +- All the users who help with testing and reporting issues. + +- All the community creators who creates various art and assets for the community. + +You are all the ones that makes this project possible. diff --git a/emu-configs/defaults/retrodeck/retrodeck-mimetype.xml b/config/retrodeck/retrodeck-mimetype.xml similarity index 100% rename from emu-configs/defaults/retrodeck/retrodeck-mimetype.xml rename to config/retrodeck/retrodeck-mimetype.xml diff --git a/emu-configs/defaults/retrodeck/retrodeck.cfg b/config/retrodeck/retrodeck.cfg similarity index 91% rename from emu-configs/defaults/retrodeck/retrodeck.cfg rename to config/retrodeck/retrodeck.cfg index 88a33896..d7abe7a1 100644 --- a/emu-configs/defaults/retrodeck/retrodeck.cfg +++ b/config/retrodeck/retrodeck.cfg @@ -30,6 +30,13 @@ default_user= developer_options=false kiroi_ponzu=false akai_ponzu=false +steam_sync=false +sound_effects=true +volume_effects=10 +font=1 +cheevos_login=false +logging_level=info +portmaster_reload_esde=true [cheevos] duckstation=false diff --git a/config/rpcs3/GuiConfigs/CurrentSettings.ini b/config/rpcs3/GuiConfigs/CurrentSettings.ini new file mode 100644 index 00000000..0f2232a6 --- /dev/null +++ b/config/rpcs3/GuiConfigs/CurrentSettings.ini @@ -0,0 +1,71 @@ +[Config] + +[GameList] +hidden_list=@Invalid() +iconColor=@Variant(\0\0\0\x43\x1\xff\xff\xf0\xf0\xf0\xf0\xf0\xf0\0\0) +marginFactor=0.09 +sortAsc=true +sortCol=1 +textFactor=2 +visibility_column_category=true +visibility_column_compat=true +visibility_column_dir_size=true +visibility_column_firmware=false +visibility_column_icon=true +visibility_column_last_play=true +visibility_column_move=true +visibility_column_name=true +visibility_column_parental=false +visibility_column_path=false +visibility_column_playtime=true +visibility_column_resolution=true +visibility_column_serial=true +visibility_column_sound=false +visibility_column_version=true + +[Localization] +language=en + +[Logger] +ANSI_code=true +ERR_stack=true +level=4 +stack=true + +[Meta] +attachCommandLine=false +checkUpdateStart=false +currentStylesheet=Skyline (Nightfall) +discordState= +showDebugTab=false +useRichPresence=true + +[Shortcuts] +game_window_exit_fullscreen=Esc +game_window_frame_limit=Ctrl+Z +game_window_gw_frame_limit=Ctrl+Z +game_window_log_mark=F5 +game_window_mouse_lock=F6 +game_window_pause_play=Ctrl+P +game_window_restart=Ctrl+R +game_window_rsx_capture=F12 +game_window_savestate=Ctrl+S +game_window_screenshot=Ctrl+X +game_window_toggle_fullscreen=Ctrl+Return +game_window_toggle_mouse_and_keyboard=F11 +game_window_toggle_recording=Ctrl+V +gw_home_menu=Ctrl+M +gw_mute_unmute=F7 +gw_volume_down=F9 +gw_volume_up=F8 +main_window_exit_fullscreen=Esc +main_window_pause=Ctrl+P +main_window_refresh=Ctrl+F5 +main_window_restart=Ctrl+R +main_window_start=Ctrl+E +main_window_stop=Ctrl+Q +main_window_toggle_fullscreen=Ctrl+Return + +[main_window] +confirmationBoxExitGame=false +infoBoxEnabledWelcome=false diff --git a/emu-configs/rpcs3/config.yml b/config/rpcs3/config.yml similarity index 94% rename from emu-configs/rpcs3/config.yml rename to config/rpcs3/config.yml index 53bb6fc5..2acd8d68 100644 --- a/emu-configs/rpcs3/config.yml +++ b/config/rpcs3/config.yml @@ -121,6 +121,7 @@ Video: DECR memory layout: false Allow Host GPU Labels: false Disable MSL Fast Math: false + Disable Asynchronous Memory Manager: false Output Scaling Mode: Bilinear Vulkan: Adapter: AMD Custom GPU 0405 (RADV VANGOGH) @@ -187,15 +188,19 @@ Input/Output: Buzz emulated controller: "Null" Turntable emulated controller: "Null" GHLtar emulated controller: "Null" - GameTablet emulated controller: Disabled Pad handler mode: Single-threaded Keep pads connected: false Pad handler sleep (microseconds): 1000 Background input enabled: true Show move cursor: false + Paint move spheres: false + Allow move hue set by game: false Lock overlay input to player one: false Emulated Midi devices: Keyboardßßß@@@Keyboardßßß@@@Keyboardßßß@@@ Load SDL GameController Mappings: true + IO Debug overlay: false + Fake Move Rotation Cone: 10 + Fake Move Rotation Cone (Vertical): 10 System: License Area: SCEE Language: English (US) @@ -215,6 +220,7 @@ Net: IP swap list: "" UPNP Enabled: false PSN status: Disconnected + PSN Country: eu Savestate: Start Paused: false Suspend Emulation Savestate Mode: true @@ -228,8 +234,13 @@ Miscellaneous: Start games in fullscreen mode: true Prevent display sleep while running games: true Show trophy popups: true + Show RPCN popups: true Show shader compilation hint: true Show PPU compilation hint: true + Show autosave/autoload hint: true + Show pressure intensity toggle hint: true + Show analog limiter toggle hint: true + Show mouse and keyboard toggle hint: true Use native user interface: true GDB Server: 127.0.0.1:2345 Silence All Logs: false diff --git a/emu-configs/rpcs3/evdev_positive_axis.yml b/config/rpcs3/evdev_positive_axis.yml similarity index 100% rename from emu-configs/rpcs3/evdev_positive_axis.yml rename to config/rpcs3/evdev_positive_axis.yml diff --git a/emu-configs/rpcs3/input_configs/active_profiles.yml b/config/rpcs3/input_configs/active_profiles.yml similarity index 100% rename from emu-configs/rpcs3/input_configs/active_profiles.yml rename to config/rpcs3/input_configs/active_profiles.yml diff --git a/emu-configs/rpcs3/input_configs/global/Default.yml b/config/rpcs3/input_configs/global/Default.yml similarity index 100% rename from emu-configs/rpcs3/input_configs/global/Default.yml rename to config/rpcs3/input_configs/global/Default.yml diff --git a/emu-configs/rpcs3/vfs.yml b/config/rpcs3/vfs.yml similarity index 100% rename from emu-configs/rpcs3/vfs.yml rename to config/rpcs3/vfs.yml diff --git a/config/ruffle/ruffle-rdwrapper.sh b/config/ruffle/ruffle-rdwrapper.sh new file mode 100644 index 00000000..37ba0d89 --- /dev/null +++ b/config/ruffle/ruffle-rdwrapper.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +source /app/libexec/global.sh + +create_dir "$saves_folder/ruffle" + +static_invoke="--config /var/data/ruffle \ + --save-directory "$saves_folder/ruffle" \ + --fullscreen" + +#Check if Steam Deck in Desktop Mode +if [[ $(check_desktop_mode) == "true" ]]; then + ruffle --graphics vulkan $static_invoke "$@" +else + ruffle --graphics gl --no-gui $static_invoke "$@" +fi \ No newline at end of file diff --git a/emu-configs/ryujinx/Config.json b/config/ryujinx/Config.json similarity index 100% rename from emu-configs/ryujinx/Config.json rename to config/ryujinx/Config.json diff --git a/emu-configs/ryujinx/profiles/controller/Steam Deck - Neptune.json b/config/ryujinx/profiles/controller/Steam Deck - Neptune.json similarity index 100% rename from emu-configs/ryujinx/profiles/controller/Steam Deck - Neptune.json rename to config/ryujinx/profiles/controller/Steam Deck - Neptune.json diff --git a/emu-configs/ryujinx/profiles/controller/Steam Virtual Controller.json b/config/ryujinx/profiles/controller/Steam Virtual Controller.json similarity index 100% rename from emu-configs/ryujinx/profiles/controller/Steam Virtual Controller.json rename to config/ryujinx/profiles/controller/Steam Virtual Controller.json diff --git a/config/steam-rom-manager/userConfigurations.json b/config/steam-rom-manager/userConfigurations.json new file mode 100644 index 00000000..7bc7c167 --- /dev/null +++ b/config/steam-rom-manager/userConfigurations.json @@ -0,0 +1,132 @@ +[ + { + "parserType": "Glob", + "configTitle": "RetroDECK", + "steamDirectory": "${steamdirglobal}", + "romDirectory": "${romsdirglobal}", + "steamCategories": [ + "RetroDECK" + ], + "executableArgs": "", + "executableModifier": "\"${exePath}\"", + "startInDirectory": "", + "titleModifier": "${fuzzyTitle}", + "fetchControllerTemplatesButton": null, + "removeControllersButton": null, + "steamInputEnabled": "2", + "imageProviders": [ + "sgdb", + "steamCDN" + ], + "onlineImageQueries": [ + "${fuzzyTitle}" + ], + "imagePool": "${fuzzyTitle}", + "drmProtect": false, + "userAccounts": { + "specifiedAccounts": [ + "" + ] + }, + "parserInputs": { + "glob": "${title}.sh" + }, + "executable": { + "path": "", + "shortcutPassthrough": false, + "appendArgsToExecutable": true + }, + "titleFromVariable": { + "limitToGroups": [], + "caseInsensitiveVariables": false, + "skipFileIfVariableWasNotFound": false + }, + "fuzzyMatch": { + "replaceDiacritics": true, + "removeCharacters": true, + "removeBrackets": true + }, + "controllers": { + "ps4": { + "title": "RetroDECK: DualShock 4 v.1b", + "mappingId": "RetroDECK_controller_ps4_dualshock4_simple.vdf", + "profileType": "template" + }, + "ps5": { + "title": "RetroDECK: DualSense v.1b", + "mappingId": "RetroDECK_controller_ps5_dualsense_simple.vdf", + "profileType": "template" + }, + "ps5_edge": null, + "xbox360": { + "title": "RetroDECK: Xbox 360 v.1b", + "mappingId": "RetroDECK_controller_xbox360_simple.vdf", + "profileType": "template" + }, + "xboxone": { + "title": "RetroDECK: Xbox Wireless v.1b", + "mappingId": "RetroDECK_controller_xboxone_simple.vdf", + "profileType": "template" + }, + "xboxelite": null, + "switch_joycon_left": { + "title": "Controller", + "mappingId": "controller_switch_joycon_left_gamepad_joystick.vdf", + "profileType": "template" + }, + "switch_joycon_right": { + "title": "Controller", + "mappingId": "controller_switch_joycon_right_gamepad_joystick.vdf", + "profileType": "template" + }, + "switch_pro": { + "title": "RetroDECK: Switch Pro v.1b", + "mappingId": "RetroDECK_controller_switch_pro_simple.vdf", + "profileType": "template" + }, + "neptune": { + "title": "RetroDECK: Steam Deck - Neptune v.1.1b FULL", + "mappingId": "RetroDECK_controller_steamdeck_neptune_full.vdf", + "profileType": "template" + }, + "steamcontroller_gordon": { + "title": "RetroDECK: Steam Controller - Gordon v.1b", + "mappingId": "RetroDECK_controller_steam_controller_gordon_simple.vdf", + "profileType": "template" + } + }, + "imageProviderAPIs": { + "sgdb": { + "nsfw": false, + "humor": false, + "styles": [], + "stylesHero": [], + "stylesLogo": [], + "stylesIcon": [], + "imageMotionTypes": [ + "static" + ], + "sizes": [], + "sizesHero": [], + "sizesTall": null, + "sizesIcon": [] + } + }, + "defaultImage": { + "tall": null, + "long": null, + "hero": null, + "logo": null, + "icon": null + }, + "localImages": { + "tall": null, + "long": null, + "hero": null, + "logo": null, + "icon": null + }, + "parserId": "1725539138664815", + "version": 25 + } +] diff --git a/config/steam-rom-manager/userSettings.json b/config/steam-rom-manager/userSettings.json new file mode 100644 index 00000000..c5fd1dba --- /dev/null +++ b/config/steam-rom-manager/userSettings.json @@ -0,0 +1,40 @@ +{ + "fuzzyMatcher": { + "verbose": false, + "filterProviders": true + }, + "environmentVariables": { + "steamDirectory": "", + "userAccounts": [ + "steamlogin" + ], + "romsDirectory": "", + "retroarchPath": "", + "raCoresDirectory": "", + "localImagesDirectory": "" + }, + "previewSettings": { + "imageLoadStrategy": "loadLazy", + "retrieveCurrentSteamImages": true, + "disableCategories": false, + "deleteDisabledShortcuts": false, + "imageZoomPercentage": 30, + "hideUserAccount": false + }, + "enabledProviders": [ + "sgdb", + "steamCDN" + ], + "batchDownloadSize": 50, + "language": "en-US", + "theme": "Deck", + "offlineMode": false, + "navigationWidth": 0, + "clearLogOnTest": false, + "version": 10, + "dnsServers": [], + "autoUpdate": true, + "autoKillSteam": false, + "autoRestartSteam": false + } + \ No newline at end of file diff --git a/emu-configs/vita3k/config.yml b/config/vita3k/config.yml similarity index 98% rename from emu-configs/vita3k/config.yml rename to config/vita3k/config.yml index 5cca3861..40491aef 100644 --- a/emu-configs/vita3k/config.yml +++ b/config/vita3k/config.yml @@ -16,7 +16,7 @@ stretch_the_display_area: false show-live-area-screen: true icon-size: 64 archive-log: false -backend-renderer: OpenGL +backend-renderer: Vulkan gpu-idx: 0 high-accuracy: true resolution-multiplier: 1 @@ -127,4 +127,4 @@ ime-langs: - 4 tracy-advanced-profiling-modules: [] -... \ No newline at end of file +... diff --git a/emu-configs/vita3k/ux0/user/00/user.xml b/config/vita3k/ux0/user/00/user.xml similarity index 100% rename from emu-configs/vita3k/ux0/user/00/user.xml rename to config/vita3k/ux0/user/00/user.xml diff --git a/emu-configs/xemu/xemu.toml b/config/xemu/xemu.toml similarity index 100% rename from emu-configs/xemu/xemu.toml rename to config/xemu/xemu.toml diff --git a/emu-configs/yuzu/qt-config.ini b/config/yuzu/qt-config.ini similarity index 100% rename from emu-configs/yuzu/qt-config.ini rename to config/yuzu/qt-config.ini diff --git a/developer_toolbox/build_retrodeck_locally.sh b/developer_toolbox/build_retrodeck_locally.sh index b7b53a63..ddacc27a 100755 --- a/developer_toolbox/build_retrodeck_locally.sh +++ b/developer_toolbox/build_retrodeck_locally.sh @@ -2,15 +2,41 @@ # WARNING: run this script from the project root folder, not from here!! -# Check if script is running with elevated privileges -if [ "$EUID" -ne 0 ]; then - echo "The build might fail without some superuser permissions, please run me with sudo. Continue without sudo? [y/N,]" - read -r continue_without_sudo - if [[ "$continue_without_sudo" != "y" ]]; then - exit 1 +# Check if ccache is installed +if ! command -v ccache &> /dev/null; then + echo "Compiler cache (ccache) is not installed. Install it to be able to use the cache and speed up your builds" +else + read -rp "Do you want to use ccache? If you're unsure just say no [Y/n] " use_ccache_input + use_ccache_input=${use_ccache_input:-Y} + if [[ "$use_ccache_input" =~ ^[Yy]$ ]]; then + # Use ccache + export CC="ccache gcc" + export CXX="ccache g++" + export FLATPAK_BUILDER_CCACHE="--ccache" + else + echo "Proceeding without ccache" fi fi +read -rp "Do you want to use the hashes cache? If you're unsure just say no [Y/n] " use_cache_input +use_cache_input=${use_cache_input:-Y} +if [[ "$use_cache_input" =~ ^[Yy]$ ]]; then + export use_cache="true" +else + export use_cache="false" + rm -f "placeholders.cache" +fi + +echo "Do you want to clear the build cache?" +read -rp "Keeping the build cache can speed up the build process, but it might cause issues and should be cleared occasionally [y/N] " clear_cache_input +clear_cache_input=${clear_cache_input:-N} +if [[ "$clear_cache_input" =~ ^[Yy]$ ]]; then + # User chose to clear the build cache + echo "Clearing build cache..." + rm -rf "retrodeck-repo" "retrodeck-flatpak-cooker" ".flatpak-builder" + +fi + git submodule update --init --recursive export GITHUB_WORKSPACE="." @@ -18,20 +44,19 @@ export GITHUB_WORKSPACE="." # Initialize the Flatpak repo ostree init --mode=archive-z2 --repo=${GITHUB_WORKSPACE}/retrodeck-repo -cp net.retrodeck.retrodeck.appdata.xml net.retrodeck.retrodeck.appdata.xml.bak +# Backing up original manifest +cp net.retrodeck.retrodeck.metainfo.xml net.retrodeck.retrodeck.metainfo.xml.bak cp net.retrodeck.retrodeck.yml net.retrodeck.retrodeck.yml.bak automation_tools/install_dependencies.sh automation_tools/cooker_build_id.sh -automation_tools/pre_build_automation.sh +automation_tools/manifest_placeholder_replacer.sh automation_tools/cooker_flatpak_portal_add.sh # THIS SCRIPT IS BROKEN HENCE DISABLED FTM -# automation_tools/appdata_management.sh +# automation_tools/metainfo_management.sh automation_tools/flatpak_build_download_only.sh -automation_tools/flatpak_build_only.sh +automation_tools/flatpak_build_only.sh "${@}" automation_tools/flatpak_build_bundle.sh -rm -f net.retrodeck.retrodeck.appdata.xml -rm -f net.retrodeck.retrodeck.yml -cp net.retrodeck.retrodeck.appdata.xml.bak net.retrodeck.retrodeck.appdata.xml -cp net.retrodeck.retrodeck.yml.bak net.retrodeck.retrodeck.yml +mv -f net.retrodeck.retrodeck.metainfo.xml.bak net.retrodeck.retrodeck.metainfo.xml +mv -f net.retrodeck.retrodeck.yml.bak net.retrodeck.retrodeck.yml \ No newline at end of file diff --git a/developer_toolbox/cook_okonomiyaki.sh b/developer_toolbox/cook_okonomiyaki.sh new file mode 100755 index 00000000..1727986c --- /dev/null +++ b/developer_toolbox/cook_okonomiyaki.sh @@ -0,0 +1,34 @@ +#!/bin/bash + +# List of branches to pull and merge +branches=( + "cooker" + "feat/shadps4" +) + +# Get the current branch name +current_branch=$(git branch --show-current) + +# Check if the current branch contains 'feat/' and 'okonomiyaki' +if [[ $current_branch == feat/* && $current_branch == *okonomiyaki* ]]; then + echo "Current branch is $current_branch, proceeding with fetch, pull, and merge." + + # Iterate through the list of branches + for branch in "${branches[@]}"; do + echo "Fetching $branch..." + git fetch origin $branch + + echo "Pulling $branch..." + git pull origin $branch + + echo "Merging $branch into $current_branch..." + if ! git merge origin/$branch; then + echo "Merge conflict detected while merging $branch!" + echo "Please resolve the conflict, then run 'git merge --continue' to finish the merge." + exit 1 # Exit the script due to conflict + fi + done +else + echo "Current branch is not an okonomiyaki branch, quitting." + exit 1 +fi diff --git a/developer_toolbox/hooks/pre-commit b/developer_toolbox/hooks/pre-commit new file mode 100755 index 00000000..32a4a16b --- /dev/null +++ b/developer_toolbox/hooks/pre-commit @@ -0,0 +1,31 @@ +#!/bin/bash +# A pre-commit hook to lint json files if it they're edited + +lint_list=( + "config/retrodeck/reference_lists/features.json" + "config/retrodeck/reference_lists/bios.json" + ) + +for file in "${lint_list[@]}"; do + if git diff --cached --name-only | grep -q "$file"; then + # Run the linting script + echo "Linting $file..." + if ! bash "developer_toolbox/lint_json.sh" "$file"; then + echo "Linting failed for \"$(basename $file)\". Please fix the issues and try again." + exit 1 # Exit with a non-zero status to block the commit + fi + fi +done + +# Lint Manifest +# if git diff --cached --name-only | grep -q 'net.retrodeck.retrodeck.yml'; then +# # Run the linting script +# echo "Linting net.retrodeck.retrodeck.yml..." +# if ! bash developer_toolbox/lint_manifest.sh; then +# echo "Linting failed. Please fix the issues and try again." +# exit 1 # Exit with a non-zero status to block the commit +# fi +# fi + +# Continue with the commit if all checks passed +exit 0 diff --git a/developer_toolbox/inject_framework.sh b/developer_toolbox/inject_framework.sh index 65a16c35..d352c857 100755 --- a/developer_toolbox/inject_framework.sh +++ b/developer_toolbox/inject_framework.sh @@ -5,24 +5,45 @@ # This script is used to inject framework and config files inside a RetroDECK cooker installation # To apply the injected config you have to reset the targeted component from the Configurator # Please know what you're doing, if you need to undo this you need to completely uninstall and reinstall RetroDECK flatpak -# Please not that this may create a dirty situation where older files are still in place as the action is add and overwrite +# Please note that this may create a dirty situation where older files are still in place as the action is add and overwrite flatpak_user_installation="$HOME/.local/share/flatpak/app/net.retrodeck.retrodeck/current/active/files" flatpak_system_installation="/var/lib/flatpak/app/net.retrodeck.retrodeck/current/active/files" +force_user=false +force_system=false -if [ -d "$flatpak_user_installation" ]; then +# Parse arguments +while [[ "$#" -gt 0 ]]; do + case $1 in + --force-user) force_user=true ;; + --force-system) force_system=true ;; + *) echo "Unknown parameter: $1"; exit 1 ;; + esac + shift +done + +# Determine installation path +if [ "$force_user" = true ]; then + echo "Forcing user mode installation." + app="$flatpak_user_installation" +elif [ "$force_system" = true ]; then + echo "Forcing system mode installation." + app="$flatpak_system_installation" +elif [ -d "$flatpak_user_installation" ]; then echo "RetroDECK is installed in user mode, proceeding." app="$flatpak_user_installation" elif [ -d "$flatpak_system_installation" ]; then echo "RetroDECK is installed in system mode, proceeding." app="$flatpak_system_installation" else - echo "RetroDECK installation not found, quitting" + echo "RetroDECK installation not found, are you inside a flatpak? Quitting" exit 1 fi +# Copying files to the installation sudo cp -vfr "res/binding_icons" "$app/retrodeck/binding_icons" -sudo cp -vfr "emu-configs/"** "$app/retrodeck/emu-configs/" +sudo cp -vfr "config/"** "$app/retrodeck/config/" sudo cp -vfr "tools" "$app" sudo cp -vfr "retrodeck.sh" "$app/bin/" sudo cp -vfr "functions/"** "$app/libexec/" +sudo cp -vfr "config/gzdoom/gzdoom.sh" "$app/bin/" diff --git a/developer_toolbox/install_hooks.sh b/developer_toolbox/install_hooks.sh new file mode 100755 index 00000000..d2510ce0 --- /dev/null +++ b/developer_toolbox/install_hooks.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +mkdir -p .git/hooks +cp -f developer_toolbox/hooks/* .git/hooks \ No newline at end of file diff --git a/developer_toolbox/lint_json.sh b/developer_toolbox/lint_json.sh new file mode 100755 index 00000000..ae825c50 --- /dev/null +++ b/developer_toolbox/lint_json.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +json=$1 + +jq . $json > $json.tmp && mv -f $json.tmp $json \ No newline at end of file diff --git a/developer_toolbox/lint_manifest.sh b/developer_toolbox/lint_manifest.sh new file mode 100755 index 00000000..9147e142 --- /dev/null +++ b/developer_toolbox/lint_manifest.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +yamllint net.retrodeck.retrodeck.yml diff --git a/developer_toolbox/mime-populator.sh b/developer_toolbox/mime-populator.sh new file mode 100755 index 00000000..04a14ed8 --- /dev/null +++ b/developer_toolbox/mime-populator.sh @@ -0,0 +1,56 @@ +#!/bin/bash +# Input files +ES_SYSTEMS_FILE="../ES-DE/resources/systems/linux/es_systems.xml" +MIME_FILE="config/retrodeck/net.retrodeck.retrodeck.mime.xml" + +# List of extensions to ignore +IGNORED_EXTENSIONS=". .appimage cue" + +# Check if xmlstarlet is installed +if ! command -v xmlstarlet &> /dev/null; then + echo "Error: xmlstarlet is not installed." + echo "Please install it using your package manager (e.g., sudo apt install xmlstarlet)." + exit 1 +fi + +# Temporary files +EXTENSIONS_FILE=$(mktemp) + +# Extract extensions from the field in es_systems.xml +grep -oP '\K.*?(?=)' "$ES_SYSTEMS_FILE" | \ +tr ' ' '\n' | \ +awk '{print tolower($0)}' | \ +sort -u > "$EXTENSIONS_FILE" + +# Create a new MIME file with the correct base structure +cat > "$MIME_FILE" << EOF + + + + Retro Game +EOF + +# Add new elements to the MIME file +while IFS= read -r ext; do + # Skip ignored extensions + if [[ "$IGNORED_EXTENSIONS" =~ (^|[[:space:]])"$ext"($|[[:space:]]) ]]; then + echo "Skipping ignored extension: $ext" + continue + fi + + # Add the element for the extension + echo "Adding glob pattern for extension: $ext" + echo " " >> "$MIME_FILE" +done < "$EXTENSIONS_FILE" + +# Close the XML tags +echo " +" >> "$MIME_FILE" + +# Ensure proper formatting using xmlstarlet +xmlstarlet fo --indent-tab "$MIME_FILE" > "$MIME_FILE.tmp" && mv "$MIME_FILE.tmp" "$MIME_FILE" + +# Clean up temporary files +rm -f "$EXTENSIONS_FILE" + +echo "MIME file updated successfully at $MIME_FILE" \ No newline at end of file diff --git a/developer_toolbox/runtime_checker.sh b/developer_toolbox/runtime_checker.sh new file mode 100755 index 00000000..778ead51 --- /dev/null +++ b/developer_toolbox/runtime_checker.sh @@ -0,0 +1,44 @@ +#!/bin/bash + +# TODO: finish me + +# Set the organization name +ORG="RetroDECK" + +# Get all non-archived repositories of the organization +repos=$(curl -s "https://api.github.com/orgs/$ORG/repos?per_page=100" | jq -r '.[] | select(has("archived") and .archived == false) | .name') + +# Iterate over each repository +for repo in $repos; do + echo "Checking repository: $repo" + + # Get the files in the root of the repository + files=$(curl -s "https://api.github.com/repos/$ORG/$repo/contents" | jq -r '.[] | select(.type == "file" and (.path | index("/") == null)) | .name') + + # Check for .yml, .yaml, and .json files + for ext in yml yaml json; do + file=$(echo "$files" | grep -E "\.$ext$") + if [ -n "$file" ]; then + # Download the file content + content=$(curl -s "https://raw.githubusercontent.com/$ORG/$repo/main/$file") + + # Check if it contains "runtime" + if echo "$content" | grep -q "runtime"; then + echo "Found in $file" + app_id=$(echo "$content" | grep "app-id" | awk '{print $2}') + runtime=$(echo "$content" | grep "runtime" | awk '{print $2}') + runtime-version=$(echo "$content" | grep "runtime-version" | awk '{print $2}') + sdk=$(echo "$content" | grep "sdk" | awk '{print $2}') + + echo "Repository: $repo" + echo "File: $file" + echo "app-id: $app_id" + echo "runtime: $runtime" + echo "runtime-version: $runtime_version" + echo "sdk: $sdk" + echo "-------------------------" + break + fi + fi + done +done \ No newline at end of file diff --git a/emu-configs/defaults/retrodeck/presets/dolphin_presets.cfg b/emu-configs/defaults/retrodeck/presets/dolphin_presets.cfg deleted file mode 100644 index 0836e0ca..00000000 --- a/emu-configs/defaults/retrodeck/presets/dolphin_presets.cfg +++ /dev/null @@ -1,2 +0,0 @@ -config_file_format^dolphin -change^ask_to_exit^ConfirmStop^True^Interface^$dolphinconf^$emuconfigs/dolphin/Dolphin.ini diff --git a/emu-configs/defaults/retrodeck/presets/duckstation_presets.cfg b/emu-configs/defaults/retrodeck/presets/duckstation_presets.cfg deleted file mode 100644 index e4a2e66a..00000000 --- a/emu-configs/defaults/retrodeck/presets/duckstation_presets.cfg +++ /dev/null @@ -1,8 +0,0 @@ -config_file_format^duckstation -change^cheevos^Enabled^true^Cheevos^$duckstationconf^$emuconfigs/duckstation/settings.ini -change^cheevos^Username^$cheevos_username^Cheevos^$duckstationconf^$emuconfigs/duckstation/settings.ini -change^cheevos^Token^$cheevos_token^Cheevos^$duckstationconf^$emuconfigs/duckstation/settings.ini -change^cheevos^LoginTimestamp^$cheevos_login_timestamp^Cheevos^$duckstationconf^$emuconfigs/duckstation/settings.ini -change^cheevos_hardcore^ChallengeMode^true^Cheevos^$duckstationconf^$emuconfigs/duckstation/settings.ini -change^savestate_auto_save^SaveStateOnExit^true^Main^$duckstationconf^$emuconfigs/duckstation/settings.ini -change^ask_to_exit^ConfirmPowerOff^true^Main^$duckstationconf^$emuconfigs/duckstation/settings.ini diff --git a/emu-configs/defaults/retrodeck/presets/pcsx2_presets.cfg b/emu-configs/defaults/retrodeck/presets/pcsx2_presets.cfg deleted file mode 100644 index 134cd00d..00000000 --- a/emu-configs/defaults/retrodeck/presets/pcsx2_presets.cfg +++ /dev/null @@ -1,8 +0,0 @@ -config_file_format^pcsx2 -change^cheevos^Enabled^true^Achievements^$pcsx2conf^$emuconfigs/PCSX2/PCSX2.ini -change^cheevos^Username^$cheevos_username^Achievements^$pcsx2conf^$emuconfigs/PCSX2/PCSX2.ini -change^cheevos^Token^$cheevos_token^Achievements^$pcsx2conf^$emuconfigs/PCSX2/PCSX2.ini -change^cheevos^LoginTimestamp^$cheevos_login_timestamp^Achievements^$pcsx2conf^$emuconfigs/PCSX2/PCSX2.ini -change^cheevos_hardcore^ChallengeMode^true^Achievements^$pcsx2conf^$emuconfigs/PCSX2/PCSX2.ini -change^savestate_auto_save^SaveStateOnShutdown^true^EmuCore^$pcsx2conf^$emuconfigs/PCSX2/PCSX2.ini -change^ask_to_exit^ConfirmShutdown^true^UI^$pcsx2conf^$emuconfigs/PCSX2/PCSX2.ini diff --git a/emu-configs/defaults/retrodeck/presets/primehack_presets.cfg b/emu-configs/defaults/retrodeck/presets/primehack_presets.cfg deleted file mode 100644 index 3eb75c36..00000000 --- a/emu-configs/defaults/retrodeck/presets/primehack_presets.cfg +++ /dev/null @@ -1,2 +0,0 @@ -config_file_format^primehack -change^ask_to_exit^ConfirmStop^True^Interface^$primehackconf^$emuconfigs/primehack/Dolphin.ini diff --git a/emu-configs/defaults/retrodeck/presets/retroarch_presets.cfg b/emu-configs/defaults/retrodeck/presets/retroarch_presets.cfg deleted file mode 100644 index 2cbc3596..00000000 --- a/emu-configs/defaults/retrodeck/presets/retroarch_presets.cfg +++ /dev/null @@ -1,7 +0,0 @@ -config_file_format^retroarch-all -change^cheevos^cheevos_enable^true^^$raconf^$emuconfigs/retroarch/retroarch.cfg -change^cheevos^cheevos_token^$cheevos_token^^$raconf^$emuconfigs/retroarch/retroarch.cfg -change^cheevos^cheevos_username^$cheevos_username^^$raconf^$emuconfigs/retroarch/retroarch.cfg -change^cheevos_hardcore^cheevos_hardcore_mode_enable^true^^$raconf^$emuconfigs/retroarch/retroarch.cfg -change^quick_resume^savestate_auto_load^true^^$raconf^$emuconfigs/retroarch/retroarch.cfg -change^quick_resume^savestate_auto_save^true^^$raconf^$emuconfigs/retroarch/retroarch.cfg diff --git a/emu-configs/defaults/retrodeck/reference_lists/bios_checklist.cfg b/emu-configs/defaults/retrodeck/reference_lists/bios_checklist.cfg deleted file mode 100644 index a775d8bc..00000000 --- a/emu-configs/defaults/retrodeck/reference_lists/bios_checklist.cfg +++ /dev/null @@ -1,155 +0,0 @@ -panafz1.bin^^f47264dd47fe30f73ab3c010015c155b^3DO^Panasonic FZ-1 -panafz10.bin^^51f2f43ae2f3508a14d9f56597e2d3ce^3DO^Panasonic FZ-10 -panafz10-norsa.bin^^1477bda80dc33731a65468c1f5bcbee9^3DO^Panasonic FZ-10 [RSA Patch] -panafz10e-anvil.bin^^a48e6746bd7edec0f40cff078f0bb19f^3DO^Panasonic FZ-10-E [Anvil] -panafz10e-anvil-norsa.bin^^cf11bbb5a16d7af9875cca9de9a15e09^3DO^Panasonic FZ-10-E [Anvil RSA Patch] -panafz1j.bin^^a496cfdded3da562759be3561317b605^3DO^Panasonic FZ-1J -panafz1j-norsa.bin^^f6c71de7470d16abe4f71b1444883dc8^3DO^Panasonic FZ-1J [RSA Patch] -goldstar.bin^^8639fd5e549bd6238cfee79e3e749114^3DO^Goldstar GDO-101M -sanyotry.bin^^35fa1a1ebaaeea286dc5cd15487c13ea^3DO^Sanyo IMP-21J TRY -3do_arcade_saot.bin^^8970fc987ab89a7f64da9f8a8c4333ff^3DO^Shootout At Old Tucson -panafz1-kanji.bin^^b8dc97f778a6245c58e064b0312e8281^3DO^Panasonic FZ-1 Kanji ROM (Font ROM: required for some Japanese games. Optional otherwise.) -panafz10ja-anvil-kanji.bin^^428577250f43edc902ea239c50d2240d^3DO^Panasonic FZ-10JA Kanji ROM (Font ROM: required for some Japanese games. Optional otherwise.) -panafz1j-kanji.bin^^c23fb5d5e6bb1c240d02cf968972be37^3DO^Panasonic FZ-1J Kanji ROM (Font ROM: required for some Japanese games. Optional otherwise.) -neogeo.zip^^00dad01abdbf8ea9e79ad2fe11bdb182^Arcade (FinalBurn Neo)^Neo Geo BIOS (Required for this system) -neocdz.zip^^c733b4b7bd30fa849874d96c591c8639^Arcade (FinalBurn Neo)^Neo Geo CDZ BIOS (Required for this system) -decocass.zip^^b7e1189b341bf6a8e270017c096d21b0^Arcade (FinalBurn Neo)^DECO Cassette System BIOS (Required for this system) -isgsm.zip^^4a56d56e2219c5e2b006b66a4263c01c^Arcade (FinalBurn Neo)^ISG Selection Master Type 2006 System BIOS (Required for this system) -midssio.zip^^5904b0de768d1d506e766aa7e18994c1^Arcade (FinalBurn Neo)^Midway SSIO Sound Board Internal ROM (Required for this system) -nmk004.zip^^bfacf1a68792d5348f93cf724d2f1dda^Arcade (FinalBurn Neo)^NMK004 Internal ROM (Required for this system) -pgm.zip^^87cc944eef4c671aa2629a8ba48a08e0^Arcade (FinalBurn Neo)^PGM System BIOS (Required for this system) -skns.zip^^3f956c4e7008804cb47cbde49bd5b908^Arcade (FinalBurn Neo)^Super Kaneko Nova System BIOS (Required for this system) -ym2608.zip^^79ae0d2bb1901b7e606b6dc339b79a97^Arcade (FinalBurn Neo)^YM2608 Internal ROM (Required for this system) -cchip.zip^^df6f8a3d83c028a5cb9f2f2be60773f3^Arcade (FinalBurn Neo)^C-Chip Internal ROM (Required for this system) -bubsys.zip^^f81298afd68a1a24a49a1a2d9f087964^Arcade (FinalBurn Neo)^Bubble System BIOS (Required for this system) -namcoc69.zip^^Unknown^Arcade (FinalBurn Neo)^Namco C69 BIOS (Required for this system) -namcoc70.zip^^Unknown^Arcade (FinalBurn Neo)^Namco C70 BIOS (Required for this system) -namcoc75.zip^^Unknown^Arcade (FinalBurn Neo)^Namco C75 BIOS (Required for this system) -coleco.zip^^Unknown^Arcade (FinalBurn Neo)^ColecoVision System BIOS (Required for this system) -fdsbios.zip^^Unknown^Arcade (FinalBurn Neo)^FDS System BIOS (Required for this system) -msx.zip^^Unknown^Arcade (FinalBurn Neo)^MSX1 System BIOS (Required for this system) -ngp.zip^^Unknown^Arcade (FinalBurn Neo)^NeoGeo Pocket BIOS (Required for this system) -spectrum.zip^^Unknown^Arcade (FinalBurn Neo)^ZX Spectrum BIOS (Required for this system) -spec128.zip^^Unknown^Arcade (FinalBurn Neo)^ZX Spectrum 128 BIOS (Required for this system) -spec1282a.zip^^Unknown^Arcade (FinalBurn Neo)^ZX Spectrum 128 +2a BIOS (Required for this system) -channelf.zip^^Unknown^Arcade (FinalBurn Neo)^Fairchild Channel F BIOS (Required for this system) -5200.rom^^281f20ea4320404ec820fb7ec0693b38^Atari 8-bit computer systems and 5200^5200 BIOS (Required) -ATARIXL.ROM^^06daac977823773a3eea3422fd26a703^Atari 8-bit computer systems and 5200^Atari XL/XE OS BIOS (Required for these systems) -ATARIBAS.ROM^^0bac0c6a50104045d902df4503a4c30b^Atari 8-bit computer systems and 5200^BASIC interpreter BIOS (Required for these systems) -ATARIOSA.ROM^^eb1f32f5d9f382db1bbfb8d7f9cb343a^Atari 8-bit computer systems and 5200^Atari 400/800 PAL BIOS (Required for these systems) -ATARIOSB.ROM^^a3e8d617c95d08031fe1b20d541434b2^Atari 8-bit computer systems and 5200^BIOS for Atari 400/800 NTSC (Required for these systems) -tos.img^^c1c57ce48e8ee4135885cee9e63a68a2^Atari ST/STE/TT/Falcon^TOS Boot Image (Required) -lynxboot.img^^fcd403db69f54290b51035d82f835e7b^Atari Lynx^Lynx Boot Image (Required) -o2rom.bin^^562d5ebf9e030a40d6fabfc2f33139fd^Magnavox Odyssey2 / Phillips Videopac+^Odyssey2 BIOS - G7000 model (Required) -c52.bin^^f1071cdb0b6b10dde94d3bc8a6146387^Magnavox Odyssey2 / Phillips Videopac+^Videopac+ French BIOS - G7000 model (Required for Videopac games) -g7400.bin^^c500ff71236068e0dc0d0603d265ae76^Magnavox Odyssey2 / Phillips Videopac+^Videopac+ European BIOS - G7400 model (Required for Videopac games) -jopac.bin^^279008e4a0db2dc5f1c048853b033828^Magnavox Odyssey2 / Phillips Videopac+^Videopac+ French BIOS - G7400 model (Required for Videopac games) -exec.bin^^62e761035cb657903761800f4437b8af^Mattel Intellivision^Executive ROM (Required) -grom.bin^^0cd5946c6473e42e8e4c2137785e427f^Mattel Intellivision^Graphics ROM (Required) -MSX.ROM^^364a1a579fe5cb8dba54519bcfcdac0d^Microsoft MSX^MSX BIOS (Required) -MSX2.ROM^^ec3a01c91f24fbddcbcab0ad301bc9ef^Microsoft MSX^MSX2 BIOS (Required) -MSX2EXT.ROM^^2183c2aff17cf4297bdb496de78c2e8a^Microsoft MSX^MSX2 ExtROM (Required) -MSX2P.ROM^^847cc025ffae665487940ff2639540e5^Microsoft MSX^MSX2+ BIOS (Required) -MSX2PEXT.ROM^^7c8243c71d8f143b2531f01afa6a05dc^Microsoft MSX^MSX2+ ExtROM (Required) -DISK.ROM^^80dcd1ad1a4cf65d64b7ba10504e8190^Microsoft MSX^DiskROM/BDOS -FMPAC.ROM^^6f69cc8b5ed761b03afd78000dfb0e19^Microsoft MSX^FMPAC BIOS -MSXDOS2.ROM^^6418d091cd6907bbcf940324339e43bb^Microsoft MSX^MSX-DOS 2 -PAINTER.ROM^^403cdea1cbd2bb24fae506941f8f655e^Microsoft MSX^Yamaha Painter -KANJI.ROM^^febe8782b466d7c3b16de6d104826b34^Microsoft MSX^Kanji Font -mcpx_1.0.bin^^d49c52a4102f6df7bcf8d0617ac475ed^Microsoft XBOX^Used by XEMU emulator -Complex.bin^^Unknown^Microsoft XBOX^Used by XEMU emulator -Complex_4627v1.03.bin^^Unknown^Microsoft XBOX^Used by XEMU emulator -Complex_4627.bin^^Unknown^Microsoft XBOX^Used by XEMU emulator -syscard3.pce^^38179df8f4ac870017db21ebcbf53114^NEC PC Engine / CD^Super CD-ROM2 System V3.xx (Required) -syscard2.pce^^3cdd6614a918616bfc41c862e889dd79^NEC PC Engine / CD^CD-ROM System V2.xx -syscard1.pce^^2b7ccb3d86baa18f6402c176f3065082^NEC PC Engine / CD^CD-ROM System V1.xx -gexpress.pce^^6d2cb14fc3e1f65ceb135633d1694122^NEC PC Engine / CD^Game Express CD Card -font.bmp^np2kai/^7da1e5b7c482d4108d22a5b09631d967^NEC PC-98 (Neko Project II Kai)^Needed to display text (Required) -FONT.ROM^np2kai/^2af6179d7de4893ea0b705c00e9a98d6^NEC PC-98 (Neko Project II Kai)^Alt font file (Required if normal font file is missing) -bios.rom^np2kai/^e246140dec5124c5e404869a84caefce^NEC PC-98 (Neko Project II Kai)^BIOS file (Required) -itf.rom^np2kai/^e9fc3890963b12cf15d0a2eea5815b72^NEC PC-98 (Neko Project II Kai)^BIOS file (Required) -sound.rom^np2kai/^caf90f22197aed6f14c471c21e64658d^NEC PC-98 (Neko Project II Kai)^BIOS file (Required) -bios9821.rom^np2kai/^Unknown^NEC PC-98 (Neko Project II Kai)^Optional BIOS file -d8000.rom^np2kai/^Unknown^NEC PC-98 (Neko Project II Kai)^Optional BIOS file -2608_BD.WAV^np2kai/^d94546e70f17fd899be8df3544ab6cbb^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample -2608_SD.WAV^np2kai/^d71004351c8bbfdad53b18222c061d49^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample -2608_TOP.WAV^np2kai/^593cff6597ab9380d822b8f824fd2c28^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample -2608_HH.WAV^np2kai/^08c54a0c1f774a5538a848a6665a34b4^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample -2608_TOM.WAV^np2kai/^96a4ead13f364734f79b0c58af2f0e1f^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample -2608_RIM.WAV^np2kai/^465ea0768b27da404aec45dfc501404b^NEC PC-98 (Neko Project II Kai)^YM2608 RYTHM sample -n88.rom^^4f984e04a99d56c4cfe36115415d6eb8^NEC PC-8000 / PC-8800 series (QUASI88)^BIOS File (Required) -n88n.rom^^2ff07b8769367321128e03924af668a0^NEC PC-8000 / PC-8800 series (QUASI88)^Required for PC-8000 series emulation. (N BASIC mode) -disk.rom^^793f86784e5608352a5d7f03f03e0858^NEC PC-8000 / PC-8800 series (QUASI88)^Required for loading disk images -n88knj1.rom^^d81c6d5d7ad1a4bbbd6ae22a01257603^NEC PC-8000 / PC-8800 series (QUASI88)^Required for viewing kanji -n88_0.rom^^d675a2ca186c6efcd6277b835de4c7e5^NEC PC-8000 / PC-8800 series (QUASI88)^Required for viewing kanji -n88_1.rom^^e844534dfe5744b381444dbe61ef1b66^NEC PC-8000 / PC-8800 series (QUASI88)^Optional BIOS file -n88_2.rom^^6548fa45061274dee1ea8ae1e9e93910^NEC PC-8000 / PC-8800 series (QUASI88)^Optional BIOS file -n88_3.rom^^fc4b76a402ba501e6ba6de4b3e8b4273^NEC PC-8000 / PC-8800 series (QUASI88)^Optional BIOS file -neocd_f.rom^^8834880c33164ccbe6476b559f3e37de^Neo Geo CD^Front Loader BIOS (At least 1 required) -neocd_sf.rom^^043d76d5f0ef836500700c34faef774d^Neo Geo CD^Front Loader BIOS (SMKDAN 0.7b DEC 2010) (At least 1 required) -neocd_t.rom^^de3cf45d227ad44645b22aa83b49f450^Neo Geo CD^Top Loader BIOS (At least 1 required) -neocd_st.rom^^f6325a33c6d63ea4b9162a3fa8c32727^Neo Geo CD^Top Loader BIOS (SMKDAN 0.7b DEC 2010) (At least 1 required) -neocd_z.rom^^11526d58d4c524daef7d5d677dc6b004^Neo Geo CD^CDZ BIOS (At least 1 required) -neocd_sz.rom^^971ee8a36fb72da57aed01758f0a37f5^Neo Geo CD^CDZ BIOS (SMKDAN 0.7b DEC 2010) (At least 1 required) -front-sp1.bin^^5c2366f25ff92d71788468ca492ebeca^Neo Geo CD^Front Loader BIOS (MAME) (At least 1 required) -top-sp1.bin^^122aee210324c72e8a11116e6ef9c0d0^Neo Geo CD^Top Loader BIOS (MAME) (At least 1 required) -neocd.bin^^f39572af7584cb5b3f70ae8cc848aba2^Neo Geo CD^CDZ BIOS (MAME) (At least 1 required) -uni-bioscd.rom^^08ca8b2dba6662e8024f9e789711c6fc^Neo Geo CD^Universe BIOS CD 3.3 -gb_bios.bin^^32fbbd84168d3482956eb3c5051637f5^Game Boy^Optional BIOS file (used to display the Nintendo logo at boot) -gbc_bios.bin^^dbfce9db9deaa2567f6a84fde55f9680^Game Boy Color^Optional BIOS file (used to display the Nintendo logo at boot) -gba_bios.bin^^a860e8c0b6d573d191e4ec7db1b1e4f6^Game Boy Advance^Optional BIOS file (used to display the Nintendo logo at boot) -aes_keys.txt^citra/sysdata/^Unknown^Nintendo 3DS^Decryption keys used by Citra emulator -bios7.bin^^df692a80a5b1bc90728bc3dfc76cd948^Nintendo DS^Used by MelonDS emulator (Required, see Wiki) -bios9.bin^^a392174eb3e572fed6447e956bde4b25^Nintendo DS^Used by MelonDS emulator (Required, see Wiki) -firmware.bin^^e45033d9b0fa6b0de071292bba7c9d13^Nintendo DS^Used by MelonDS emulator (Required, see Wiki) -disksys.rom^^ca30b50f880eb660a320674ed365ef7a^Nintendo NES / Famicom^Family Computer Disk System BIOS - Required for Family Computer Disk System emulation -bios.min^^1e4fb124a3a886865acb574f388c803d^Nintendo Pokemon Mini^Pokémon Mini BIOS - Optional -prod.keys^switch/keys/^Unknown^Nintendo Switch^A file for Switch emulation in Ryujinx (Required) -title.keys^switch/keys/^Unknown^Nintendo Switch^A file for Switch emulation in Ryujinx (Required) -pico8^pico-8/^Unknown^PICO-8^The PICO-8 executable (Required) -pico8.dat^pico-8/^Unknown^PICO-8^A PICO-8 system file (Required) -pico8_dyn^pico-8/^Unknown^PICO-8^A PICO-8 system file (Required) -bios_CD_E.bin^^e66fa1dc5820d254611fdcdba0662372^Sega CD^MegaCD EU BIOS (At least 1 required) -bios_CD_U.bin^^2efd74e3232ff260e371b99f84024f7f^Sega CD^SegaCD US BIOS (At least 1 required) -bios_CD_J.bin^^278a9397d192149e84e820ac621a8edd^Sega CD^MegaCD JP BIOS (At least 1 required) -dc_boot.bin^dc/^e10c53c2f8b90bab96ead2d368858623^Sega Dreamcast^Dreamcast BIOS (Required) -naomi.zip^dc/^0ea6d3650ce4a7608a589e5df21a1f2f^Sega Dreamcast^Naomi BIOS -naomi2.zip^dc/^9b85e0de6ef359e5006c9b79a5a266b0^Sega Dreamcast^Naomi BIOS -naomi_boot.bin^dc/^96cb91c4a0bedd86e5a6965cfe6c0148^Sega Dreamcast^Naomi BIOS -hod2bios.zip^dc/^629bb0552463ba116ccf23d9a468a9f0^Sega Dreamcast^Naomi The House of the Dead 2 BIOS -f355dlx.zip^dc/^4b5bb177cbd760477598f85531dbe7fd^Sega Dreamcast^Naomi Ferrari F355 Challenge Deluxe BIOS -f355bios.zip^dc/^882f2c1cf8ec030955c48fe6aa6929ea^Sega Dreamcast^Naomi Ferrari F355 Challenge Twin/Deluxe BIOS -airlbios.zip^dc/^09ef4b8dea6cd8db2de1c13d510a6a87^Sega Dreamcast^Naomi Airline Pilots Deluxe BIOS -awbios.zip^dc/^b2f122e091da223beb824efafc3d6a36^Sega Dreamcast^Naomi Atomiswave BIOS -bios.sms^^840481177270d5642a14ca71ee72844c^Sega Master System / GameGear^Master System BIOS -BIOS.col^^2c66f5911e5b42b8ebe113403548eee7^Sega Master System / GameGear^Colecovision BIOS -sega_101.bin^^85ec9ca47d8f6807718151cbcca8b964^Sega Saturn^Saturn JP BIOS (At least 1 required) -mpr-17933.bin^^3240872c70984b6cbfda1586cab68dbe^Sega Saturn^Saturn US.mdEU BIOS (At least 1 required) -mpr-18811-mx.ic1^^255113ba943c92a54facd25a10fd780c^Sega Saturn^The King of Fighters 95 ROM Cartridge (Required for this game) -mpr-19367-mx.ic1^^1cd19988d1d72a3e7caa0b73234c96b4^Sega Saturn^Ultraman: Hikari no Kyojin Densetsu ROM Cartridge (Required for this game) -iplrom.dat^keropi/^7fd4caabac1d9169e289f0f7bbf71d8e^Sharp X68000^X68000 BIOS (Required) -cgrom.dat^keropi/^cb0a5cfcf7247a7eab74bb2716260269^Sharp X68000^Font file (Required) -iplrom30.dat^keropi/^f373003710ab4322642f527f567e020a^Sharp X68000^X68000 BIOS 2 -iplromco.dat^keropi/^cc78d4f4900f622bd6de1aed7f52592f^Sharp X68000^X68000 BIOS 3 -iplromxv.dat^keropi/^0617321daa182c3f3d6f41fd02fb3275^Sharp X68000^X68000 BIOS 4 -psxonpsp660.bin^^c53ca5908936d412331790f4426c6c33^Sony PSX^PS1 BIOS (At least 1 required) -scph5500.bin^^8dd7d5296a650fac7319bce665a6a53c^Sony PSX^PS1 JP BIOS (At least 1 required) -scph5501.bin^^490f666e1afb15b7362b406ed1cea246^Sony PSX^PS1 US BIOS (At least 1 required) -scph5502.bin^^32736f17079d0b2b7024407c39bd3050^Sony PSX^PS1 EU BIOS (At least 1 required) -scph7001.bin^^1e68c231d0896b7eadcad1d7d8e76129^Sony PSX^PS1 BIOS (At least 1 required) -scph7002.bin^^b9d9a0286c33dc6b7237bb13cd46fdee^Sony PSX^PS1 BIOS (At least 1 required) -scph7003.bin^^490f666e1afb15b7362b406ed1cea246^Sony PSX^PS1 BIOS (At least 1 required) -scph7502.bin^^b9d9a0286c33dc6b7237bb13cd46fdee^Sony PSX^PS1 BIOS (At least 1 required) -scph9002(7502).bin^^b9d9a0286c33dc6b7237bb13cd46fdee^Sony PSX^PS1 BIOS (At least 1 required) -ps1_rom.bin^^81bbe60ba7a3d1cea1d48c14cbcc647b^Sony PSX^PS1 BIOS (At least 1 required) -ps2-0200a-20040614.bin^^d333558cc14561c1fdc334c75d5f37b7^Sony PS2^PS2 US BIOS (At least 1 required) -ps2-0200e-20040614.bin^^dc752f160044f2ed5fc1f4964db2a095^Sony PS2^PS2 EU BIOS (At least 1 required) -ps2-0200j-20040614.bin^^0eee5d1c779aa50e94edd168b4ebf42e^Sony PS2^PS2 JP BIOS (At least 1 required) -128p-0.rom^fuse/^a249565f03b98d004ee7f019570069cd^ZX Spectrum^Pentagon 128K/512K/1024 ROM (Required) -128p-1.rom^fuse/^6e09e5d3c4aef166601669feaaadc01c^ZX Spectrum^Pentagon 128K/512K/1024 ROM (Required) -trdos.rom^fuse/^0da70a5d2a0e733398e005b96b7e4ba6^ZX Spectrum^Pentagon 128K/512K/1024 ROM (Required) -gluck.rom^fuse/^d5869034604dbfd2c1d54170e874fd0a^ZX Spectrum^Pentagon 512K/1024 ROM (Required) -256s-0.rom^fuse/^b9fda5b6a747ff037365b0e2d8c4379a^ZX Spectrum^Scorpion 256K ROM (Required) -256s-1.rom^fuse/^643861ad34831b255bf2eb64e8b6ecb8^ZX Spectrum^Scorpion 256K ROM (Required) -256s-2.rom^fuse/^d8ad507b1c915a9acfe0d73957082926^ZX Spectrum^Scorpion 256K ROM (Required) -256s-3.rom^fuse/^ce0723f9bc02f4948c15d3b3230ae831^ZX Spectrum^Scorpion 256K ROM (Required) \ No newline at end of file diff --git a/emu-configs/defaults/retrodeck/reference_lists/compression_targets.cfg b/emu-configs/defaults/retrodeck/reference_lists/compression_targets.cfg deleted file mode 100644 index 4ae00365..00000000 --- a/emu-configs/defaults/retrodeck/reference_lists/compression_targets.cfg +++ /dev/null @@ -1,43 +0,0 @@ -[chd] -3do -amigacd32 -dreamcast -megacd -neogeocd -pcenginecd -pcfx -psp -psx -ps2 -saturn -saturnjp -segacd -tg-cd -[rvz] -gc -wii -[zip] -atari2600 -atari5200 -atari7800 -atari800 -atarijaguar -atarilynx -atarist -gamegear -gb -gba -gbc -genesis -mastersystem -n64 -nds -nes -ngp -ngpc -sega32x -sega32xjp -sega32xna -snes -snesna -tg16 diff --git a/emu-configs/defaults/retrodeck/reference_lists/easter_egg_checklist.cfg b/emu-configs/defaults/retrodeck/reference_lists/easter_egg_checklist.cfg deleted file mode 100644 index e70139e3..00000000 --- a/emu-configs/defaults/retrodeck/reference_lists/easter_egg_checklist.cfg +++ /dev/null @@ -1,6 +0,0 @@ -1201^1231^0000^2359^rd-xmas-splash.svg -0209^0212^0000^2359^rd-lunar-dragon-splash.svg -0214^0214^0001^2359^rd-valentines-splash.svg -0304^0304^0000^2359^rd-gm-bday-splash.svg -0317^0317^0000^2359^rd-stpatricks-splash.svg -0429^0505^0000^2359^rd-kodomo-golden.svg diff --git a/emu-configs/defaults/retrodeck/reference_lists/finit_options_list.cfg b/emu-configs/defaults/retrodeck/reference_lists/finit_options_list.cfg deleted file mode 100644 index fdf9f19b..00000000 --- a/emu-configs/defaults/retrodeck/reference_lists/finit_options_list.cfg +++ /dev/null @@ -1,3 +0,0 @@ -true^RetroDECK Steam Controller Profiles Install^Install RetroDECK Steam Input profiles to Steam - Recommended^rd_controller_profile -false^RPCS3 Firmware Install^Install firmware needed for PS3 emulation^rpcs3_firmware -false^Vita3K Firmware Install^Install firmware needed for Vita3K emulation^vita3k_firmware diff --git a/emu-configs/defaults/retrodeck/reference_lists/helper_files_list.cfg b/emu-configs/defaults/retrodeck/reference_lists/helper_files_list.cfg deleted file mode 100644 index 10630974..00000000 --- a/emu-configs/defaults/retrodeck/reference_lists/helper_files_list.cfg +++ /dev/null @@ -1,20 +0,0 @@ -# The proper format of this file is -# FILE NAME^DESTINATION -# The destination can be an internal variable name like $roms_folder if needed -# The FILE name can have spaces in it, but the DESTINATION cannot, even in variable form - -# mods -how-to-install-dolphin-mods.txt^$mods_folder/Dolphin -how-to-install-primehack-mods.txt^$mods_folder/Primehack - -# textures -how-to-install-Mesen-textures.txt^$texture_packs_folder/RetroArch-Mesen -how-to-install-PPSSPP-textures.txt^$texture_packs_folder/PPSSPP -how-to-install-PCSX2-textures.txt^$texture_packs_folder/PCSX2 -how-to-install-Mupen64Plus-textures.txt^$texture_packs_folder/RetroArch-Mupen64Plus/cache -how-to-install-Mupen64Plus-textures.txt^$texture_packs_folder/RetroArch-Mupen64Plus/hires_texture -how-to-install-Duckstation-textures.txt^$texture_packs_folder/Duckstation - -# emulators -how-to-install-psvita-games.txt^$roms_folder/psvita -Install-firmware-through-Ryujinx.txt^$bios_folder/switch/firmware diff --git a/emu-configs/defaults/retrodeck/reference_lists/incompatible_presets.cfg b/emu-configs/defaults/retrodeck/reference_lists/incompatible_presets.cfg deleted file mode 100644 index 417ab816..00000000 --- a/emu-configs/defaults/retrodeck/reference_lists/incompatible_presets.cfg +++ /dev/null @@ -1,2 +0,0 @@ -borders:widescreen -widescreen:borders diff --git a/emu-configs/defaults/retrodeck/reference_lists/pretty_system_names.cfg b/emu-configs/defaults/retrodeck/reference_lists/pretty_system_names.cfg deleted file mode 100644 index 309b38fa..00000000 --- a/emu-configs/defaults/retrodeck/reference_lists/pretty_system_names.cfg +++ /dev/null @@ -1,23 +0,0 @@ -cemu^Cemu (Nintendo Wii U Standalone Emulator) -citra^Citra (Nintendo 3DS Standalone Emulator, via Ponzu) -dolphin^Dolphin (Nintendo GameCube / Wii Standalone Emulator) -duckstation^Duckstation (Sony Playstation Standalone Emulator) -gb^Nintendo GameBoy -gba^Nintendo GameBoy Advance -gbc^Nintendo GameBoy Color -genesis^Sega Genesis/Master System -gg^Sega GameGear -mame^MAME (Multi-Arcade Machine Standalone Emulator) -melonds^MelonDS (Nintendo DS Standalone Emulator) -n64^Nintendo 64 -pcsx2^PCSX2 (Sony Playstation 2 Standalone Emulator) -ppsspp^PPSSPP (Sony PSP Standalone Emulator) -primehack^Primehack (Metroid Prime Standalone Emulator) -psx_ra^Sony Playstation (RetroArch Core) -retroarch^RetroArch (Multi-emulator Frontend) -rpcs3^RPCS3 (Sony Playstation 3 Standalone Emulator) -ryujinx^Ryujinx (Nintendo Switch Standalone Emulator) -snes^Nintendo Super Nintendo -vita3k^Vita3K (Sony PSVita Standalone Emulator) -xemu^XEMU (Microsoft Xbox Standalone Emulator) -yuzu^Yuzu (Nintendo Switch Standalone Emulator, via Ponzu) diff --git a/emu-configs/defaults/retrodeck/reference_lists/retrodeck_credits.txt b/emu-configs/defaults/retrodeck/reference_lists/retrodeck_credits.txt deleted file mode 100644 index 65e61d59..00000000 --- a/emu-configs/defaults/retrodeck/reference_lists/retrodeck_credits.txt +++ /dev/null @@ -1,83 +0,0 @@ -The Team - ---- XargonWan --- - -About: -RetroDECK project founder and also one of the founding members of AmberELEC. - -Pizza War: -Grand General of the IPL (Italian Pizza Legion) also known as the Napoletanan Fist in the internal pizza war. - ---- Lazorne --- - -About: -Community management/outreach, testing, documentation, emulator configurations, Steam Input and feature request / issue management. - -Pizza War: -Meme Lord of the Wiki and also the cult leader of the NPC (The Nordic Pizza Cult) also called by the others as "The Pizza Heresy Cult" or "Harbingers of Pizza Chaos". Instigator of the internal pizza war. - ---- jiannazzone --- - -About: -Web Development, Community management/outreach, testing, documentation. - -Pizza War: -Pizza War refugee. - ---- IceNine451 --- - -About: -Creator of the RetroDECK configurator, bash genius, the RetroDECK Framework and various cool things. - -Pizza War: -Freedom loving leader of the MCCP (Murican Cheese Crust Patriots) in the internal pizza war. - ---- Lx32 --- - -About: -Develops various new features, functions and tools. - -Pizza War: -1st Commander of the IPL (Italian Pizza Legion) nicknamed Paladin al Taglio in the internal pizza war. - ---- WallK --- - -About: -Checks GODOT and other things. - -Pizza War: -Pizza Mercenary that fights for all sides. - ---- dottormac --- - -About: -Does bleeding edge cooker testing (lives in the danger zone), some feature suggestions and design. - -Pizza War: -2nd Commander of the IPL (Italian Pizza Legion) nicknamed The Wrath of Siciliana in the internal pizza war. - - ---- MonkeyX --- - -About: -Godot, Emulators and more things! - -Pizza War: -Wartime Pizza peace broker. - - ---- Special Thanks --- - -- Our Patreon and donors that keeps the build servers running and provide feedback. - -- All related emulation, front end and software projects that we are dependent on. - -- All people that have put both time and money into emulation projects. - -- All the users who help others with support, guidance and good spirit. - -- All the users who help with testing and reporting issues. - -- All the community creators who creates various art and assets for the community. - -You are all the ones that makes this project possible. diff --git a/emu-configs/defaults/retrodeck/reference_lists/supported_emulators.cfg b/emu-configs/defaults/retrodeck/reference_lists/supported_emulators.cfg deleted file mode 100644 index 17f51083..00000000 --- a/emu-configs/defaults/retrodeck/reference_lists/supported_emulators.cfg +++ /dev/null @@ -1,15 +0,0 @@ -cemu^/app/bin/Cemu-wrapper -citra^/var/data/ponzu/Citra/bin/citra-qt -dolphin^/app/bin/dolphin-emu -duckstation^/app/bin/duckstation-qt -mame^/app/bin/mame -melonds^/app/bin/melonds -pcsx2^/app/bin/pcsx2-qt -ppsspp^/app/bin/PPSSPPSDL -primehack^/app/bin/primehack-wrapper -retroarch^/app/bin/retroarch -rpcs3^/app/bin/rpcs3 -ryujinx^/app/bin/Ryujinx.sh -vita3k^/app/bin/Vita3K -xemu^/app/bin/xemu -yuzu^/var/data/ponzu/Yuzu/bin/yuzu diff --git a/emu-configs/defaults/retrodeck/reference_lists/zip_compressable_extensions.cfg b/emu-configs/defaults/retrodeck/reference_lists/zip_compressable_extensions.cfg deleted file mode 100644 index 72966ab7..00000000 --- a/emu-configs/defaults/retrodeck/reference_lists/zip_compressable_extensions.cfg +++ /dev/null @@ -1,63 +0,0 @@ -.32x -.68k -.NDS -.a26 -.a52 -.a78 -.abs -.agb -.atr -.atx -.bin -.bml -.bms -.bs -.bsx -.cas -.cdm -.cgb -.cof -.col -.dim -.dmg -.dx2 -.fds -.fig -.gb -.gba -.gbc -.gd3 -.gd7 -.gen -.gg -.ipf -.j64 -.jag -.lnx -.md -.mdx -.mgd -.msa -.nds -.nes -.ngc -.o -.pce -.prg -.rom -.sfc -.sg -.sgb -.sgd -.smc -.smd -.sms -.st -.st -.stx -.swc -.unf -.unif -.xex -.xfd -.z64 diff --git a/emu-configs/rpcs3/GuiConfigs/CurrentSettings.ini b/emu-configs/rpcs3/GuiConfigs/CurrentSettings.ini deleted file mode 100644 index 0ef87f08..00000000 --- a/emu-configs/rpcs3/GuiConfigs/CurrentSettings.ini +++ /dev/null @@ -1,51 +0,0 @@ -[Config] -geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x1P\0\0\0}\0\0\x5\xb9\0\0\x3I\0\0\x1P\0\0\0\x9a\0\0\x5\xb9\0\0\x3I\0\0\0\0\0\0\0\0\a\x80\0\0\x1P\0\0\0\x9a\0\0\x5\xb9\0\0\x3I) - -[GameList] -hidden_list=@Invalid() -iconColor=@Variant(\0\0\0\x43\x1\xff\xff\xf0\xf0\xf0\xf0\xf0\xf0\0\0) -marginFactor=0.09 -textFactor=2 - -[Localization] -language=en - -[Logger] -ANSI_code=true -ERR_stack=true -level=4 -stack=true - -[Meta] -checkUpdateStart=false -currentStylesheet=Skyline (Nightfall) -discordState= -showDebugTab=false -useRichPresence=true - -[PadSettings] -geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\xb3\0\0\0\0\0\0\x4\xbf\0\0\x3\x7f\0\0\0\xb3\0\0\0\x1d\0\0\x4\xbf\0\0\x3\x7f\0\0\0\0\0\0\0\0\a\x80\0\0\0\xb3\0\0\0\x1d\0\0\x4\xbf\0\0\x3\x7f) - -[Shortcuts] -game_window_exit_fullscreen=null -game_window_gw_frame_limit=Ctrl+Z -game_window_log_mark=Alt+L -game_window_mouse_lock=Ctrl+L -game_window_pause_play=Ctrl+P -game_window_restart=Ctrl+R -game_window_rsx_capture=Alt+C -game_window_savestate=null -game_window_screenshot=Ctrl+X -game_window_toggle_fullscreen=Alt+Return -game_window_toggle_recording=Ctrl+V -main_window_exit_fullscreen=null -main_window_pause=Ctrl+P -main_window_refresh=Ctrl+F5 -main_window_restart=Ctrl+R -main_window_start=Ctrl+E -main_window_stop=Ctrl+Q -main_window_toggle_fullscreen=Ctrl+Return - -[main_window] -confirmationBoxExitGame=false -infoBoxEnabledWelcome=false diff --git a/functions/050_save_migration.sh b/functions/050_save_migration.sh index ccb22aef..4eaf7dc0 100644 --- a/functions/050_save_migration.sh +++ b/functions/050_save_migration.sh @@ -6,8 +6,8 @@ save_migration() { then # ROMs on SD card roms_folder="$default_sd/retrodeck/roms" - if [[ ! -L $rdhome && ! -L $rdhome/roms ]]; then # Add a roms folder symlink back to ~/retrodeck if missing, to fix things like PS2 autosaves until user migrates whole ~retrodeck directory - ln -s $roms_folder $rdhome/roms + if [[ ! -L "$rdhome" && ! -L "$rdhome/roms" ]]; then # Add a roms folder symlink back to ~/retrodeck if missing, to fix things like PS2 autosaves until user migrates whole ~retrodeck directory + ln -s $roms_folder "$rdhome/roms" fi else # ROMs on Internal @@ -30,7 +30,7 @@ save_migration() { # Doing the dir prep as we don't know from which version we came dir_prep "$media_folder" "/var/config/ES-DE/downloaded_media" dir_prep "$themes_folder" "/var/config/ES-DE/themes" - create_dir $rdhome/logs #this was added later, maybe safe to remove in a few versions + create_dir "$rdhome/logs" #this was added later, maybe safe to remove in a few versions # Resetting es_settings, now we need it but in the future I should think a better solution, maybe with sed cp -fv /app/retrodeck/es_settings.xml /var/config/ES-DE/settings/es_settings.xml @@ -39,13 +39,13 @@ save_migration() { # Perform save and state migration if needed # Moving PCSX2 Saves - mv -fv /var/config/PCSX2/sstates/* $rdhome/states/ps2/pcsx2 - mv -fv /var/config/PCSX2/memcards/* $rdhome/saves/ps2/memcards + mv -fv /var/config/PCSX2/sstates/* "$rdhome/states/ps2/pcsx2" + mv -fv /var/config/PCSX2/memcards/* "$rdhome/saves/ps2/memcards" # Moving Citra saves from legacy location to 0.5.0b structure - mv -fv $rdhome/saves/Citra/* $rdhome/saves/n3ds/citra - rmdir $rdhome/saves/Citra # Old folder cleanup + mv -fv "$rdhome/saves/Citra/"* "$rdhome/saves/n3ds/citra" + rmdir "$rdhome/saves/Citra" # Old folder cleanup versionwheresaveschanged="0.4.5b" # Hardcoded break point between unsorted and sorted saves @@ -71,9 +71,9 @@ save_migration() { current_dest_folder= gamestoskip= - tar -C $rdhome -czf $save_backup_file saves # Backup save directory for safety + tar -C "$rdhome" -czf $save_backup_file saves # Backup save directory for safety log i "Saves backed up to" $save_backup_file $migration_logfile - tar -C $rdhome -czf $state_backup_file states # Backup state directory for safety + tar -C "$rdhome" -czf $state_backup_file states # Backup state directory for safety log i "States backed up to" $state_backup_file $migration_logfile ( diff --git a/functions/checks.sh b/functions/checks.sh index 9d1de11d..415e538f 100644 --- a/functions/checks.sh +++ b/functions/checks.sh @@ -40,6 +40,7 @@ check_is_steam_deck() { } check_for_version_update() { + # TODO logging # This function will perform a basic online version check and alert the user if there is a new version available. log d "Entering funtcion check_for_version_update" @@ -47,34 +48,18 @@ check_for_version_update() { wget -q --spider "https://api.github.com/repos/$git_organization_name/$update_repo/releases/latest" if [ $? -eq 0 ]; then - local online_version=$(curl --silent "https://api.github.com/repos/$git_organization_name/$update_repo/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/') + + # Check if $selected_branch is not set + if [[ -z "$selected_branch" ]]; then + # If $selected_branch is not set, get the latest release tag from GitHub API + local online_version=$(curl --silent "https://api.github.com/repos/$git_organization_name/$update_repo/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/') + else + local online_version=$(curl -s "https://api.github.com/repos/$git_organization_name/$update_repo/releases" | jq -r --arg bn "$branch_name" 'sort_by(.published_at) | .[] | select(.tag_name | contains($bn)) | .tag_name' | tail -n 1) + fi if [[ ! "$update_ignore" == "$online_version" ]]; then if [[ "$update_repo" == "RetroDECK" ]] && [[ $(sed -e 's/[\.a-z]//g' <<< $version) -le $(sed -e 's/[\.a-z]//g' <<< $online_version) ]]; then - # choice=$(rd_zenity --icon-name=net.retrodeck.retrodeck --info --no-wrap --ok-label="Yes" --extra-button="No" --extra-button="Ignore this version" \ - # --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ - # --title "RetroDECK Update Available" \ - # --text="There is a new version of RetroDECK on the stable release channel $online_version. Would you like to update to it?\n\n(depending on your internet speed this could takes several minutes).") - # rc=$? # Capture return code, as "Yes" button has no text value - # if [[ $rc == "1" ]]; then # If any button other than "Yes" was clicked - # if [[ $choice == "Ignore this version" ]]; then - # set_setting_value $rd_conf "update_ignore" "$online_version" retrodeck "options" # Store version to ignore for future checks - # fi - # else # User clicked "Yes" - # configurator_generic_dialog "RetroDECK Online Update" "The update process may take several minutes.\n\nAfter the update is complete, RetroDECK will close. When you run it again you will be using the latest version." - # ( - # flatpak-spawn --host flatpak update --noninteractive -y net.retrodeck.retrodeck - # ) | - # rd_zenity --icon-name=net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \ - # --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ - # --title "RetroDECK Updater" \ - # --text="Upgrade in process please wait (this could takes several minutes)." - # configurator_generic_dialog "RetroDECK Online Update" "The update process is now complete!\n\nPlease restart RetroDECK to keep the fun going." - # exit 1 - # fi - # TODO: add the logic to check and update the branch from the configuration file - log i "Showing new version found dialog" - choice=$(rd_zenity --icon-name=net.retrodeck.retrodeck --info --no-wrap --ok-label="OK" --extra-button="Ignore this version" \ + choice=$(zenity --icon-name=net.retrodeck.retrodeck --info --no-wrap --ok-label="OK" --extra-button="Ignore this version" \ --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ --title "RetroDECK - New Update Available" \ --text="There is a new version of RetroDECK available: $online_version.\nYou can easily update from the app store you have installed, examples: KDE Discover or Gnome Software.\n\nIf you would like to ignore this notification, click the \"Ignore this version\" button.") @@ -96,57 +81,7 @@ check_for_version_update() { set_setting_value $rd_conf "update_ignore" "$online_version" retrodeck "options" # Store version to ignore for future checks. fi else # User clicked "Yes" - log i "Selected: \"Yes\"" - configurator_generic_dialog "RetroDECK Online Update" "The update process may take several minutes.\n\nAfter the update is complete, RetroDECK will close. When you run it again you will be using the latest version." - ( - local latest_cooker_download=$(curl --silent https://api.github.com/repos/XargonWan/RetroDECK-cooker/releases/latest | grep '"browser_download_url":.*flatpak' | grep -v '\.sha' | sed -E 's/.*"([^"]+)".*/\1/') - local temp_folder="$rdhome/RetroDECK_Updates" - create_dir $temp_folder - log i "Downloading version \"$online_version\" in \"$temp_folder/RetroDECK-cooker.flatpak\" from url: \"$latest_cooker_download\"" - # Downloading the flatpak file - wget -P "$temp_folder" "$latest_cooker_download" - # And its sha - wget -P "$temp_folder" "$latest_cooker_download.sha" - - # Get the expected SHA checksum from the SHA file - local expected_sha=$(cat "$temp_folder/$(basename "$latest_cooker_download").sha" | awk '{print $1}') - - # Check if the file exists - if [ -f "$temp_folder/RetroDECK-cooker.flatpak" ]; then - # Calculate the actual SHA checksum of the file - actual_sha=$(sha256sum "$temp_folder/RetroDECK-cooker.flatpak" | awk '{print $1}') - - # Log the found and expected SHA checksums - log d "Found SHA: $actual_sha" - log d "Expected SHA: $expected_sha" - - # Check if the SHA checksum matches - if [ "$actual_sha" = "$expected_sha" ]; then - log d "Flatpak file \"$temp_folder/RetroDECK-cooker.flatpak\" found and SHA checksum matches, proceeding." - log d "Uninstalling old RetroDECK flatpak" - # Remove current version before installing new one, to avoid duplicates - flatpak-spawn --host flatpak remove --noninteractive -y net.retrodeck.retrodeck && log d "Uninstallation successful" - log d "Installing new flatpak file from: \"$temp_folder/RetroDECK-cooker.flatpak\"" - flatpak-spawn --host flatpak install --user --bundle --noninteractive -y "$temp_folder/RetroDECK-cooker.flatpak" && log d "Installation successful" - else - log e "Flatpak file \"$temp_folder/RetroDECK-cooker.flatpak\" found but SHA checksum does not match. Quitting." - configurator_generic_dialog "RetroDECK Online Update" "There was an error during the update: flatpak file found but SHA checksum does not match. Please check the log file." - exit 1 - fi - else - log e "Flatpak file \"$temp_folder/RetroDECK-cooker.flatpak\" NOT FOUND. Quitting." - configurator_generic_dialog "RetroDECK Online Update" "There was an error during the update: flatpak file not found. Please check the log file." - exit 1 - fi - - rm -rf "$temp_folder" # Cleanup old bundles to save space - ) | - rd_zenity --icon-name=net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \ - --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ - --title "RetroDECK Updater" \ - --text="RetroDECK is updating to the latest version, please wait." - configurator_generic_dialog "RetroDECK Online Update" "The update process is now complete!\n\nPlease restart RetroDECK to keep the fun going." - exit 1 + install_release $online_version fi fi fi @@ -197,8 +132,9 @@ elif [[ "$new_version_major_rev" -eq "$current_version_major_rev" ]]; then fi fi -# Perform post_update commands for current version if it is a cooker -if grep -qF "cooker" <<< $hard_version; then # If newly-installed version is a "cooker" build, always perform post_update commands for current version +# Perform post_update commands for current version if it is a cooker or PR +if grep -qF "cooker" <<< "$hard_version" || grep -qF "PR" <<< "$hard_version"; then + # If newly-installed version is a "cooker" or "PR" build, always perform post_update commands for current version if [[ "$(echo $hard_version | cut -d'-' -f2)" == "$new_version" ]]; then is_newer_version="true" fi diff --git a/functions/compression.sh b/functions/compression.sh index 4b0bcdd8..3a5ce393 100644 --- a/functions/compression.sh +++ b/functions/compression.sh @@ -39,7 +39,7 @@ compress_game() { rm -f "$file_path/$line" done < <(printf '%s\n' "$cue_bin_files") log i "Removing file $(realpath "$file")" - rm -f $(realpath "$file") + rm -f "$(realpath "$file")" else log i "Removing file $(realpath "$file")" rm -f "$(realpath "$file")" @@ -56,13 +56,19 @@ find_compatible_compression_format() { local normalized_filename=$(echo "$1" | tr '[:upper:]' '[:lower:]') local system=$(echo "$1" | grep -oE "$roms_folder/[^/]+" | grep -oE "[^/]+$") - if [[ $(validate_for_chd "$1") == "true" ]] && [[ $(sed -n '/^\[/{h;d};/\b'"$system"'\b/{g;s/\[\(.*\)\]/\1/p;q};' $compression_targets) == "chd" ]]; then + # Extract the relevant lists from the JSON file + local chd_systems=$(jq -r '.compression_targets.chd[]' $features) + local rvz_systems=$(jq -r '.compression_targets.rvz[]' $features) + local zip_systems=$(jq -r '.compression_targets.zip[]' $features) + local zip_compressable_extensions=$(jq -r '.zip_compressable_extensions[]' $features) + + if [[ $(validate_for_chd "$1") == "true" ]] && echo "$chd_systems" | grep -q "\b$system\b"; then echo "chd" - elif grep -qF ".${normalized_filename##*.}" $zip_compressable_extensions && [[ $(sed -n '/^\[/{h;d};/\b'"$system"'\b/{g;s/\[\(.*\)\]/\1/p;q};' $compression_targets) == "zip" ]]; then + elif echo "$zip_compressable_extensions" | grep -qF ".${normalized_filename##*.}" && echo "$zip_systems" | grep -q "\b$system\b"; then echo "zip" - elif echo "$normalized_filename" | grep -qE '\.iso|\.gcm' && [[ $(sed -n '/^\[/{h;d};/\b'"$system"'\b/{g;s/\[\(.*\)\]/\1/p;q};' $compression_targets) == "rvz" ]]; then + elif echo "$normalized_filename" | grep -qE '\.iso|\.gcm' && echo "$rvz_systems" | grep -q "\b$system\b"; then echo "rvz" - elif echo "$normalized_filename" | grep -qE '\.iso' && [[ $(sed -n '/^\[/{h;d};/\b'"$system"'\b/{g;s/\[\(.*\)\]/\1/p;q};' $compression_targets) == "cso" ]]; then + elif echo "$normalized_filename" | grep -qE '\.iso' && echo "$chd_systems" | grep -q "\b$system\b"; then echo "cso" else # If no compatible format can be found for the input file @@ -70,6 +76,7 @@ find_compatible_compression_format() { fi } + validate_for_chd() { # Function for validating chd compression candidates, and compresses if validation passes. Supports .cue, .iso and .gdi formats ONLY # USAGE: validate_for_chd $input_file diff --git a/functions/configurator_functions.sh b/functions/configurator_functions.sh index 768215b8..6bba4ab6 100644 --- a/functions/configurator_functions.sh +++ b/functions/configurator_functions.sh @@ -1,38 +1,5 @@ #!/bin/bash -check_bios_files() { - # This function validates all the BIOS files listed in the $bios_checklist and adds the results to an array called $bios_checked_list which can be used elsewhere - # There is a "basic" and "expert" mode which outputs different levels of data - # USAGE: check_bios_files "mode" - - if [[ -f "$godot_bios_files_checked" ]]; then - rm -f "$godot_bios_files_checked" # Godot data transfer temp files - fi - touch "$godot_bios_files_checked" - - while IFS="^" read -r bios_file bios_subdir bios_hash bios_system bios_desc || [[ -n "$bios_file" ]]; - do - if [[ ! $bios_file == "#"* ]] && [[ ! -z "$bios_file" ]]; then - bios_file_found="No" - bios_hash_matched="No" - if [[ -f "$bios_folder/$bios_subdir$bios_file" ]]; then - bios_file_found="Yes" - if [[ $bios_hash == "Unknown" ]]; then - bios_hash_matched="Unknown" - elif [[ $(md5sum "$bios_folder/$bios_subdir$bios_file" | awk '{ print $1 }') == "$bios_hash" ]]; then - bios_hash_matched="Yes" - fi - fi - if [[ "$1" == "basic" ]]; then - bios_checked_list=("${bios_checked_list[@]}" "$bios_file" "$bios_system" "$bios_file_found" "$bios_hash_matched" "$bios_desc") - echo "$bios_file"^"$bios_system"^"$bios_file_found"^"$bios_hash_matched"^"$bios_desc" >> "$godot_bios_files_checked" # Godot data transfer temp file - else - bios_checked_list=("${bios_checked_list[@]}" "$bios_file" "$bios_system" "$bios_file_found" "$bios_hash_matched" "$bios_desc" "$bios_subdir" "$bios_hash") - echo "$bios_file"^"$bios_system"^"$bios_file_found"^"$bios_hash_matched"^"$bios_desc"^"$bios_subdir"^"$bios_hash" >> "$godot_bios_files_checked" # Godot data transfer temp file - fi - fi - done < $bios_checklist -} find_empty_rom_folders() { # This function will build an array of all the system subfolders in $roms_folder which are either empty or contain only systeminfo.txt for easy removal @@ -44,14 +11,9 @@ find_empty_rom_folders() { empty_rom_folders_list=() all_empty_folders=() - all_helper_files=() - while IFS='^' read -r file dest || [[ -n "$file" ]]; - do - if [[ ! "$file" == "#"* ]] && [[ ! -z "$file" ]]; then - all_helper_files=("${all_helper_files[@]}" "$file") - fi - done < "$helper_files_list" + # Extract helper file names using jq and populate the all_helper_files array + all_helper_files=($(jq -r '.helper_files | to_entries | .[] | .value.filename' "$features")) for system in $(find "$roms_folder" -mindepth 1 -maxdepth 1 -type d -printf '%f\n') do @@ -70,8 +32,8 @@ find_empty_rom_folders() { all_empty_folders=("${all_empty_folders[@]}" "$(realpath $dir)") echo "$(realpath $dir)" >> "$godot_empty_roms_folders" # Godot data transfer temp file elif [[ $count -eq 2 ]] && [[ "$files" =~ "systeminfo.txt" ]]; then - # Directory contains 2 files, one of which is "systeminfo.txt" - for helper_file in ${all_helper_files[@]} # Compare helper file list to dir file list + contains_helper_file="false" + for helper_file in "${all_helper_files[@]}" # Compare helper file list to dir file list do if [[ "$files" =~ "$helper_file" ]]; then contains_helper_file="true" # Helper file was found @@ -87,3 +49,4 @@ find_empty_rom_folders() { fi done } + diff --git a/functions/dialogs.sh b/functions/dialogs.sh index 613be8d2..23ca4433 100644 --- a/functions/dialogs.sh +++ b/functions/dialogs.sh @@ -57,7 +57,7 @@ configurator_destination_choice_dialog() { # This dialog is for making things easy for new users to move files to common locations. Gives the options for "Internal", "SD Card" and "Custom" locations. # USAGE: $(configurator_destination_choice_dialog "folder being moved" "action text") # This function returns one of the values: "Back" "Internal Storage" "SD Card" "Custom Location" - choice=$(rd_zenity --title "RetroDECK Configurator Utility - Moving $1 folder" --info --no-wrap --ok-label="Back" --extra-button="Internal Storage" --extra-button="SD Card" --extra-button="Custom Location" \ + choice=$(rd_zenity --title "RetroDECK Configurator Utility - Moving $1 folder" --info --no-wrap --ok-label="Quit" --extra-button="Internal Storage" --extra-button="SD Card" --extra-button="Custom Location" \ --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ --text="$2") @@ -161,29 +161,36 @@ configurator_move_folder_dialog() { } changelog_dialog() { - # This function will pull the changelog notes from the version it is passed (which must match the appdata version tag) from the net.retrodeck.retrodeck.appdata.xml file + # This function will pull the changelog notes from the version it is passed (which must match the metainfo version tag) from the net.retrodeck.retrodeck.metainfo.xml file # The function also accepts "all" as a version, and will print the entire changelog # USAGE: changelog_dialog "version" log d "Showing changelog dialog" if [[ "$1" == "all" ]]; then - xml sel -t -m "//release" -v "concat('RetroDECK version: ', @version)" -n -v "description" -n $rd_appdata | awk '{$1=$1;print}' | sed -e '/./b' -e :n -e 'N;s/\n$//;tn' > "/var/config/retrodeck/changelog.txt" + > "/var/config/retrodeck/changelog-full.xml" + for release in $(xml sel -t -m "//component/releases/release" -v "@version" -n $rd_metainfo); do + echo "

    RetroDECK v$release

    " >> "/var/config/retrodeck/changelog-full.xml" + xml sel -t -m "//component/releases/release[@version='$release']/description" -c . $rd_metainfo | tr -s '\n' | sed 's/^\s*//' >> "/var/config/retrodeck/changelog-full.xml" + echo "" >> "/var/config/retrodeck/changelog-full.xml" + done + + #convert_to_markdown "/var/config/retrodeck/changelog-full.xml" rd_zenity --icon-name=net.retrodeck.retrodeck --text-info --width=1200 --height=720 \ --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ --title "RetroDECK Changelogs" \ - --filename="/var/config/retrodeck/changelog.txt" + --filename="/var/config/retrodeck/changelog-full.xml.md" else - local version_changelog=$(xml sel -t -m "//release[@version='$1']/description" -v . -n $rd_appdata | tr -s '\n' | sed 's/^\s*//') + xml sel -t -m "//component/releases/release[@version='$1']/description" -c . $rd_metainfo | tr -s '\n' | sed 's/^\s*//' > "/var/config/retrodeck/changelog.xml" - echo -e "In RetroDECK version $1, the following changes were made:\n$version_changelog" > "/var/config/retrodeck/changelog-partial.txt" 2>/dev/null + convert_to_markdown "/var/config/retrodeck/changelog.xml" rd_zenity --icon-name=net.retrodeck.retrodeck --text-info --width=1200 --height=720 \ --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ --title "RetroDECK Changelogs" \ - --filename="/var/config/retrodeck/changelog-partial.txt" - fi + --filename="/var/config/retrodeck/changelog.xml.md" + fi } get_cheevos_token_dialog() { diff --git a/functions/framework.sh b/functions/framework.sh index 08e736f3..ed93dc65 100644 --- a/functions/framework.sh +++ b/functions/framework.sh @@ -513,3 +513,53 @@ do fi done < "$1" } + +get_steam_user() { + # This function populates environment variables with the actual logged Steam user data + if [ -f "$HOME/.steam/steam/config/loginusers.vdf" ]; then + # Extract the Steam ID of the most recent user + export steam_id=$(awk ' + /"users"/ {flag=1} + flag && /^[ \t]*"[0-9]+"/ {id=$1} + flag && /"MostRecent".*"1"/ {print id; exit}' "$HOME/.steam/steam/config/loginusers.vdf" | tr -d '"') + + # Extract the Steam username (AccountName) + export steam_username=$(awk -v steam_id="$steam_id" ' + $0 ~ steam_id {flag=1} + flag && /"AccountName"/ {gsub(/"/, "", $2); print $2; exit}' "$HOME/.steam/steam/config/loginusers.vdf") + + # Extract the Steam pretty name (PersonaName) + export steam_prettyname=$(awk -v steam_id="$steam_id" ' + $0 ~ steam_id {flag=1} + flag && /"PersonaName"/ {gsub(/"/, "", $2); print $2; exit}' "$HOME/.steam/steam/config/loginusers.vdf") + + # Log success + log i "Steam user found:" + log i "SteamID: $steam_id" + log i "Username: $steam_username" + log i "Name: $steam_prettyname" + + if [[ $steam_sync == "true" ]]; then + populate_steamuser_srm + fi + + else + # Log warning if file not found + log w "No Steam user found, proceeding" >&2 + fi +} + +populate_steamuser_srm(){ + # Populating SRM config with Steam Username + log d "Populating Steam Rom Manager config file with Steam Username" + jq --arg username "$steam_username" ' + map( + if .userAccounts.specifiedAccounts then + .userAccounts.specifiedAccounts = [$username] + else + . + end + ) + ' "$XDG_CONFIG_HOME/steam-rom-manager/userData/userConfigurations.json" > "$XDG_CONFIG_HOME/steam-rom-manager/userData/userConfigurations.json.tmp" && + mv "$XDG_CONFIG_HOME/steam-rom-manager/userData/userConfigurations.json.tmp" "$XDG_CONFIG_HOME/steam-rom-manager/userData/userConfigurations.json" +} \ No newline at end of file diff --git a/functions/global.sh b/functions/global.sh index 8623902f..b36abb37 100644 --- a/functions/global.sh +++ b/functions/global.sh @@ -2,11 +2,25 @@ # This file is containing some global function needed for the script such as the config file tools +# pathing the retrodeck components provided libraries +# now disabled as we are importing everything in /app/lib. In case we are breaking something we need to restore this approach +# export LD_LIBRARY_PATH="/app/retrodeck/lib:/app/retrodeck/lib/debug:/app/retrodeck/lib/pkgconfig:$LD_LIBRARY_PATH" + +: "${logging_level:=info}" # Initializing the log level variable if not already valued, this will be actually red later from the config file +rd_logs_folder="/var/config/retrodeck/logs" # Static location to write all RetroDECK-related logs +source /app/libexec/logger.sh +rotate_logs + +log i "Initializing RetroDECK" +log i "Running on $XDG_SESSION_DESKTOP, $XDG_SESSION_TYPE" +if [[ -n $container ]]; then + log i "$container environment" +fi + source /app/libexec/050_save_migration.sh source /app/libexec/checks.sh source /app/libexec/compression.sh source /app/libexec/dialogs.sh -source /app/libexec/logger.sh source /app/libexec/other_functions.sh source /app/libexec/multi_user.sh source /app/libexec/framework.sh @@ -14,43 +28,43 @@ source /app/libexec/post_update.sh source /app/libexec/prepare_component.sh source /app/libexec/presets.sh source /app/libexec/configurator_functions.sh +source /app/libexec/run_game.sh # Static variables -rd_conf="/var/config/retrodeck/retrodeck.cfg" # RetroDECK config file path -rd_conf_backup="/var/config/retrodeck/retrodeck.bak" # Backup of RetroDECK config file from update -rd_logs_folder="/var/config/retrodeck/logs" # Static location to write all RetroDECK-related logs -emuconfigs="/app/retrodeck/emu-configs" # folder with all the default emulator configs -rd_defaults="$emuconfigs/defaults/retrodeck/retrodeck.cfg" # A default RetroDECK config file -rd_update_patch="/var/config/retrodeck/rd_update.patch" # A static location for the temporary patch file used during retrodeck.cfg updates -bios_checklist="$emuconfigs/defaults/retrodeck/reference_lists/bios_checklist.cfg" # A config file listing BIOS file information that can be verified -compression_targets="$emuconfigs/defaults/retrodeck/reference_lists/compression_targets.cfg" # A config file containing supported compression types per system -zip_compressable_extensions="$emuconfigs/defaults/retrodeck/reference_lists/zip_compressable_extensions.cfg" # A config file containing every file extension that is allowed to be compressed to .zip format, because there are a lot! -easter_egg_checklist="$emuconfigs/defaults/retrodeck/reference_lists/easter_egg_checklist.cfg" # A config file listing days and times when special splash screens should show up -input_validation="$emuconfigs/defaults/retrodeck/reference_lists/input_validation.cfg" # A config file listing valid CLI inputs -finit_options_list="$emuconfigs/defaults/retrodeck/reference_lists/finit_options_list.cfg" # A config file listing available optional installs during finit -splashscreen_dir="/var/config/ES-DE/resources/graphics/extra_splashes" # The default location of extra splash screens -current_splash_file="/var/config/ES-DE/resources/graphics/splash.svg" # The active splash file that will be shown on boot -default_splash_file="/var/config/ES-DE/resources/graphics/splash-orig.svg" # The default RetroDECK splash screen -multi_user_emulator_config_dirs="$emuconfigs/defaults/retrodeck/reference_lists/multi_user_emulator_config_dirs.cfg" # A list of emulator config folders that can be safely linked/unlinked entirely in multi-user mode -rd_es_themes="/app/share/es-de/themes" # The directory where themes packaged with RetroDECK are stored -lockfile="/var/config/retrodeck/.lock" # Where the lockfile is located -default_sd="/run/media/mmcblk0p1" # Steam Deck SD default path # A static location for RetroDECK logs to be written -hard_version="$(cat '/app/retrodeck/version')" # hardcoded version (in the readonly filesystem) -rd_repo="https://github.com/XargonWan/RetroDECK" # The URL of the main RetroDECK GitHub repo -es_themes_list="https://gitlab.com/es-de/themes/themes-list/-/raw/master/themes.json" # The URL of the ES-DE 2.0 themes list -remote_network_target_1="https://flathub.org" # The URL of a common internet target for testing network access -remote_network_target_2="$rd_repo" # The URL of a common internet target for testing network access -remote_network_target_3="https://one.one.one.one" # The URL of a common internet target for testing network access -helper_files_folder="$emuconfigs/defaults/retrodeck/helper_files" # The parent folder of RetroDECK documentation files for deployment -helper_files_list="$emuconfigs/defaults/retrodeck/reference_lists/helper_files_list.cfg" # The list of files to be deployed and where they go -rd_appdata="/app/share/appdata/net.retrodeck.retrodeck.appdata.xml" # The shipped appdata XML file for this version -rpcs3_firmware="http://dus01.ps3.update.playstation.net/update/ps3/image/us/2023_0228_05fe32f5dc8c78acbcd84d36ee7fdc5b/PS3UPDAT.PUP" -RA_API_URL="https://retroachievements.org/dorequest.php" # API URL for RetroAchievements.org -presets_dir="$emuconfigs/defaults/retrodeck/presets" # Repository for all system preset config files -incompatible_presets_reference_list="$emuconfigs/defaults/retrodeck/reference_lists/incompatible_presets.cfg" # A config file listing all incompatible presets for reference (eg. cannot have borders and widescreen enabled simultaniously) -pretty_system_names_reference_list="$emuconfigs/defaults/retrodeck/reference_lists/pretty_system_names.cfg" # An internal translation list for turning internal names (eg. gbc) to "pretty" names (Nintendo GameBoy Color) -git_organization_name="RetroDECK" # The name of the organization in our git repository such as GitHub -cooker_repository_name="Cooker" # The name of the cooker repository under RetroDECK organization +rd_conf="/var/config/retrodeck/retrodeck.cfg" # RetroDECK config file path +rd_conf_backup="/var/config/retrodeck/retrodeck.bak" # Backup of RetroDECK config file from update +config="/app/retrodeck/config" # folder with all the default emulator configs +rd_defaults="$config/retrodeck/retrodeck.cfg" # A default RetroDECK config file +rd_update_patch="/var/config/retrodeck/rd_update.patch" # A static location for the temporary patch file used during retrodeck.cfg updates +bios_checklist="$config/retrodeck/reference_lists/bios.json" # A config file listing BIOS file information that can be verified +input_validation="$config/retrodeck/reference_lists/input_validation.cfg" # A config file listing valid CLI inputs +finit_options_list="$config/retrodeck/reference_lists/finit_options_list.cfg" # A config file listing available optional installs during finit +splashscreen_dir="/var/config/ES-DE/resources/graphics/extra_splashes" # The default location of extra splash screens +current_splash_file="/var/config/ES-DE/resources/graphics/splash.svg" # The active splash file that will be shown on boot +default_splash_file="/var/config/ES-DE/resources/graphics/splash-orig.svg" # The default RetroDECK splash screen +# TODO: instead of this maybe we can iterate the features.json +multi_user_emulator_config_dirs="$config/retrodeck/reference_lists/multi_user_emulator_config_dirs.cfg" # A list of emulator config folders that can be safely linked/unlinked entirely in multi-user mode +rd_es_themes="/app/share/es-de/themes" # The directory where themes packaged with RetroDECK are stored +lockfile="/var/config/retrodeck/.lock" # Where the lockfile is located +default_sd="/run/media/mmcblk0p1" # Steam Deck SD default path +hard_version="$(cat '/app/retrodeck/version')" # hardcoded version (in the readonly filesystem) +rd_repo="https://github.com/RetroDECK/RetroDECK" # The URL of the main RetroDECK GitHub repo +es_themes_list="https://gitlab.com/es-de/themes/themes-list/-/raw/master/themes.json" # The URL of the ES-DE 2.0 themes list +remote_network_target_1="https://flathub.org" # The URL of a common internet target for testing network access +remote_network_target_2="$rd_repo" # The URL of a common internet target for testing network access +remote_network_target_3="https://one.one.one.one" # The URL of a common internet target for testing network access +helper_files_folder="$config/retrodeck/helper_files" # The parent folder of RetroDECK documentation files for deployment +rd_metainfo="/app/share/metainfo/net.retrodeck.retrodeck.metainfo.xml" # The shipped metainfo XML file for this version +rpcs3_firmware="http://dus01.ps3.update.playstation.net/update/ps3/image/us/2024_0227_3694eb3fb8d9915c112e6ab41a60c69f/PS3UPDAT.PUP" # RPCS3 Firmware download location +RA_API_URL="https://retroachievements.org/dorequest.php" # API URL for RetroAchievements.org +presets_dir="$config/retrodeck/presets" # Repository for all system preset config files +git_organization_name="RetroDECK" # The name of the organization in our git repository such as GitHub +cooker_repository_name="Cooker" # The name of the cooker repository under RetroDECK organization +main_repository_name="RetroDECK" # The name of the main repository under RetroDECK organization +features="$config/retrodeck/reference_lists/features.json" # A file where all the RetroDECK and component capabilities are kept for querying +es_systems="/app/share/es-de/resources/systems/linux/es_systems.xml" # ES-DE supported system list +es_find_rules="/app/share/es-de/resources/systems/linux/es_find_rules.xml" # ES-DE emulator find rules + # Godot data transfer temp files @@ -79,6 +93,7 @@ es_source_logs="/var/config/ES-DE/logs" raconf="/var/config/retroarch/retroarch.cfg" ra_core_conf="/var/config/retroarch/retroarch-core-options.cfg" ra_scummvm_conf="/var/config/retroarch/system/scummvm.ini" +ra_cores_path="/var/config/retroarch/cores" # CEMU config files @@ -132,9 +147,6 @@ mamedefconf="/var/config/mame/cfg/default.cfg" if [ ! -d "$rd_logs_folder" ]; then create_dir "$rd_logs_folder" fi -if [[ ! -d "$rd_logs_folder/ES-DE" ]]; then - dir_prep "$rd_logs_folder/ES-DE" "$es_source_logs" -fi # Initialize location of Godot temp data files, if it doesn't exist if [[ ! -d "/var/config/retrodeck/godot" ]]; then @@ -220,4 +232,8 @@ else multi_user_data_folder="$rdhome/multi-user-data" # The default location of multi-user environment profiles fi -logs_folder="$rdhome/logs" # The path of the logs folder, here we collect all the logs +logs_folder="$rdhome/logs" # The path of the logs folder, here we collect all the logs +steamsync_folder="$rdhome/.sync" # Folder containing all the steam sync launchers for SRM +steamsync_folder_tmp="$rdhome/.sync-tmp" # Temp folder containing all the steam sync launchers for SRM + +export GLOBAL_SOURCED=true \ No newline at end of file diff --git a/functions/logger.sh b/functions/logger.sh index 9c2ea6c3..6f436dc6 100755 --- a/functions/logger.sh +++ b/functions/logger.sh @@ -1,98 +1,133 @@ -# SORRY, I WILL CLEAN UP THIS -# -Xargon - # This script provides a logging function 'log' that can be sourced in other scripts. -# It logs messages to both the terminal and a specified logfile, allowing different log levels. -# The log function takes three parameters: log level, log message, and optionally the logfile. If no logfile is specified, it writes to retrodeck/logs/retrodeck.log - +# It logs messages to both the terminal and a specified logfile, supporting multiple log levels. +# The log function takes three parameters: log level, log message, and optionally the logfile. If no logfile is specified, it writes to retrodeck/logs/retrodeck.log. +# +# Supported logging levels (controlled by the variable 'logging_level'): +# - none: No logs are produced. +# - info: Logs informational messages (i) and errors (e). +# - warn: Logs warnings (w), informational messages (i), and errors (e). +# - debug: Logs all message types (d, w, i, e). +# # Type of log messages: -# log d - debug message: maybe in the future we can decide to hide them in main builds or if an option is toggled -# log i - normal informational message -# log w - waring: something is not expected but it's not a big deal -# log e - error: something broke - +# - d: Debug message (logged only in debug level). +# - i: Informational message (logged in debug, info, and warn levels). +# - w: Warning message (logged in debug and warn levels). +# - e: Error message (logged in all levels except none). +# # Example usage: -# log w "foo" -> logs a warning with message foo in the default log file retrodeck/logs/retrodeck.log -# log e "bar" -> logs an error with message bar in the default log file retrodeck/logs/retrodeck.log -# log i "par" rekku.log -> logs an information with message in the specified log file inside the logs folder retrodeck/logs/rekku.log +# log w "foo" -> Logs a warning with message "foo" to the default log file retrodeck/logs/retrodeck.log. +# log e "bar" -> Logs an error with message "bar" to the default log file retrodeck/logs/retrodeck.log. +# log i "baz" rekku.log -> Logs an informational message "baz" to the specified log file retrodeck/logs/rekku.log. +# +# The function auto-detects if the shell is sh and avoids colorizing the output in that case. log() { - - local level="$1" - local message="$2" - local timestamp="$(date +[%Y-%m-%d\ %H:%M:%S.%3N])" - local colorize_terminal - - # Use specified logfile or default to retrodeck.log - local logfile - if [ -n "$3" ]; then - logfile="$3" - else - logfile="$rd_logs_folder/retrodeck.log" + # Exit early if logging_level is "none" + if [[ $logging_level == "none" ]]; then + return fi + local level="$1" # Logging level of the current message + local message="$2" # Message to log + local logfile="${3:-$rd_logs_folder/retrodeck.log}" # Log file, default to retrodeck.log + local timestamp="$(date +[%Y-%m-%d\ %H:%M:%S.%3N])" # Timestamp for the log entry + local colorize_terminal=true + + # Determine the calling function or use [FWORK] + local caller="${FUNCNAME[1]:-FWORK}" + caller="${caller^^}" # Convert to uppercase + # Check if the shell is sh (not bash or zsh) to avoid colorization if [ "${SHELL##*/}" = "sh" ]; then colorize_terminal=false - else - colorize_terminal=true fi - case "$level" in - w) - if [ "$colorize_terminal" = true ]; then - # Warning (yellow) for terminal - colored_message="\e[33m[WARN] $message\e[0m" - else - # Warning (no color for sh) for terminal - colored_message="$timestamp [WARN] $message" - fi - # Write to log file without colorization - log_message="$timestamp [WARN] $message" - ;; - e) - if [ "$colorize_terminal" = true ]; then - # Error (red) for terminal - colored_message="\e[31m[ERROR] $message\e[0m" - else - # Error (no color for sh) for terminal - colored_message="$timestamp [ERROR] $message" - fi - # Write to log file without colorization - log_message="$timestamp [ERROR] $message" - ;; - i) - # Write to log file without colorization for info message - log_message="$timestamp [INFO] $message" - colored_message=$log_message - ;; - d) - if [ "$colorize_terminal" = true ]; then - # Debug (green) for terminal - colored_message="\e[32m[DEBUG] $message\e[0m" - else - # Debug (no color for sh) for terminal - colored_message="$timestamp [DEBUG] $message" - fi - # Write to log file without colorization - log_message="$timestamp [DEBUG] $message" - ;; - *) - # Default (no color for other shells) for terminal - colored_message="$timestamp $message" - # Write to log file without colorization - log_message="$timestamp $message" - ;; - esac + # Function to check if the current message level should be logged + should_log() { + case "$logging_level" in + debug) return 0 ;; # Always log everything + info) [[ "$level" == "i" || "$level" == "e" ]] && return 0 ;; + warn) [[ "$level" != "d" ]] && return 0 ;; + error) [[ "$level" == "e" ]] && return 0 ;; + esac + return 1 + } - # Display the message in the terminal - echo -e "$colored_message" >&2 + if should_log; then + # Define message colors based on level + case "$level" in + d) + color="\e[32m[DEBUG]" + prefix="[DEBUG]" + ;; + e) + color="\e[31m[ERROR]" + prefix="[ERROR]" + ;; + w) + color="\e[33m[WARN]" + prefix="[WARN]" + ;; + i) + color="\e[34m[INFO]" + prefix="[INFO]" + ;; + *) + color="\e[37m[LOG]" + prefix="[LOG]" + ;; + esac - # Write the log message to the log file - if [ ! -f "$logfile" ]; then - echo "$timestamp [WARN] Log file not found in \"$logfile\", creating it" >&2 - touch "$logfile" + # Construct the log message + if [ "$colorize_terminal" = true ]; then + colored_message="$color [$caller] $message\e[0m" + else + colored_message="$timestamp $prefix [$caller] $message" + fi + log_message="$timestamp $prefix [$caller] $message" + + # Display the message in the terminal + echo -e "$colored_message" >&2 + + # Write the log message to the log file + if [ ! -f "$logfile" ]; then + #echo "$timestamp [WARN] Log file not found in \"$logfile\", creating it" >&2 # Disabled it as it's always appearing because of log rotation + if [[ ! -d "$(dirname "$logfile")" ]]; then + mkdir -p "$(dirname "$logfile")" + fi + touch "$logfile" + fi + echo "$log_message" >> "$logfile" fi - echo "$log_message" >> "$logfile" - } + + +# The rotate_logs function manages log file rotation to limit the number of logs retained. +# It compresses the current log file into a .tar.gz archive, increments the version of +# older log files (e.g., retrodeck.1.tar.gz to retrodeck.2.tar.gz), and deletes the oldest +# archive if it exceeds the maximum limit (default: 3 rotated logs). After rotation, +# the original log file is cleared for continued logging. + +rotate_logs() { + local logfile="${1:-$rd_logs_folder/retrodeck.log}" # Default log file + local max_logs=3 # Maximum number of rotated logs to keep + + # Rotate existing logs + for ((i=max_logs; i>0; i--)); do + if [[ -f "${logfile}.${i}.tar.gz" ]]; then + if (( i == max_logs )); then + # Remove the oldest log if it exceeds the limit + rm -f "${logfile}.${i}.tar.gz" + else + # Rename log file to the next number + mv "${logfile}.${i}.tar.gz" "${logfile}.$((i+1)).tar.gz" + fi + fi + done + + # Compress the current log file if it exists + if [[ -f "$logfile" ]]; then + # Compress without directory structure and suppress tar output + tar -czf "${logfile}.1.tar.gz" -C "$(dirname "$logfile")" "$(basename "$logfile")" --remove-files &>/dev/null + fi +} \ No newline at end of file diff --git a/functions/multi_user.sh b/functions/multi_user.sh index 2e015cc4..d18e220d 100644 --- a/functions/multi_user.sh +++ b/functions/multi_user.sh @@ -196,8 +196,8 @@ multi_user_setup_new_user() { mv "/var/config/retroarch/retroarch.cfg" "$multi_user_data_folder/$SteamAppUser/config/retroarch/retroarch.cfg" mv "/var/config/retroarch/retroarch-core-options.cfg" "$multi_user_data_folder/$SteamAppUser/config/retroarch/retroarch-core-options.cfg" else - cp "$emuconfigs/retroarch/retroarch.cfg" "$multi_user_data_folder/$SteamAppUser/config/retroarch/retroarch.cfg" - cp "$emuconfigs/retroarch/retroarch-core-options.cfg" "$multi_user_data_folder/$SteamAppUser/config/retroarch/retroarch-core-options.cfg" + cp "$config/retroarch/retroarch.cfg" "$multi_user_data_folder/$SteamAppUser/config/retroarch/retroarch.cfg" + cp "$config/retroarch/retroarch-core-options.cfg" "$multi_user_data_folder/$SteamAppUser/config/retroarch/retroarch-core-options.cfg" set_setting_value "$raconf" "savefile_directory" "$saves_folder" "retroarch" set_setting_value "$raconf" "savestate_directory" "$states_folder" "retroarch" set_setting_value "$raconf" "screenshot_directory" "$screenshots_folder" "retroarch" diff --git a/functions/other_functions.sh b/functions/other_functions.sh index 9bbbaaae..c9227e85 100644 --- a/functions/other_functions.sh +++ b/functions/other_functions.sh @@ -162,6 +162,15 @@ update_rd_conf() { # STAGE 3: Eliminate any preset incompatibility with existing user settings and new defaults + # Fetch incompatible presets from JSON and create a lookup list + incompatible_presets=$(jq -r ' + .incompatible_presets | to_entries[] | + [ + "\(.key):\(.value)", + "\(.value):\(.key)" + ] | join("\n") + ' $features) + while IFS= read -r current_setting_line # Read the existing retrodeck.cfg do if [[ (! -z "$current_setting_line") && (! "$current_setting_line" == "#"*) && (! "$current_setting_line" == "[]") ]]; then # If the line has a valid entry in it @@ -179,7 +188,7 @@ update_rd_conf() { set_setting_value "$rd_conf" "$system_name" "false" "retrodeck" "$current_section" fi fi - done < "$incompatible_presets_reference_list" + done <<< "$incompatible_presets" fi fi fi @@ -187,6 +196,7 @@ update_rd_conf() { done < $rd_conf } + conf_read() { # This function will read the RetroDECK config file into memory # USAGE: conf_read @@ -195,18 +205,17 @@ conf_read() { do if [[ (! -z "$current_setting_line") && (! "$current_setting_line" == "#"*) && (! "$current_setting_line" == "[]") ]]; then # If the line has a valid entry in it if [[ ! -z $(grep -o -P "^\[.+?\]$" <<< "$current_setting_line") ]]; then # If the line is a section header - local current_section=$(sed 's^[][]^^g' <<< $current_setting_line) # Remove brackets from section name + local current_section=$(sed 's^[][]^^g' <<< "$current_setting_line") # Remove brackets from section name else if [[ "$current_section" == "" || "$current_section" == "paths" || "$current_section" == "options" ]]; then - local current_setting_name=$(get_setting_name "$current_setting_line" "retrodeck") # Read the variable name from the current line - local current_setting_value=$(get_setting_value "$rd_conf" "$current_setting_name" "retrodeck" "$current_section") # Read the variables value from retrodeck.cfg + local current_setting_name=$(cut -d'=' -f1 <<< "$current_setting_line" | xargs) # Extract name + local current_setting_value=$(cut -d'=' -f2 <<< "$current_setting_line" | xargs) # Extract value declare -g "$current_setting_name=$current_setting_value" # Write the current setting name and value to memory export "$current_setting_name" fi fi fi - done < $rd_conf - log d "retrodeck.cfg loaded" + done < "$rd_conf" } conf_write() { @@ -315,16 +324,18 @@ backup_retrodeck_userdata() { make_name_pretty() { # This function will take an internal system name (like "gbc") and return a pretty version for user display ("Nintendo GameBoy Color") + # If the name is nout found it only returns the short name such as "gbc" # USAGE: make_name_pretty "system name" - local system=$(grep "$1^" "$pretty_system_names_reference_list") - if [[ ! -z "$system" ]]; then - IFS='^' read -r internal_name pretty_name < <(echo "$system") - else - pretty_name="$1" - fi + + local system_name="$1" + + # Use jq to parse the JSON and find the pretty name + local pretty_name=$(jq -r --arg name "$system_name" '.system[$name].name // $name' "$features") + echo "$pretty_name" } + finit_browse() { # Function for choosing data directory location during first/forced init path_selected=false @@ -363,14 +374,12 @@ done finit_user_options_dialog() { finit_available_options=() + finit_extracted_options=$(jq -r '.finit_default_options | to_entries[] | "\(.value.enabled)^\(.value.name)^\(.value.description)^\(.key)"' "$features") - while IFS="^" read -r enabled option_name option_desc option_tag || [[ -n "$enabled" ]]; - do - if [[ ! $enabled == "#"* ]] && [[ ! -z "$enabled" ]]; then - finit_available_options=("${finit_available_options[@]}" "$enabled" "$option_name" "$option_desc" "$option_tag") - fi - done < $finit_options_list - + # Read finit_default_options from features.json using jq + while IFS="^" read -r enabled option_name option_desc option_tag; do + finit_available_options+=("$enabled" "$option_name" "$option_desc" "$option_tag") + done <<< "$finit_extracted_options" local choices=$(rd_zenity \ --list --width=1200 --height=720 \ @@ -393,11 +402,15 @@ finit() { # Internal or SD Card? local finit_dest_choice=$(configurator_destination_choice_dialog "RetroDECK data" "Welcome to the first setup of RetroDECK.\nPlease carefully read each message prompted during the installation process to avoid any unwanted misconfigurations.\n\nWhere do you want your RetroDECK data folder to be located?\nIn this location a \"retrodeck\" folder will be created.\nThis is the folder that you will use to contain all your important files, such as your own ROMs, BIOSs, Saves and Scraped Data." ) - log i "Choice is $finit_dest_choice" + if [[ "$finit_dest_choice" == "" ]]; then + log i "User closed the window" + else + log i "User choice: $finit_dest_choice" + fi case "$finit_dest_choice" in - "Quit" | "" ) # Back or X button quits + "Quit" | "Back" | "" ) # Back, Quit or X button quits rm -f "$rd_conf" # Cleanup unfinished retrodeck.cfg if first install is interrupted log i "Now quitting" quit_retrodeck @@ -504,11 +517,17 @@ finit() { ) | rd_zenity --icon-name=net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \ - --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ - --title "RetroDECK Finishing Initialization" \ - --text="RetroDECK is finishing the initial setup process, please wait." + --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ + --title "RetroDECK Finishing Initialization" \ + --text="RetroDECK is finishing the initial setup process, please wait." create_lock + + # Inform the user where to put the ROMs and BIOS files + rd_zenity --info --no-wrap \ + --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ + --title "RetroDECK Setup Complete" \ + --text="RetroDECK setup is complete!\n\nPlease place your game files in the following directory: $rdhome/roms\n\nand your BIOS files in: $rdhome/bios\n\nYou can use the BIOS checker tool available trough the RetroDECK Configurator\nor refer to the RetroDECK WIKI for more information about the required BIOS files and their proper paths.\n\nYou can now start using RetroDECK." } install_retrodeck_starterpack() { @@ -533,11 +552,11 @@ install_retrodeck_controller_profile() { if [[ -d "$HOME/.steam/steam/controller_base/templates/" || -d "$HOME/.var/app/com.valvesoftware.Steam/.steam/steam/controller_base/templates/" ]]; then if [[ -d "$HOME/.steam/steam/controller_base/templates/" ]]; then # If a normal binary Steam install exists rsync -rlD --mkpath "/app/retrodeck/binding_icons/" "$HOME/.steam/steam/tenfoot/resource/images/library/controller/binding_icons/" - rsync -rlD --mkpath "$emuconfigs/defaults/retrodeck/controller_configs/" "$HOME/.steam/steam/controller_base/templates/" + rsync -rlD --mkpath "$config/retrodeck/controller_configs/" "$HOME/.steam/steam/controller_base/templates/" fi if [[ -d "$HOME/.var/app/com.valvesoftware.Steam/.steam/steam/controller_base/templates/" ]]; then # If a Flatpak Steam install exists rsync -rlD --mkpath "/app/retrodeck/binding_icons/" "$HOME/.var/app/com.valvesoftware.Steam/.steam/steam/tenfoot/resource/images/library/controller/binding_icons/" - rsync -rlD --mkpath "$emuconfigs/defaults/retrodeck/controller_configs/" "$HOME/.var/app/com.valvesoftware.Steam/.steam/steam/controller_base/templates/" + rsync -rlD --mkpath "$config/retrodeck/controller_configs/" "$HOME/.var/app/com.valvesoftware.Steam/.steam/steam/controller_base/templates/" fi else configurator_generic_dialog "RetroDECK Controller Profile Install" "The target directories for the controller profile do not exist.\n\nThis may happen if you do not have Steam installed or the location is does not have permission to be read." @@ -563,38 +582,42 @@ update_splashscreens() { } deploy_helper_files() { - # This script will distribute helper documentation files throughout the filesystem according to the $helper_files_list + # This script will distribute helper documentation files throughout the filesystem according to the JSON configuration # USAGE: deploy_helper_files - while IFS='^' read -r file dest || [[ -n "$file" ]]; - do - if [[ ! "$file" == "#"* ]] && [[ ! -z "$file" ]]; then + # Extract helper files information using jq + helper_files=$(jq -r '.helper_files | to_entries | map("\(.value.filename)^\(.value.location)")[]' "$features") + + # Iterate through each helper file entry + while IFS='^' read -r file dest; do + if [[ ! -z "$file" ]] && [[ ! -z "$dest" ]]; then eval current_dest="$dest" cp -f "$helper_files_folder/$file" "$current_dest/$file" fi - done < "$helper_files_list" + done <<< "$helper_files" } -easter_eggs() { - # This function will replace the RetroDECK startup splash screen with a different image if the day and time match a listing in easter_egg_checklist.cfg - # The easter_egg_checklist.cfg file has the current format: $start_date^$end_date^$start_time^$end_time^$splash_file - # Ex. The line "1001^1031^0000^2359^spooky.svg" would show the file "spooky.svg" during any time of day in the month of October - # The easter_egg_checklist.cfg is read in order, so lines higher in the file will have higher priority in the event of an overlap - # USAGE: easter_eggs - current_day=$(date +"%0m%0d") # Read the current date in a format that can be calculated in ranges - current_time=$(date +"%0H%0M") # Read the current time in a format that can be calculated in ranges - if [[ ! -z $(cat $easter_egg_checklist) ]]; then - while IFS="^" read -r start_date end_date start_time end_time splash_file || [[ -n "$start_date" ]]; # Read Easter Egg checklist file and separate values - do - if [[ ! $start_date == "#"* ]] && [[ ! -z "$start_date" ]]; then - if [[ "$((10#$current_day))" -ge "$((10#$start_date))" && "$((10#$current_day))" -le "$((10#$end_date))" && "$((10#$current_time))" -ge "$((10#$start_time))" && "$((10#$current_time))" -le "$((10#$end_time))" ]]; then # If current line specified date/time matches current date/time, set $splash_file to be deployed - new_splash_file="$splashscreen_dir/$splash_file" - break - else # When there are no matches, the default splash screen is set to deploy - new_splash_file="$default_splash_file" - fi - fi - done < $easter_egg_checklist + +splash_screen() { + # This function will replace the RetroDECK startup splash screen with a different image if the day and time match a listing in the JSON data. + # USAGE: splash_screen + + current_day=$(date +"%m%d") # Read the current date in a format that can be calculated in ranges + current_time=$(date +"%H%M") # Read the current time in a format that can be calculated in ranges + + # Read the JSON file and extract splash screen data using jq + splash_screen=$(jq -r --arg current_day "$current_day" --arg current_time "$current_time" ' + .splash_screens | to_entries[] | + select( + ($current_day | tonumber) >= (.value.start_date | tonumber) and + ($current_day | tonumber) <= (.value.end_date | tonumber) and + ($current_time | tonumber) >= (.value.start_time | tonumber) and + ($current_time | tonumber) <= (.value.end_time | tonumber) + ) | .value.filename' $features) + + # Determine the splash file to use + if [[ -n "$splash_screen" ]]; then + new_splash_file="$splashscreen_dir/$splash_screen" else new_splash_file="$default_splash_file" fi @@ -602,6 +625,62 @@ easter_eggs() { cp -f "$new_splash_file" "$current_splash_file" # Deploy assigned splash screen } +install_release() { + # Logging the release tag and URL + log d "Attempting to install release: $1 from repo $update_repo" + + # Construct the URL for the flatpak file + + if [ "$(get_setting_value "$rd_conf" "update_repo" "retrodeck" "options")" == "RetroDECK" ]; then + iscooker="" + else + iscooker="-cooker" + fi + + local flatpak_url="https://github.com/$git_organization_name/$update_repo/releases/download/$1/RetroDECK$iscooker.flatpak" + log d "Constructed flatpak URL: $flatpak_url" + + # Confirm installation with the user + zenity --question --icon-name=net.retrodeck.retrodeck --no-wrap \ + --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ + --title "RetroDECK Updater" \ + --text="$1 will be now installed.\nThe update process may take several minutes.\n\nAfter the update is complete, RetroDECK will close. When you run it again, you will be using the latest version.\n\nDo you want to continue?" + + rc=$? # Capture return code + if [[ $rc == "1" ]]; then # If the user clicks "Cancel" + return 0 + fi + + ( + mkdir -p "$rdhome/RetroDECK_Updates" + + # Download the flatpak file + wget -P "$rdhome/RetroDECK_Updates" $flatpak_url -O "$rdhome/RetroDECK_Updates/RetroDECK$iscooker.flatpak" + + # Check if the download was successful + if [[ $? -ne 0 ]]; then + configurator_generic_dialog "Error" "Failed to download the flatpak file. Please check the release tag and try again." + return 1 + fi + + # Remove the current version before installing the new one to avoid duplicates + flatpak-spawn --host flatpak remove --noninteractive -y net.retrodeck.retrodeck + + # Install the new version + flatpak-spawn --host flatpak install --user --bundle --noninteractive -y "$rdhome/RetroDECK_Updates/RetroDECK$iscooker.flatpak" + + # Cleanup old bundles to save space + rm -rf "$rdhome/RetroDECK_Updates" + ) | + zenity --icon-name=net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \ + --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ + --title "RetroDECK Updater" \ + --text="RetroDECK is updating to the selected version, please wait." + + configurator_generic_dialog "RetroDECK Online Update" "The update process is now complete!\n\nRetroDECK will now quit." + quit_retrodeck +} + ponzu() { # This function is used to extract some specific appimages # Check if any of the specified files exist @@ -705,76 +784,191 @@ ponzu_remove() { configurator_retrodeck_tools_dialog } -# TODO: this function is not yet used -branch_selector() { - log d "Fetch branches from GitHub API excluding \"main\"" - branches=$(curl -s https://api.github.com/repos/XargonWan/RetroDECK/branches | grep '"name":' | awk -F '"' '$4 != "main" {print $4}') +release_selector() { + # Show a progress bar + ( + while true; do + echo "# Fetching all available releases from GitHub repositories... Please wait. This may take some time." ; sleep 1 + done + ) | zenity --progress --title="Fetching Releases" --text="Fetching releases..." --pulsate --no-cancel --auto-close --width=500 --height=150 & + + progress_pid=$! # save process PID to kill it later - # Create an array to store branch names - branch_array=() + log d "Fetching releases from GitHub API for repository $cooker_repository_name" + + # Fetch the main release from the RetroDECK repository + log d "Fetching latest main release from GitHub API for repository RetroDECK" + local main_release=$(curl -s https://api.github.com/repos/$git_organization_name/RetroDECK/releases/latest) - # Loop through each branch and add it to the array - while IFS= read -r branch; do - branch_array+=("$branch") - done <<< "$branches" - # TODO: logging - Creating array of branch names + if [[ -z "$main_release" ]]; then + log e "Failed to fetch the main release" + kill $progress_pid # kill the progress bar + configurator_generic_dialog "Error" "Unable to fetch the main release. Please check your network connection or try again later." + return 1 + fi - # Display branches in a Zenity list dialog - selected_branch=$( + main_tag_name=$(echo "$main_release" | jq -r '.tag_name') + main_published_at=$(echo "$main_release" | jq -r '.published_at') + + # Convert published_at to human-readable format for the main release + main_human_readable_date=$(date -d "$main_published_at" +"%d %B %Y %H:%M") + + # Add the main release as the first entry in the release array + local release_array=("Main Release" "$main_tag_name" "$main_human_readable_date") + + # Fetch all releases (including draft and pre-release) from the Cooker repository + local releases=$(curl -s https://api.github.com/repos/$git_organization_name/$cooker_repository_name/releases?per_page=100) + + if [[ -z "$releases" ]]; then + log e "Failed to fetch releases or no releases available" + kill $progress_pid # kill the progress bar + configurator_generic_dialog "Error" "Unable to fetch releases. Please check your network connection or try again later." + return 1 + fi + + # Loop through each release and add to the release array + while IFS= read -r release; do + tag_name=$(echo "$release" | jq -r '.tag_name') + published_at=$(echo "$release" | jq -r '.published_at') + draft=$(echo "$release" | jq -r '.draft') + prerelease=$(echo "$release" | jq -r '.prerelease') + + # Classifying releases + if echo "$tag_name" | grep -q "PR"; then + status="Pull Request" + elif [[ "$draft" == "true" ]]; then + status="Draft" + elif [[ "$prerelease" == "true" ]]; then + status="Pre-release" + elif [[ "$cooker_repository_name" == *"Cooker"* ]]; then + status="Cooker" + else + status="Main" + fi + + # Convert published_at to human-readable format, if available + if [[ "$published_at" != "null" ]]; then + human_readable_date=$(date -d "$published_at" +"%d %B %Y %H:%M") + else + human_readable_date="Not published" + fi + + # Ensure fields are properly aligned for Zenity + release_array+=("$status" "$tag_name" "$human_readable_date") + + done < <(echo "$releases" | jq -c '.[]' | sort -t: -k3,3r) + + # kill the progress bar before opening the release list window + kill $progress_pid + + if [[ ${#release_array[@]} -eq 0 ]]; then + configurator_generic_dialog "RetroDECK Updater" "No available releases found, exiting." + log d "No available releases found" + return 1 + fi + + log d "Showing available releases" + + # Display releases in a Zenity list dialog with three columns + selected_release=$( rd_zenity --list \ --icon-name=net.retrodeck.retrodeck \ --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ - --title "RetroDECK Configurator Cooker Branch - Select Branch" \ - --column="Branch" --width=1280 --height=800 "${branch_array[@]}" + --title "RetroDECK Configurator Cooker Releases - Select Release" \ + --column="Branch" --column="Release Tag" --column="Published Date" --width=1280 --height=800 \ + --separator="|" --print-column='ALL' "${release_array[@]}" ) - # TODO: logging - Displaying branches in Zenity list dialog - # Display warning message - if [ $selected_branch ]; then - rd_zenity --question --icon-name=net.retrodeck.retrodeck --no-wrap \ - --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ - --title "RetroDECK Configurator Cooker Branch - Switch Branch" \ - --text="Are you sure you want to move to \"$selected_branch\" branch?" - # Output selected branch - echo "Selected branch: $selected_branch" # TODO: logging - Outputting selected branch + log i "Selected release: $selected_release" + + if [[ -z "$selected_release" ]]; then + log d "No release selected, user exited." + return 1 + fi + + # Parse the selected release using the pipe separator + IFS='|' read -r selected_branch selected_tag selected_date <<< "$selected_release" + selected_branch=$(echo "$selected_branch" | xargs) # Trim any extra spaces + selected_tag=$(echo "$selected_tag" | xargs) + selected_date=$(echo "$selected_date" | xargs) + + log d "Selected branch: $selected_branch, release: $selected_tag, date: $selected_date" + + rd_zenity --question --icon-name=net.retrodeck.retrodeck --no-wrap \ + --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ + --title "RetroDECK Configurator Cooker Release - Confirm Selection" \ + --text="Are you sure you want to install the following release?\n\n$selected_branch: \"$selected_tag\"\nPublished on $selected_date?" + + if [[ $? -eq 0 ]]; then + log d "User confirmed installation of release $selected_tag" + + if echo "$selected_release" | grep -q "Main Release"; then + set_setting_value $rd_conf "update_repo" "$main_repository_name" retrodeck "options" + log i "Switching to main channel" + else + set_setting_value $rd_conf "update_repo" "$cooker_repository_name" retrodeck "options" + log i "Switching to cooker channel" + fi + set_setting_value "$rd_conf" "branch" "$selected_branch" "retrodeck" "options" - branch="feat/sftp" - # Get the latest release for the specified branch - latest_release=$(curl -s "https://api.github.com/repos/XargonWan/RetroDECK-cooker/releases" | jq ".[] | select(.target_commitish == \"$branch_name\") | .tag_name" | head -n 1) - # TODO: this will fail because the builds coming from the PRs are not published yet, we should fix them - # TODO: form a proper url: $flatpak_file_url - configurator_generic_dialog "RetroDECK Online Update" "The update process may take several minutes.\n\nAfter the update is complete, RetroDECK will close. When you run it again you will be using the latest version." - ( - local desired_flatpak_file=$(curl --silent $flatpak_file_url | grep '"browser_download_url":' | sed -E 's/.*"([^"]+)".*/\1/') - create_dir "$rdhome/RetroDECK_Updates" - wget -P "$rdhome/RetroDECK_Updates" $desired_flatpak_file - flatpak-spawn --host flatpak remove --noninteractive -y net.retrodeck.retrodeck # Remove current version before installing new one, to avoid duplicates - flatpak-spawn --host flatpak install --user --bundle --noninteractive -y "$rdhome/RetroDECK_Updates/RetroDECK-cooker.flatpak" - rm -rf "$rdhome/RetroDECK_Updates" # Cleanup old bundles to save space - ) | - rd_zenity --icon-name=net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \ - --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ - --title "RetroDECK Updater" \ - --text="RetroDECK is updating to the latest \"$selected_branch\" version, please wait." - configurator_generic_dialog "RetroDECK Online Update" "The update process is now complete!\n\nPlease restart RetroDECK to keep the fun going." - exit 1 + log d "Set branch to $selected_branch in configuration" + install_release $selected_tag + else - configurator_generic_dialog "No branch selected, exiting." - # TODO: logging + log d "User canceled installation" + return 0 fi } quit_retrodeck() { log i "Quitting ES-DE" pkill -f "es-de" + + # if steam sync is on do the magic + if [[ $(get_setting_value "$rd_conf" "steam_sync" retrodeck "options") == "true" ]]; then + ( + source /app/libexec/steam_sync.sh + add_to_steam "$(ls "$rdhome/ES-DE/gamelists/")" + ) | + zenity --progress \ + --title="Syncing with Steam" \ + --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ + --text="\t\t\t\t\tSyncing favorite games with Steam.\n\nNOTE: This operation may take some time depending on the size of your library.\nFeel free to leave this in the background and switch to another application.\n\n" \ + --percentage=25 \ + --pulsate \ + --width=500 \ + --height=150 \ + --auto-close \ + --auto-kill + fi log i "Shutting down RetroDECK's framework" pkill -f "retrodeck" + log i "See you next time" + exit } start_retrodeck() { - easter_eggs # Check if today has a surprise splashscreen and load it if so + get_steam_user # get steam user info + splash_screen # Check if today has a surprise splashscreen and load it if so ponzu log i "Starting RetroDECK v$version" es-de } + +# Function to convert XML tags to Markdown +convert_to_markdown() { + local xml_content=$(cat "$1") + local output_file="$1.md" + + # Convert main tags + echo "$xml_content" | \ + sed -e 's|

    \(.*\)

    |## \1|g' \ + -e 's|
      ||g' \ + -e 's|
    ||g' \ + -e 's|

    \(.*\)

    |# \1|g' \ + -e 's|
  • \(.*\)
  • |- \1|g' \ + -e 's|||g' \ + -e 's|||g' \ + -e '/<[^>]*>/d' > "$output_file" # Remove any other XML tags and output to .md file +} diff --git a/functions/post_build_check.sh b/functions/post_build_check.sh new file mode 100755 index 00000000..dcecd71f --- /dev/null +++ b/functions/post_build_check.sh @@ -0,0 +1,55 @@ +#!/bin/bash +# todo create launch test commands ie mame -help, ruffle --version +# Log file +LOG_FILE="$HOME/check.log" +# Clear previous log +> "$LOG_FILE" +# Extract launch commands and CLI arguments using jq +mapfile -t commands < <(jq -r '.emulator | to_entries[] | [.value.launch, .value."cli-arg"] | @tsv' /app/retrodeck/config/retrodeck/reference_lists//features.json) +# Timeout duration in seconds +TIMEOUT=3 +# Function to run command with timeout +run_and_check() { + local cmd="$1" + local cli_arg="${2:-}" + local full_cmd="${cmd}${cli_arg:+ $cli_arg}" + + # Verify command exists + if ! command -v "$cmd" &> /dev/null; then + echo "✗ Command not found: $cmd (Exit Code: 127)" | tee -a "$LOG_FILE" + return 127 + fi + + # Run command with timeout + timeout -s TERM $TIMEOUT $full_cmd + local exit_code=$? + + # Log the results + echo "Command: $full_cmd, Exit Code: $exit_code" | tee -a "$LOG_FILE" + + case $exit_code in + 0) + echo "✓ $full_cmd completed successfully" | tee -a "$LOG_FILE" + ;; + 124) + echo "✗ $full_cmd terminated after $TIMEOUT seconds" | tee -a "$LOG_FILE" + ;; + 137) + echo "✗ $full_cmd killed" | tee -a "$LOG_FILE" + ;; + *) + echo "✗ $full_cmd failed" | tee -a "$LOG_FILE" + ;; + esac + + return $exit_code +} + +# Execute commands +for entry in "${commands[@]}"; do + # Split the TSV entry into command and CLI arg + IFS=$'\t' read -r cmd cli_arg <<< "$entry" + + # Run the command with optional CLI argument + run_and_check "$cmd" "$cli_arg" +done \ No newline at end of file diff --git a/functions/post_update.sh b/functions/post_update.sh index d9199f94..3693262a 100644 --- a/functions/post_update.sh +++ b/functions/post_update.sh @@ -43,9 +43,9 @@ post_update() { dir_prep "$bios_folder/pico-8" "$HOME/.lexaloffle/pico-8" # Store binary and config files together. The .lexaloffle directory is a hard-coded location for the PICO-8 config file, cannot be changed dir_prep "$saves_folder/pico-8" "$bios_folder/pico-8/cdata" # PICO-8 saves folder structure was backwards, fixing for consistency. - cp -f "$emuconfigs/citra/qt-config.ini" /var/config/citra-emu/qt-config.ini + cp -f "$config/citra/qt-config.ini" /var/config/citra-emu/qt-config.ini sed -i 's#RETRODECKHOMEDIR#'$rdhome'#g' /var/config/citra-emu/qt-config.ini - cp -fr "$emuconfigs/yuzu/"* /var/config/yuzu/ + cp -fr "$config/yuzu/"* /var/config/yuzu/ sed -i 's#RETRODECKHOMEDIR#'$rdhome'#g' /var/config/yuzu/qt-config.ini # Remove unneeded tools folder, as location has changed to RO space @@ -57,7 +57,7 @@ post_update() { # Changed settings in Duckstation and PCSX2: The "ask on exit" was disabled and "save on exit" was enabled. # The default configs have been updated for new installs and resets, a patch was created to address existing installs. - deploy_multi_patch "emu-configs/patches/updates/064b_update.patch" + deploy_multi_patch "config/patches/updates/064b_update.patch" fi if [[ $(check_version_is_older_than "0.6.5b") == "true" ]]; then # In version 0.6.5b, the following changes were made: @@ -95,13 +95,13 @@ post_update() { conf_read mv -f "$pcsx2conf" "$pcsx2conf.bak" - generate_single_patch "$emuconfigs/PCSX2/PCSX2.ini" "$pcsx2conf.bak" "/var/config/PCSX2/inis/PCSX2-cheevos-upgrade.patch" pcsx2 - deploy_single_patch "$emuconfigs/PCSX2/PCSX2.ini" "/var/config/PCSX2/inis/PCSX2-cheevos-upgrade.patch" "$pcsx2conf" + generate_single_patch "$config/PCSX2/PCSX2.ini" "$pcsx2conf.bak" "/var/config/PCSX2/inis/PCSX2-cheevos-upgrade.patch" pcsx2 + deploy_single_patch "$config/PCSX2/PCSX2.ini" "/var/config/PCSX2/inis/PCSX2-cheevos-upgrade.patch" "$pcsx2conf" rm -f "/var/config/PCSX2/inis/PCSX2-cheevos-upgrade.patch" dir_prep "/var/config/duckstation" "/var/data/duckstation" mv -f "$duckstationconf" "$duckstationconf.bak" - generate_single_patch "$emuconfigs/duckstation/settings.ini" "$duckstationconf.bak" "/var/config/duckstation/duckstation-cheevos-upgrade.patch" pcsx2 - deploy_single_patch "$emuconfigs/duckstation/settings.ini" "/var/config/duckstation/duckstation-cheevos-upgrade.patch" "$duckstationconf" + generate_single_patch "$config/duckstation/settings.ini" "$duckstationconf.bak" "/var/config/duckstation/duckstation-cheevos-upgrade.patch" pcsx2 + deploy_single_patch "$config/duckstation/settings.ini" "/var/config/duckstation/duckstation-cheevos-upgrade.patch" "$duckstationconf" rm -f "/var/config/duckstation/duckstation-cheevos-upgrade.patch" create_dir "$mods_folder" @@ -125,15 +125,15 @@ post_update() { dir_prep "$rdhome/gamelists" "/var/config/emulationstation/ES-DE/gamelists" dir_prep "$borders_folder" "/var/config/retroarch/overlays/borders" - rsync -rlD --mkpath "/app/retrodeck/emu-configs/retroarch/borders/" "/var/config/retroarch/overlays/borders/" + rsync -rlD --mkpath "/app/retrodeck/config/retroarch/borders/" "/var/config/retroarch/overlays/borders/" - rsync -rlD --mkpath "$emuconfigs/defaults/retrodeck/presets/remaps/" "/var/config/retroarch/config/remaps/" + rsync -rlD --mkpath "$config/retrodeck/presets/remaps/" "/var/config/retroarch/config/remaps/" if [[ ! -f "$bios_folder/capsimg.so" ]]; then cp -f "/app/retrodeck/extras/Amiga/capsimg.so" "$bios_folder/capsimg.so" fi - cp -f $emuconfigs/rpcs3/vfs.yml /var/config/rpcs3/vfs.yml + cp -f $config/rpcs3/vfs.yml /var/config/rpcs3/vfs.yml sed -i 's^\^$(EmulatorDir): .*^$(EmulatorDir): '"$bios_folder/rpcs3/"'^' "$rpcs3vfsconf" set_setting_value "$rpcs3vfsconf" "/games/" "$roms_folder/ps3/" "rpcs3" if [[ -d "$roms_folder/ps3/emudir" ]]; then # The old location exists, meaning the emulator was run at least once. @@ -298,7 +298,7 @@ post_update() { #es-de --home "/var/config/" --create-system-dirs es-de --create-system-dirs - fi + fi # end of 0.8.0b if [[ $(check_version_is_older_than "0.8.1b") == "true" ]]; then log i "In version 0.8.1b, the following changes were made that required config file updates/reset or other changes to the filesystem:" @@ -322,21 +322,21 @@ post_update() { log i "Installing the missing ScummVM assets and renaming \"$mods_folder/RetroArch/ScummVM/themes\" into \"theme\"" mv -f "$mods_folder/RetroArch/ScummVM/themes" "$mods_folder/RetroArch/ScummVM/theme" - unzip -o "$emuconfigs/retroarch/ScummVM.zip" 'scummvm/extra/*' -d /tmp - unzip -o "$emuconfigs/retroarch/ScummVM.zip" 'scummvm/theme/*' -d /tmp + unzip -o "$config/retroarch/ScummVM.zip" 'scummvm/extra/*' -d /tmp + unzip -o "$config/retroarch/ScummVM.zip" 'scummvm/theme/*' -d /tmp mv -f /tmp/scummvm/extra "$mods_folder/RetroArch/ScummVM" mv -f /tmp/scummvm/theme "$mods_folder/RetroArch/ScummVM" rm -rf /tmp/extra /tmp/theme log i "Placing cheats in \"/var/data/mame/cheat\"" - unzip -j -o "$emuconfigs/mame/cheat0264.zip" 'cheat.7z' -d "/var/data/mame/cheat" + unzip -j -o "$config/mame/cheat0264.zip" 'cheat.7z' -d "/var/data/mame/cheat" log d "Verifying with user if they want to reset Ryujinx" if [[ "$(configurator_generic_question_dialog "RetroDECK 0.8.1b Ryujinx Reset" "In RetroDECK 0.8.0b the Ryujinx emulator was not properly initialized for upgrading users.\nThis would cause Ryujinx to not work properly.\n\nWould you like to reset Ryujinx to default RetroDECK settings now?\n\nIf you have made your own changes to the Ryujinx config, you can decline this reset.")" == "true" ]]; then log d "User agreed to Ryujinx reset" prepare_component "reset" "ryujinx" fi - fi + fi # end of 0.8.1b if [[ $(check_version_is_older_than "0.8.2b") == "true" ]]; then log i "Vita3K changed some paths, reflecting them: moving \"/var/data/Vita3K\" in \"/var/config/Vita3K\"" @@ -348,14 +348,12 @@ post_update() { move "$rdhome/collections" "$rdhome/ES-DE/collections" && log d "Move of \"$rdhome/collections/\" in \"$rdhome/ES-DE\" folder completed" log i "Since in this version we moved to a PR build of Ryujinx we need to symlink it." ln -sv $ryujinxconf "$(dirname $ryujinxconf)/PRConfig.json" - fi + fi #end of 0.8.2b -if [[ $(check_version_is_older_than "0.8.3b") == "true" ]]; then - # In version 0.8.3b, the following changes were made: - # - Recovery from a failed move of the themes, downloaded_media and gamelists folder to their new ES-DE locations. - - # Check if any of the directories exist - if [ -d "$rdhome/themes" ] || [ -d "$rdhome/downloaded_media" ] || [ -d "$rdhome/gamelists" ] || [ -d "$rdhome/collections" ]; then + if [[ $(check_version_is_older_than "0.8.3b") == "true" ]]; then + # In version 0.8.3b, the following changes were made: + # - Recovery from a failed move of the themes, downloaded_media and gamelists folder to their new ES-DE locations. + if [[ ! -d "$rdhome/ES-DE/themes" || ! -d "$rdhome/ES-DE/downloaded_media" || ! -d "$rdhome/ES-DE/gamelists" ]]; then log i "Moving ES-DE downloaded_media, gamelist, and themes from \"$rdhome\" to \"$rdhome/ES-DE\" due to a RetroDECK Framework bug" # Ask user if they want to move and overwrite the data @@ -366,122 +364,194 @@ if [[ $(check_version_is_older_than "0.8.3b") == "true" ]]; then move_cmd="move" # Use existing move function log i "User chose to move the data without overwriting." fi + fi # end of 0.8.3b - # Move each directory if it exists - if [[ -d "$rdhome/themes" ]]; then - mv -f "$rdhome/themes" "$rdhome/ES-DE/" && log d "Move of \"$rdhome/themes\" in \"$rdhome/ES-DE\" folder completed" + # Check if the version is older than 0.8.4b + if [[ $(check_version_is_older_than "0.8.4b") == "true" ]]; then + # In version 0.8.4b, the following changes were made: + # - Recovery from a failed move of the themes, downloaded_media and gamelists folder to their new ES-DE locations (AGAIN) + + log d "Injecting the new retrodeck/ES-DE subdir into the retrodeck.cfg" + # Check if ES-DE already exists in media_folder or themes_folder + if grep -E '^(media_folder|themes_folder)=.*ES-DE' "$rd_conf"; then + log d "ES-DE path already exists in media_folder or themes_folder" else - log i "ES-DE themes appears to already have been migrated." + # Update the paths if ES-DE does not exist + sed -i -e '/media_folder=/s|retrodeck/|retrodeck/ES-DE/|g' -e '/themes_folder=/s|retrodeck/|retrodeck/ES-DE/|g' "$rd_conf" && log d "Injection successful" + fi + log d "$(grep media_folder "$rd_conf")" + log d "$(grep themes_folder "$rd_conf")" + conf_read + conf_write + + log i "Checking if ES-DE downloaded_media, gamelist, and themes folder must be migrated from \"$rdhome\" to \"$rdhome/ES-DE\" due to a RetroDECK Framework bug" + + # Use rsync to merge directories and overwrite existing files + if [[ -d "$rdhome/themes" ]]; then + rsync -a "$rdhome/themes/" "$rdhome/ES-DE/themes/" && log d "Move of \"$rdhome/themes\" to \"$rdhome/ES-DE/themes\" completed" + rm -rf "$rdhome/themes" # Remove the original directory after merging + else + log i "ES-DE themes appear to have already been migrated." fi if [[ -d "$rdhome/downloaded_media" ]]; then - mv -f "$rdhome/downloaded_media" "$rdhome/ES-DE/" && log d "Move of \"$rdhome/downloaded_media\" in \"$rdhome/ES-DE\" folder completed" + rsync -a "$rdhome/downloaded_media/" "$rdhome/ES-DE/downloaded_media/" && log d "Move of \"$rdhome/downloaded_media\" to \"$rdhome/ES-DE/downloaded_media\" completed" + rm -rf "$rdhome/downloaded_media" # Remove the original directory after merging else - log i "ES-DE downloaded media appears to already have been migrated." + log i "ES-DE downloaded media appear to have already been migrated." fi if [[ -d "$rdhome/gamelists" ]]; then - mv -f "$rdhome/gamelists" "$rdhome/ES-DE/" && log d "Move of \"$rdhome/gamelists/\" in \"$rdhome/ES-DE\" folder completed" + rsync -a "$rdhome/gamelists/" "$rdhome/ES-DE/gamelists/" && log d "Move of \"$rdhome/gamelists\" to \"$rdhome/ES-DE/gamelists\" completed" + rm -rf "$rdhome/gamelists" # Remove the original directory after merging else - log i "ES-DE gamelists appears to already have been migrated." + log i "ES-DE gamelists appear to have already been migrated." fi if [[ -d "$rdhome/collections" ]]; then - mv -f "$rdhome/collections" "$rdhome/ES-DE/" && log d "Move of \"$rdhome/collections/\" in \"$rdhome/ES-DE\" folder completed" + rsync -a "$rdhome/collections/" "$rdhome/ES-DE/collections/" && log d "Move of \"$rdhome/collections\" to \"$rdhome/ES-DE/collections\" completed" + rm -rf "$rdhome/collections" # Remove the original directory after merging else - log i "ES-DE collections appears to already have been migrated." + log i "ES-DE collections appear to have already been migrated." fi - else - log i "ES-DE folders appears to already have been migrated." - fi - # Better to refresh the paths - set_setting_value "$es_settings" "ROMDirectory" "$roms_folder" "es_settings" - set_setting_value "$es_settings" "MediaDirectory" "$media_folder" "es_settings" - set_setting_value "$es_settings" "UserThemeDirectory" "$themes_folder" "es_settings" -fi -# Check if the version is older than 0.8.4b -if [[ $(check_version_is_older_than "0.8.4b") == "true" ]]; then - # In version 0.8.4b, the following changes were made: - # - Recovery from a failed move of the themes, downloaded_media and gamelists folder to their new ES-DE locations (AGAIN) + # Setting the correct variables once again + set_setting_value "$es_settings" "MediaDirectory" "$media_folder" "es_settings" + set_setting_value "$es_settings" "UserThemeDirectory" "$themes_folder" "es_settings" - log d "Injecting the new retrodeck/ES-DE subdir into the retrodeck.cfg" - # Check if ES-DE already exists in media_folder or themes_folder - if grep -E '^(media_folder|themes_folder)=.*ES-DE' "$rd_conf"; then - log d "ES-DE path already exists in media_folder or themes_folder" - else - # Update the paths if ES-DE does not exist - sed -i -e '/media_folder=/s|retrodeck/|retrodeck/ES-DE/|g' -e '/themes_folder=/s|retrodeck/|retrodeck/ES-DE/|g' "$rd_conf" && log d "Injection successful" - fi - log d "$(grep media_folder "$rd_conf")" - log d "$(grep themes_folder "$rd_conf")" - conf_read - conf_write + fi # end of 0.8.4b - log i "Checking if ES-DE downloaded_media, gamelist, and themes folder must be migrated from \"$rdhome\" to \"$rdhome/ES-DE\" due to a RetroDECK Framework bug" + if [[ $(check_version_is_older_than "0.9.0b") == "true" ]]; then - # Use rsync to merge directories and overwrite existing files - if [[ -d "$rdhome/themes" ]]; then - rsync -a "$rdhome/themes/" "$rdhome/ES-DE/themes/" && log d "Move of \"$rdhome/themes\" to \"$rdhome/ES-DE/themes\" completed" - rm -rf "$rdhome/themes" # Remove the original directory after merging - else - log i "ES-DE themes appear to have already been migrated." - fi + # Create a Zenity window with checkboxes for each reset option and two buttons + while true; do + choices=$(zenity --list --checklist --title="RetroDECK Reset Options" \ + --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ + --text="The following components have been updated and need to be reset or fixed to ensure compatibility with the new version: select the components you want to reset.\n\nNot resetting them may cause serious issues with your installation.\nYou can also reset them manually later via Configurator -> Troubleshooting -> Reset Component.\n\nNote: Your games, saves, game collections and scraped data will not be affected." \ + --column="Select" --column="Component" --column="Description" --width="1100" --height="700" \ + TRUE "ES-DE" "Needs to be reset to accommodate new paths, theme settings, and general configurations" \ + TRUE "Duckstation" "Configuration reset to RetroDECK defaults to ensure compatibility" \ + TRUE "Ryujinx" "Configuration reset, firmware might need to be reinstalled by user" \ + TRUE "Dolphin" "Setting screen size to 'Auto' instead of 'Widescreen' to ensure better game compatibility" \ + TRUE "Primehack" "Setting screen size to 'Auto' instead of 'Widescreen' to ensure better game compatibility" \ + --separator=":" \ + --extra-button="Execute All" \ + --ok-label="Execute Selected Only" \ + --cancel-label="Execute None") - if [[ -d "$rdhome/downloaded_media" ]]; then - rsync -a "$rdhome/downloaded_media/" "$rdhome/ES-DE/downloaded_media/" && log d "Move of \"$rdhome/downloaded_media\" to \"$rdhome/ES-DE/downloaded_media\" completed" - rm -rf "$rdhome/downloaded_media" # Remove the original directory after merging - else - log i "ES-DE downloaded media appear to have already been migrated." - fi + log d "User selected: $choices" + log d "User pressed: $?" - if [[ -d "$rdhome/gamelists" ]]; then - rsync -a "$rdhome/gamelists/" "$rdhome/ES-DE/gamelists/" && log d "Move of \"$rdhome/gamelists\" to \"$rdhome/ES-DE/gamelists\" completed" - rm -rf "$rdhome/gamelists" # Remove the original directory after merging - else - log i "ES-DE gamelists appear to have already been migrated." - fi + # Check if "Execute All" button was pressed + if [[ "$choices" == "Execute All" ]]; then + execute_all=true + break + else + execute_all=false + # Split the choices into an array + IFS=":" read -r -a selected_choices <<< "$choices" + fi - if [[ -d "$rdhome/collections" ]]; then - rsync -a "$rdhome/collections/" "$rdhome/ES-DE/collections/" && log d "Move of \"$rdhome/collections\" to \"$rdhome/ES-DE/collections\" completed" - rm -rf "$rdhome/collections" # Remove the original directory after merging - else - log i "ES-DE collections appear to have already been migrated." - fi + if [[ $? -eq 0 && -n "$choices" ]]; then + if ! zenity --question --title="Confirmation" --text="Are you sure you want to proceed with only the selected options?\n\nThis might cause issues in RetroDECK"; then + log i "User is not sure, showing the checklist window again." + continue + else + log i "User confirmed to proceed with only the selected options." + break + fi + fi - # Setting the correct variables once again - set_setting_value "$es_settings" "MediaDirectory" "$media_folder" "es_settings" - set_setting_value "$es_settings" "UserThemeDirectory" "$themes_folder" "es_settings" + if [[ $? == 0 ]]; then + if ! zenity --question --title="Confirmation" --text="Are you sure you want to skip the reset process?\n\nThis might cause issues in RetroDECK"; then + log i "User is not sure, showing the checklist window again." + continue + else + log i "User confirmed to proceed without any reset." + break + fi + fi -fi + break + done + # Execute the selected resets - # if [[ $(check_version_is_older_than "0.9.0b") == "true" ]]; then - # # Placeholder for version 0.9.0b - # rm /var/config/emulationstation/.emulationstation # remving the old symlink to .emulationstation as it might be not needed anymore - # TODO: change RETRODECKHOMEDIR/bios/cemu in emu-configs/cemu/settings.xml into RETRODECKHOMEDIR/bios/cemu/mlc - # if [ ! -d "$bios_folder/cemu/mlc" ]; then - # log i "Cemu MLC folder was moved from \"$bios_folder/cemu\" to \"$bios_folder/cemu/mlc\", migrating it" - # mv -f "$bios_folder/cemu" "$bios_folder/cemu/mlc" - # # TODO: set setting value mlc_path in settings.xml (check prepare script) - # fi - # if [ -f "/var/data/Cemu/keys.txt" ]; then - # log AND ZENITY "Found Cemu keys.txt" in "/var/data/Cemu/keys.txt", for a better compatibility is better to move it into "$bios_folder/cemu/mlc/keys.txt, do you want to continue? - # if yes: mv "/var/data/Cemu/keys.txt" "$bios_folder/cemu/mlc/keys.txt" - # ln -s "$bios_folder/cemu/mlc/keys.txt" "/var/data/Cemu/keys.txt" <--- AND THIS SHOULD BE EVEN PUT IN THE PREPARATION SCRIPT - # fi - # TODO: is this true? - # log i "Since in this version we restored Ryujinx to a main buikd we don't need the symlink anymore." - # rm "$(dirname $ryujinxconf)/PRConfig.json" - # fi + # ES-DE reset + if [[ "$execute_all" == "true" || " ${selected_choices[@]} " =~ " ES-DE " ]]; then + log i "User agreed to ES-DE reset" + prepare_component "reset" "es-de" + fi + rm -rf "$rd_logs_folder/ES-DE" && log d "Removing the logs/ES-DE folder as we don't need it anymore" + rm -rf "$es_source_logs" && mkdir -p "$es_source_logs" + + # Cemu key file migration + if [[ -f "$XDG_DATA_HOME/Cemu/keys.txt" ]]; then + log i "Found Cemu keys.txt in \"$XDG_DATA_HOME/Cemu/keys.txt\", moving it to \"$bios_folder/cemu/keys.txt\"" + mv -f "$XDG_DATA_HOME/Cemu/keys.txt" "$bios_folder/cemu/keys.txt" + ln -s "$bios_folder/cemu/keys.txt" "$XDG_DATA_HOME/Cemu/keys.txt" + fi + + # Duckstation reset + if [[ "$execute_all" == "true" || " ${selected_choices[@]} " =~ " Duckstation " ]]; then + log i "User agreed to Duckstation reset" + prepare_component "reset" "duckstation" + fi + + # Ryujinx reset + if [[ "$execute_all" == "true" || " ${selected_choices[@]} " =~ " Ryujinx " ]]; then + log i "User agreed to Ryujinx reset" + prepare_component "reset" "ryujinx" + else + create_dir "$logs_folder/ryujinx" + create_dir "$mods_folder/ryujinx" + create_dir "$screenshots_folder/ryujinx" + fi + + # Dolphin reset: Setting screen size to 'Auto' instead of 'Widescreen' to ensure better game compatibility + if [[ "$execute_all" == "true" || " ${selected_choices[@]} " =~ " Dolphin " ]]; then + log i "User agreed to Dolphin reset" + set_setting_value "$dolphingfxconf" "AspectRatio" "0" "dolphin" "Settings" + fi + + # Primehack reset: Setting screen size to 'Auto' instead of 'Widescreen' to ensure better game compatibility + if [[ "$execute_all" == "true" || " ${selected_choices[@]} " =~ " Primehack " ]]; then + log i "User agreed to Primehack reset" + set_setting_value "$primehackgfxconf" "AspectRatio" "0" "dolphin" "Settings" + fi + + # --- ALWAYS EXECUTED --- + + # New components preparation + log i "New components were added in this version, initializing them" + prepare_component "reset" "portmaster" + prepare_component "reset" "ruffle" + update_rd_conf + prepare_component "reset" "steam-rom-manager" + + # RetroArch + log i "Forcing RetroArch to use the new libretro info path" + set_setting_value "$raconf" "libretro_info_path" "/var/config/retroarch/cores" "retroarch" + + log i "Moving Ryujinx data to the new locations" + mv -f "/var/config/Ryujinx/bis"/* "$saves_folder/switch/ryujinx/nand" && rm -rf "/var/config/Ryujinx/bis" && log i "Migrated Ryujinx nand data to the new location" + mv -f "/var/config/Ryujinx/sdcard"/* "$saves_folder/switch/ryujinx/sdcard" && rm -rf "/var/config/Ryujinx/sdcard" && log i "Migrated Ryujinx sdcard data to the new location" + mv -f "/var/config/Ryujinx/bis/system/Contents/registered"/* "$bios_folder/switch/firmware" && rm -rf "/var/config/Ryujinx/bis/system/Contents/registered" && log i "Migration of Ryujinx firmware data to the new location" + mv -f "/var/config/Ryujinx/system"/* "$bios_folder/switch/keys" && rm -rf "/var/config/Ryujinx/system" && log i "Migrated Ryujinx keys data to the new location" + mv -f "/var/config/Ryujinx/mods"/* "$mods_folder/ryujinx" && rm -rf "/var/config/Ryujinx/mods" && log i "Migrated Ryujinx mods data to the new location" + mv -f "/var/config/Ryujinx/screenshots"/* "$screenshots_folder/ryujinx" && rm -rf "/var/config/Ryujinx/screenshots" && log i "Migrated Ryujinx screenshots to the new location" + + fi # end of 0.9.0b # The following commands are run every time. if [[ -d "/var/data/dolphin-emu/Load/DynamicInputTextures" ]]; then # Refresh installed textures if they have been enabled - rsync -rlD --mkpath "/app/retrodeck/extras/DynamicInputTextures/" "/var/data/dolphin-emu/Load/DynamicInputTextures/" + log i "Refreshing installed textures for Dolphin..." + rsync -rlD --mkpath "/app/retrodeck/extras/DynamicInputTextures/" "/var/data/dolphin-emu/Load/DynamicInputTextures/" && log i "Done" fi if [[ -d "/var/data/primehack/Load/DynamicInputTextures" ]]; then # Refresh installed textures if they have been enabled - rsync -rlD --mkpath "/app/retrodeck/extras/DynamicInputTextures/" "/var/data/primehack/Load/DynamicInputTextures/" + log i "Refreshing installed textures for Dolphin..." + rsync -rlD --mkpath "/app/retrodeck/extras/DynamicInputTextures/" "/var/data/primehack/Load/DynamicInputTextures/" && log i "Done" fi if [[ ! -z $(find "$HOME/.steam/steam/controller_base/templates/" -maxdepth 1 -type f -iname "RetroDECK*.vdf") || ! -z $(find "$HOME/.var/app/com.valvesoftware.Steam/.steam/steam/controller_base/templates/" -maxdepth 1 -type f -iname "RetroDECK*.vdf") ]]; then # If RetroDECK controller profile has been previously installed diff --git a/functions/prepare_component.sh b/functions/prepare_component.sh index c540de97..3d05b4fc 100644 --- a/functions/prepare_component.sh +++ b/functions/prepare_component.sh @@ -17,16 +17,26 @@ prepare_component() { log d "Preparing component: \"$component\", action: \"$action\"" if [[ "$component" == "retrodeck" ]]; then + log i "--------------------------------" + log i "Prepearing RetroDECK framework" + log i "--------------------------------" component_found="true" if [[ "$action" == "reset" ]]; then # Update the paths of all folders in retrodeck.cfg and create them while read -r config_line; do local current_setting_name=$(get_setting_name "$config_line" "retrodeck") if [[ ! $current_setting_name =~ (rdhome|sdcard) ]]; then # Ignore these locations local current_setting_value=$(get_setting_value "$rd_conf" "$current_setting_name" "retrodeck" "paths") - declare -g "$current_setting_name=$rdhome/${current_setting_value#*retrodeck/}" #removes everything until "retrodeck" and adds the actual retrodeck folder + log d "Red setting: $current_setting_name=$current_setting_value" + # Extract the part of the setting value after "retrodeck/" + local relative_path="${current_setting_value#*retrodeck/}" + # Construct the new setting value + local new_setting_value="$rdhome/$relative_path" + log d "New setting: $current_setting_name=$new_setting_value" + # Declare the global variable with the new setting value + declare -g "$current_setting_name=$new_setting_value" log d "Setting: $current_setting_name=$current_setting_value" - if [[ ! $current_setting_name == "logs_folder" ]]; then # Don't create a logs folder normally, we want to maintain the current files exactly to not lose early-install logs. - create_dir "$rdhome/${current_setting_value#*retrodeck/}" + if [[ ! $current_setting_name == "logs_folder" ]]; then # Don't create a logs folder normally, we want to maintain the current files exactly to not lose early-install logs. + create_dir "$new_setting_value" else # Log folder-specific actions mv "$rd_logs_folder" "$logs_folder" # Move existing logs folder from internal to userland ln -sf "$logs_folder" "$rd_logs_folder" # Link userland logs folder back to statically-written location @@ -66,9 +76,8 @@ prepare_component() { set_setting_value "$es_settings" "UserThemeDirectory" "$themes_folder" "es_settings" dir_prep "$rdhome/ES-DE/gamelists" "/var/config/ES-DE/gamelists" dir_prep "$rdhome/ES-DE/collections" "/var/config/ES-DE/collections" - dir_prep "$rd_logs_folder/ES-DE" "$es_source_logs" + dir_prep "$rdhome/ES-DE/custom_systems" "/var/config/ES-DE/custom_systems" log d "Generating roms system folders" - #es-de --home /var/config/ES-DE --create-system-dirs es-de --create-system-dirs update_splashscreens fi @@ -80,6 +89,26 @@ prepare_component() { fi fi + if [[ "$component" =~ ^(steam-rom-manager|steamrommanager|all)$ ]]; then + component_found="true" + log i "-----------------------------" + log i "Prepearing Steam ROM Manager" + log i "-----------------------------" + + local srm_userdata="/var/config/steam-rom-manager/userData" + create_dir -d "/var/config/steam-rom-manager" + create_dir -d "$srm_userdata" + cp -fv "$config/steam-rom-manager/"*.json $srm_userdata + + log i "Updating steamDirectory and romDirectory lines in $srm_userdata/userSettings.json" + jq '.environmentVariables.steamDirectory = "'$HOME'/.steam/steam"' "$srm_userdata/userSettings.json" > "$srm_userdata/tmp.json" && mv -f "$srm_userdata/tmp.json" "$srm_userdata/userSettings.json" + jq '.environmentVariables.romsDirectory = "'$rdhome'/.sync"' "$srm_userdata/userSettings.json" > "$srm_userdata/tmp.json" && mv -f "$srm_userdata/tmp.json" "$srm_userdata/userSettings.json" + + get_steam_user + populate_steamuser_srm + + fi + if [[ "$component" =~ ^(retroarch|all)$ ]]; then component_found="true" log i "--------------------------------" @@ -88,8 +117,8 @@ prepare_component() { if [[ "$action" == "reset" ]]; then # Run reset-only commands if [[ $multi_user_mode == "true" ]]; then # Multi-user actions create_dir -d "$multi_user_data_folder/$SteamAppUser/config/retroarch" - cp -fv $emuconfigs/retroarch/retroarch.cfg "$multi_user_data_folder/$SteamAppUser/config/retroarch/" - cp -fv $emuconfigs/retroarch/retroarch-core-options.cfg "$multi_user_data_folder/$SteamAppUser/config/retroarch/" + cp -fv $config/retroarch/retroarch.cfg "$multi_user_data_folder/$SteamAppUser/config/retroarch/" + cp -fv $config/retroarch/retroarch-core-options.cfg "$multi_user_data_folder/$SteamAppUser/config/retroarch/" else # Single-user actions create_dir -d /var/config/retroarch dir_prep "$bios_folder" "/var/config/retroarch/system" @@ -98,12 +127,12 @@ prepare_component() { cp -rf /app/share/libretro/shaders /var/config/retroarch/ dir_prep "$rdhome/shaders/retroarch" "/var/config/retroarch/shaders" rsync -rlD --mkpath "/app/share/libretro/cores/" "/var/config/retroarch/cores/" - cp -fv $emuconfigs/retroarch/retroarch.cfg /var/config/retroarch/ - cp -fv $emuconfigs/retroarch/retroarch-core-options.cfg /var/config/retroarch/ - rsync -rlD --mkpath "$emuconfigs/retroarch/core-overrides/" "/var/config/retroarch/config/" - rsync -rlD --mkpath "$emuconfigs/defaults/retrodeck/presets/remaps/" "/var/config/retroarch/config/remaps/" + cp -fv $config/retroarch/retroarch.cfg /var/config/retroarch/ + cp -fv $config/retroarch/retroarch-core-options.cfg /var/config/retroarch/ + rsync -rlD --mkpath "$config/retroarch/core-overrides/" "/var/config/retroarch/config/" + rsync -rlD --mkpath "$config/retrodeck/presets/remaps/" "/var/config/retroarch/config/remaps/" dir_prep "$borders_folder" "/var/config/retroarch/overlays/borders" - rsync -rlD --mkpath "/app/retrodeck/emu-configs/retroarch/borders/" "/var/config/retroarch/overlays/borders/" + rsync -rlD --mkpath "/app/retrodeck/config/retroarch/borders/" "/var/config/retroarch/overlays/borders/" set_setting_value "$raconf" "savefile_directory" "$saves_folder" "retroarch" set_setting_value "$raconf" "savestate_directory" "$states_folder" "retroarch" set_setting_value "$raconf" "screenshot_directory" "$screenshots_folder" "retroarch" @@ -160,11 +189,11 @@ prepare_component() { log i "-----------------------------------------------------------" log i "Prepearing ScummVM LIBRETRO" log i "-----------------------------------------------------------" - cp -fv "$emuconfigs/retroarch/scummvm.ini" "$ra_scummvm_conf" + cp -fv "$config/retroarch/scummvm.ini" "$ra_scummvm_conf" create_dir "$mods_folder/RetroArch/ScummVM/icons" log i "Installing ScummVM assets" - unzip -o "$emuconfigs/retroarch/ScummVM.zip" 'scummvm/extra/*' -d /tmp - unzip -o "$emuconfigs/retroarch/ScummVM.zip" 'scummvm/theme/*' -d /tmp + unzip -o "$config/retroarch/ScummVM.zip" 'scummvm/extra/*' -d /tmp + unzip -o "$config/retroarch/ScummVM.zip" 'scummvm/theme/*' -d /tmp mv -f /tmp/scummvm/extra "$mods_folder/RetroArch/ScummVM" mv -f /tmp/scummvm/theme "$mods_folder/RetroArch/ScummVM" rm -rf /tmp/extra /tmp/theme @@ -223,7 +252,7 @@ prepare_component() { log i "------------------------" if [[ $multi_user_mode == "true" ]]; then # Multi-user actions create_dir -d "$multi_user_data_folder/$SteamAppUser/config/citra-emu" - cp -fv $emuconfigs/citra/qt-config.ini "$multi_user_data_folder/$SteamAppUser/config/citra-emu/qt-config.ini" + cp -fv $config/citra/qt-config.ini "$multi_user_data_folder/$SteamAppUser/config/citra-emu/qt-config.ini" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/citra-emu/qt-config.ini" "nand_directory" "$saves_folder/n3ds/citra/nand/" "citra" "Data%20Storage" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/citra-emu/qt-config.ini" "sdmc_directory" "$saves_folder/n3ds/citra/sdmc/" "citra" "Data%20Storage" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/citra-emu/qt-config.ini" "Paths\gamedirs\3\path" "$roms_folder/n3ds" "citra" "UI" @@ -231,7 +260,7 @@ prepare_component() { dir_prep "$multi_user_data_folder/$SteamAppUser/config/citra-emu" "/var/config/citra-emu" else # Single-user actions create_dir -d /var/config/citra-emu/ - cp -f $emuconfigs/citra/qt-config.ini /var/config/citra-emu/qt-config.ini + cp -f $config/citra/qt-config.ini /var/config/citra-emu/qt-config.ini set_setting_value "$citraconf" "nand_directory" "$saves_folder/n3ds/citra/nand/" "citra" "Data%20Storage" set_setting_value "$citraconf" "sdmc_directory" "$saves_folder/n3ds/citra/sdmc/" "citra" "Data%20Storage" set_setting_value "$citraconf" "Paths\gamedirs\3\path" "$roms_folder/n3ds" "citra" "UI" @@ -269,15 +298,16 @@ prepare_component() { log i "----------------------" if [[ $multi_user_mode == "true" ]]; then # Multi-user actions create_dir -d "$multi_user_data_folder/$SteamAppUser/config/Cemu" - cp -fr "$emuconfigs/cemu/"* "$multi_user_data_folder/$SteamAppUser/config/Cemu/" + cp -fr "$config/cemu/"* "$multi_user_data_folder/$SteamAppUser/config/Cemu/" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/Cemu/settings.ini" "mlc_path" "$bios_folder/cemu" "cemu" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/Cemu/settings.ini" "Entry" "$roms_folder/wiiu" "cemu" "GamePaths" dir_prep "$multi_user_data_folder/$SteamAppUser/config/Cemu" "/var/config/Cemu" else create_dir -d /var/config/Cemu/ - cp -fr "$emuconfigs/cemu/"* /var/config/Cemu/ + cp -fr "$config/cemu/"* /var/config/Cemu/ set_setting_value "$cemuconf" "mlc_path" "$bios_folder/cemu" "cemu" set_setting_value "$cemuconf" "Entry" "$roms_folder/wiiu" "cemu" "GamePaths" + rm -rf "$XDG_DATA_HOME/Cemu/keys.txt" && ln -s "$bios_folder/cemu/keys.txt" "$XDG_DATA_HOME/Cemu/keys.txt" && log d "Linked $bios_folder/cemu/keys.txt to $XDG_DATA_HOME/Cemu/keys.txt" fi # Shared actions dir_prep "$saves_folder/wiiu/cemu" "$bios_folder/cemu/usr/save" @@ -297,7 +327,7 @@ prepare_component() { log i "----------------------" if [[ $multi_user_mode == "true" ]]; then # Multi-user actions create_dir -d "$multi_user_data_folder/$SteamAppUser/config/dolphin-emu" - cp -fvr "$emuconfigs/dolphin/"* "$multi_user_data_folder/$SteamAppUser/config/dolphin-emu/" + cp -fvr "$config/dolphin/"* "$multi_user_data_folder/$SteamAppUser/config/dolphin-emu/" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/dolphin-emu/Dolphin.ini" "BIOS" "$bios_folder" "dolphin" "GBA" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/dolphin-emu/Dolphin.ini" "SavesPath" "$saves_folder/gba" "dolphin" "GBA" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/dolphin-emu/Dolphin.ini" "ISOPath0" "$roms_folder/wii" "dolphin" "General" @@ -306,7 +336,7 @@ prepare_component() { dir_prep "$multi_user_data_folder/$SteamAppUser/config/dolphin-emu" "/var/config/dolphin-emu" else # Single-user actions create_dir -d /var/config/dolphin-emu/ - cp -fvr "$emuconfigs/dolphin/"* /var/config/dolphin-emu/ + cp -fvr "$config/dolphin/"* /var/config/dolphin-emu/ set_setting_value "$dolphinconf" "BIOS" "$bios_folder" "dolphin" "GBA" set_setting_value "$dolphinconf" "SavesPath" "$saves_folder/gba" "dolphin" "GBA" set_setting_value "$dolphinconf" "ISOPath0" "$roms_folder/wii" "dolphin" "General" @@ -351,7 +381,7 @@ prepare_component() { log i "------------------------" if [[ $multi_user_mode == "true" ]]; then # Multi-user actions create_dir -d "$multi_user_data_folder/$SteamAppUser/data/duckstation/" - cp -fv "$emuconfigs/duckstation/"* "$multi_user_data_folder/$SteamAppUser/data/duckstation" + cp -fv "$config/duckstation/"* "$multi_user_data_folder/$SteamAppUser/data/duckstation" set_setting_value "$multi_user_data_folder/$SteamAppUser/data/duckstation/settings.ini" "SearchDirectory" "$bios_folder" "duckstation" "BIOS" set_setting_value "$multi_user_data_folder/$SteamAppUser/data/duckstation/settings.ini" "Card1Path" "$saves_folder/psx/duckstation/memcards/shared_card_1.mcd" "duckstation" "MemoryCards" set_setting_value "$multi_user_data_folder/$SteamAppUser/data/duckstation/settings.ini" "Card2Path" "$saves_folder/psx/duckstation/memcards/shared_card_2.mcd" "duckstation" "MemoryCards" @@ -361,7 +391,7 @@ prepare_component() { else # Single-user actions create_dir -d "/var/config/duckstation/" create_dir "$saves_folder/psx/duckstation/memcards" - cp -fv "$emuconfigs/duckstation/"* /var/config/duckstation + cp -fv "$config/duckstation/"* /var/config/duckstation set_setting_value "$duckstationconf" "SearchDirectory" "$bios_folder" "duckstation" "BIOS" set_setting_value "$duckstationconf" "Card1Path" "$saves_folder/psx/duckstation/memcards/shared_card_1.mcd" "duckstation" "MemoryCards" set_setting_value "$duckstationconf" "Card2Path" "$saves_folder/psx/duckstation/memcards/shared_card_2.mcd" "duckstation" "MemoryCards" @@ -397,7 +427,7 @@ prepare_component() { log i "----------------------" if [[ $multi_user_mode == "true" ]]; then # Multi-user actions create_dir -d "$multi_user_data_folder/$SteamAppUser/config/melonDS/" - cp -fvr $emuconfigs/melonds/melonDS.ini "$multi_user_data_folder/$SteamAppUser/config/melonDS/" + cp -fvr $config/melonds/melonDS.ini "$multi_user_data_folder/$SteamAppUser/config/melonDS/" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/melonDS/melonDS.ini" "BIOS9Path" "$bios_folder/bios9.bin" "melonds" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/melonDS/melonDS.ini" "BIOS7Path" "$bios_folder/bios7.bin" "melonds" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/melonDS/melonDS.ini" "FirmwarePath" "$bios_folder/firmware.bin" "melonds" @@ -406,7 +436,7 @@ prepare_component() { dir_prep "$multi_user_data_folder/$SteamAppUser/config/melonDS" "/var/config/melonDS" else # Single-user actions create_dir -d /var/config/melonDS/ - cp -fvr $emuconfigs/melonds/melonDS.ini /var/config/melonDS/ + cp -fvr $config/melonds/melonDS.ini /var/config/melonDS/ set_setting_value "$melondsconf" "BIOS9Path" "$bios_folder/bios9.bin" "melonds" set_setting_value "$melondsconf" "BIOS7Path" "$bios_folder/bios7.bin" "melonds" set_setting_value "$melondsconf" "FirmwarePath" "$bios_folder/firmware.bin" "melonds" @@ -436,7 +466,7 @@ prepare_component() { log i "----------------------" if [[ $multi_user_mode == "true" ]]; then # Multi-user actions create_dir -d "$multi_user_data_folder/$SteamAppUser/config/PCSX2/inis" - cp -fvr "$emuconfigs/PCSX2/"* "$multi_user_data_folder/$SteamAppUser/config/PCSX2/inis/" + cp -fvr "$config/PCSX2/"* "$multi_user_data_folder/$SteamAppUser/config/PCSX2/inis/" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/PCSX2/inis/PCSX2.ini" "Bios" "$bios_folder" "pcsx2" "Folders" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/PCSX2/inis/PCSX2.ini" "Snapshots" "$screenshots_folder" "pcsx2" "Folders" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/PCSX2/inis/PCSX2.ini" "SaveStates" "$states_folder/ps2/pcsx2" "pcsx2" "Folders" @@ -445,7 +475,7 @@ prepare_component() { dir_prep "$multi_user_data_folder/$SteamAppUser/config/PCSX2" "/var/config/PCSX2" else # Single-user actions create_dir -d "/var/config/PCSX2/inis" - cp -fvr "$emuconfigs/PCSX2/"* /var/config/PCSX2/inis/ + cp -fvr "$config/PCSX2/"* /var/config/PCSX2/inis/ set_setting_value "$pcsx2conf" "Bios" "$bios_folder" "pcsx2" "Folders" set_setting_value "$pcsx2conf" "Snapshots" "$screenshots_folder" "pcsx2" "Folders" set_setting_value "$pcsx2conf" "SaveStates" "$states_folder/ps2/pcsx2" "pcsx2" "Folders" @@ -479,8 +509,8 @@ prepare_component() { dir_prep "$bios_folder/pico-8" "$HOME/.lexaloffle/pico-8" # Store binary and config files together. The .lexaloffle directory is a hard-coded location for the PICO-8 config file, cannot be changed dir_prep "$roms_folder/pico8" "$bios_folder/pico-8/carts" # Symlink default game location to RD roms for cleanliness (this location is overridden anyway by the --root_path launch argument anyway) dir_prep "$saves_folder/pico-8" "$bios_folder/pico-8/cdata" # PICO-8 saves folder - cp -fv "$emuconfigs/pico-8/config.txt" "$bios_folder/pico-8/config.txt" - cp -fv "$emuconfigs/pico-8/sdl_controllers.txt" "$bios_folder/pico-8/sdl_controllers.txt" + cp -fv "$config/pico-8/config.txt" "$bios_folder/pico-8/config.txt" + cp -fv "$config/pico-8/sdl_controllers.txt" "$bios_folder/pico-8/sdl_controllers.txt" fi fi @@ -492,12 +522,12 @@ prepare_component() { log i "------------------------" if [[ $multi_user_mode == "true" ]]; then # Multi-user actions create_dir -d "$multi_user_data_folder/$SteamAppUser/config/ppsspp/PSP/SYSTEM/" - cp -fv "$emuconfigs/ppssppsdl/"* "$multi_user_data_folder/$SteamAppUser/config/ppsspp/PSP/SYSTEM/" + cp -fv "$config/ppssppsdl/"* "$multi_user_data_folder/$SteamAppUser/config/ppsspp/PSP/SYSTEM/" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/ppsspp/PSP/SYSTEM/ppsspp.ini" "CurrentDirectory" "$roms_folder/psp" "ppsspp" "General" dir_prep "$multi_user_data_folder/$SteamAppUser/config/ppsspp" "/var/config/ppsspp" else # Single-user actions create_dir -d /var/config/ppsspp/PSP/SYSTEM/ - cp -fv "$emuconfigs/ppssppsdl/"* /var/config/ppsspp/PSP/SYSTEM/ + cp -fv "$config/ppssppsdl/"* /var/config/ppsspp/PSP/SYSTEM/ set_setting_value "$ppssppconf" "CurrentDirectory" "$roms_folder/psp" "ppsspp" "General" fi # Shared actions @@ -521,12 +551,12 @@ prepare_component() { log i "----------------------" if [[ $multi_user_mode == "true" ]]; then # Multi-user actions create_dir -d "$multi_user_data_folder/$SteamAppUser/config/primehack" - cp -fvr "$emuconfigs/primehack/config/"* "$multi_user_data_folder/$SteamAppUser/config/primehack/" + cp -fvr "$config/primehack/config/"* "$multi_user_data_folder/$SteamAppUser/config/primehack/" set_setting_value ""$multi_user_data_folder/$SteamAppUser/config/primehack/Dolphin.ini"" "ISOPath0" "$roms_folder/gc" "primehack" "General" dir_prep "$multi_user_data_folder/$SteamAppUser/config/primehack" "/var/config/primehack" else # Single-user actions create_dir -d /var/config/primehack/ - cp -fvr "$emuconfigs/primehack/config/"* /var/config/primehack/ + cp -fvr "$config/primehack/config/"* /var/config/primehack/ set_setting_value "$primehackconf" "ISOPath0" "$roms_folder/gc" "primehack" "General" fi # Shared actions @@ -539,7 +569,7 @@ prepare_component() { dir_prep "$saves_folder/wii/primehack" "/var/data/primehack/Wii" dir_prep "$mods_folder/Primehack" "/var/data/primehack/Load/GraphicMods" dir_prep "$texture_packs_folder/Primehack" "/var/data/primehack/Load/Textures" - cp -fvr "$emuconfigs/primehack/data/"* "$multi_user_data_folder/$SteamAppUser/data/primehack/" # this must be done after the dirs are prepared as it copying some "mods" + cp -fvr "$config/primehack/data/"* "$multi_user_data_folder/$SteamAppUser/data/primehack/" # this must be done after the dirs are prepared as it copying some "mods" # Reset default preset settings set_setting_value "$rd_conf" "primehack" "$(get_setting_value "$rd_defaults" "primehack" "retrodeck" "ask_to_exit")" "retrodeck" "ask_to_exit" @@ -565,18 +595,19 @@ prepare_component() { log i "------------------------" if [[ $multi_user_mode == "true" ]]; then # Multi-user actions create_dir -d "$multi_user_data_folder/$SteamAppUser/config/rpcs3/" - cp -fr "$emuconfigs/rpcs3/"* "$multi_user_data_folder/$SteamAppUser/config/rpcs3/" + cp -fr "$config/rpcs3/"* "$multi_user_data_folder/$SteamAppUser/config/rpcs3/" # This is an unfortunate one-off because set_setting_value does not currently support settings with $ in the name. sed -i 's^\^$(EmulatorDir): .*^$(EmulatorDir): '"$bios_folder/rpcs3/"'^' "$multi_user_data_folder/$SteamAppUser/config/rpcs3/vfs.yml" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/rpcs3/vfs.yml" "/games/" "$roms_folder/ps3/" "rpcs3" dir_prep "$multi_user_data_folder/$SteamAppUser/config/rpcs3" "/var/config/rpcs3" else # Single-user actions create_dir -d /var/config/rpcs3/ - cp -fr "$emuconfigs/rpcs3/"* /var/config/rpcs3/ + cp -fr "$config/rpcs3/"* /var/config/rpcs3/ # This is an unfortunate one-off because set_setting_value does not currently support settings with $ in the name. sed -i 's^\^$(EmulatorDir): .*^$(EmulatorDir): '"$bios_folder/rpcs3/"'^' "$rpcs3vfsconf" set_setting_value "$rpcs3vfsconf" "/games/" "$roms_folder/ps3/" "rpcs3" dir_prep "$saves_folder/ps3/rpcs3" "$bios_folder/rpcs3/dev_hdd0/home/00000001/savedata" + dir_prep "$states_folder/ps3/rpcs3" "/var/config/rpcs3/savestates" fi # Shared actions create_dir "$bios_folder/rpcs3/dev_hdd0" @@ -605,32 +636,21 @@ prepare_component() { if [[ $multi_user_mode == "true" ]]; then rm -rf "$multi_user_data_folder/$SteamAppUser/config/Ryujinx" #create_dir "$multi_user_data_folder/$SteamAppUser/config/Ryujinx/system" - # TODO: add /var/config/Ryujinx/system system folder management - cp -fv $emuconfigs/ryujinx/* "$multi_user_data_folder/$SteamAppUser/config/Ryujinx" + cp -fv $config/ryujinx/* "$multi_user_data_folder/$SteamAppUser/config/Ryujinx" sed -i 's#RETRODECKHOMEDIR#'$rdhome'#g' "$multi_user_data_folder/$SteamAppUser/config/Ryujinx/Config.json" dir_prep "$multi_user_data_folder/$SteamAppUser/config/Ryujinx" "/var/config/Ryujinx" - # TODO: add nand (saves) folder management - # TODO: add nand (saves) folder management - # TODO: add "registered" folder management else # removing config directory to wipe legacy files log d "Removing \"/var/config/Ryujinx\"" rm -rf /var/config/Ryujinx create_dir /var/config/Ryujinx/system - cp -fv $emuconfigs/ryujinx/Config.json $ryujinxconf - cp -fvr $emuconfigs/ryujinx/profiles /var/config/Ryujinx/ + cp -fv $config/ryujinx/Config.json $ryujinxconf + cp -fvr $config/ryujinx/profiles /var/config/Ryujinx/ log d "Replacing placeholders in \"$ryujinxconf\"" sed -i 's#RETRODECKHOMEDIR#'$rdhome'#g' "$ryujinxconf" - log i "Linking switch nand/saves folder" - log d "Removing \"/var/config/Ryujinx/bis\", it will become a symlink" - rm -rf /var/config/Ryujinx/bis - dir_prep "$saves_folder/switch/ryujinx/nand" "/var/config/Ryujinx/bis" - dir_prep "$saves_folder/switch/ryujinx/sdcard" "/var/config/Ryujinx/sdcard" - dir_prep "$bios_folder/switch/firmware" "/var/config/Ryujinx/bis/system/Contents/registered" - dir_prep "$bios_folder/switch/keys" "/var/config/Ryujinx/system" - # TODO: delete these two lines after Ryujinx is back to a proper build - log i "Since in this version we moved to a PR build of Ryujinx we need to symlink it." # TODO: deleteme later - ln -sv $ryujinxconf "$(dirname $ryujinxconf)/PRConfig.json" # TODO: deleteme later + create_dir "$logs_folder/ryujinx" + create_dir "$mods_folder/ryujinx" + create_dir "$screenshots_folder/ryujinx" fi fi # if [[ "$action" == "reset" ]] || [[ "$action" == "postmove" ]]; then # Run commands that apply to both resets and moves @@ -650,7 +670,7 @@ prepare_component() { log i "----------------------" if [[ $multi_user_mode == "true" ]]; then # Multi-user actions create_dir -d "$multi_user_data_folder/$SteamAppUser/config/yuzu" - cp -fvr "$emuconfigs/yuzu/"* "$multi_user_data_folder/$SteamAppUser/config/yuzu/" + cp -fvr "$config/yuzu/"* "$multi_user_data_folder/$SteamAppUser/config/yuzu/" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/yuzu/qt-config.ini" "nand_directory" "$saves_folder/switch/yuzu/nand" "yuzu" "Data%20Storage" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/yuzu/qt-config.ini" "sdmc_directory" "$saves_folder/switch/yuzu/sdmc" "yuzu" "Data%20Storage" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/yuzu/qt-config.ini" "Paths\gamedirs\4\path" "$roms_folder/switch" "yuzu" "UI" @@ -658,7 +678,7 @@ prepare_component() { dir_prep "$multi_user_data_folder/$SteamAppUser/config/yuzu" "/var/config/yuzu" else # Single-user actions create_dir -d /var/config/yuzu/ - cp -fvr "$emuconfigs/yuzu/"* /var/config/yuzu/ + cp -fvr "$config/yuzu/"* /var/config/yuzu/ set_setting_value "$yuzuconf" "nand_directory" "$saves_folder/switch/yuzu/nand" "yuzu" "Data%20Storage" set_setting_value "$yuzuconf" "sdmc_directory" "$saves_folder/switch/yuzu/sdmc" "yuzu" "Data%20Storage" set_setting_value "$yuzuconf" "Paths\gamedirs\4\path" "$roms_folder/switch" "yuzu" "UI" @@ -706,7 +726,7 @@ prepare_component() { rm -rf /var/config/xemu rm -rf /var/data/xemu create_dir -d "$multi_user_data_folder/$SteamAppUser/config/xemu/" - cp -fv $emuconfigs/xemu/xemu.toml "$multi_user_data_folder/$SteamAppUser/config/xemu/xemu.toml" + cp -fv $config/xemu/xemu.toml "$multi_user_data_folder/$SteamAppUser/config/xemu/xemu.toml" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/xemu/xemu.toml" "screenshot_dir" "'$screenshots_folder'" "xemu" "General" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/xemu/xemu.toml" "bootrom_path" "'$bios_folder/mcpx_1.0.bin'" "xemu" "sys.files" set_setting_value "$multi_user_data_folder/$SteamAppUser/config/xemu/xemu.toml" "flashrom_path" "'$bios_folder/Complex.bin'" "xemu" "sys.files" @@ -718,7 +738,7 @@ prepare_component() { rm -rf /var/config/xemu rm -rf /var/data/xemu dir_prep "/var/config/xemu" "/var/data/xemu/xemu" # Creating config folder in /var/config for consistentcy and linking back to original location where component will look - cp -fv $emuconfigs/xemu/xemu.toml "$xemuconf" + cp -fv $config/xemu/xemu.toml "$xemuconf" set_setting_value "$xemuconf" "screenshot_dir" "'$screenshots_folder'" "xemu" "General" set_setting_value "$xemuconf" "bootrom_path" "'$bios_folder/mcpx_1.0.bin'" "xemu" "sys.files" set_setting_value "$xemuconf" "flashrom_path" "'$bios_folder/Complex.bin'" "xemu" "sys.files" @@ -753,8 +773,8 @@ prepare_component() { # NOTE: the component is writing in "." so it must be placed in the rw filesystem. A symlink of the binary is already placed in /app/bin/Vita3K rm -rf "/var/config/Vita3K" create_dir "/var/config/Vita3K" - cp -fvr "$emuconfigs/vita3k/config.yml" "$vita3kconf" # component config - cp -fvr "$emuconfigs/vita3k/ux0" "$bios_folder/Vita3K/" # User config + cp -fvr "$config/vita3k/config.yml" "$vita3kconf" # component config + cp -fvr "$config/vita3k/ux0" "$bios_folder/Vita3K/" # User config set_setting_value "$vita3kconf" "pref-path" "$bios_folder/Vita3K/" "vita3k" fi # Shared actions @@ -820,9 +840,9 @@ prepare_component() { create_dir "/var/data/mame/assets/ui" dir_prep "$saves_folder/mame-sa/hiscore" "/var/config/mame/hiscore" - cp -fvr "$emuconfigs/mame/mame.ini" "$mameconf" - cp -fvr "$emuconfigs/mame/ui.ini" "$mameuiconf" - cp -fvr "$emuconfigs/mame/default.cfg" "$mamedefconf" + cp -fvr "$config/mame/mame.ini" "$mameconf" + cp -fvr "$config/mame/ui.ini" "$mameuiconf" + cp -fvr "$config/mame/default.cfg" "$mamedefconf" sed -i 's#RETRODECKROMSDIR#'$roms_folder'#g' "$mameconf" # one-off as roms folders are a lot set_setting_value "$mameconf" "nvram_directory" "$saves_folder/mame-sa/nvram" "mame" @@ -832,7 +852,7 @@ prepare_component() { set_setting_value "$mameconf" "samplepath" "$bios_folder/mame-sa/samples" "mame" log i "Placing cheats in \"/var/data/mame/cheat\"" - unzip -j -o "$emuconfigs/mame/cheat0264.zip" 'cheat.7z' -d "/var/data/mame/cheat" + unzip -j -o "$config/mame/cheat0264.zip" 'cheat.7z' -d "/var/data/mame/cheat" fi @@ -850,13 +870,49 @@ prepare_component() { create_dir "/var/data/gzdoom/audio/soundfonts" create_dir "$bios_folder/gzdoom" - cp -fvr "$emuconfigs/gzdoom/gzdoom.ini" "/var/config/gzdoom" + cp -fvr "$config/gzdoom/gzdoom.ini" "/var/config/gzdoom" sed -i 's#RETRODECKHOMEDIR#'$rdhome'#g' "/var/config/gzdoom/gzdoom.ini" # This is an unfortunate one-off because set_setting_value does not currently support JSON sed -i 's#RETRODECKROMSDIR#'$roms_folder'#g' "/var/config/gzdoom/gzdoom.ini" # This is an unfortunate one-off because set_setting_value does not currently support JSON sed -i 's#RETRODECKSAVESDIR#'$saves_folder'#g' "/var/config/gzdoom/gzdoom.ini" # This is an unfortunate one-off because set_setting_value does not currently support JSON fi + if [[ "$component" =~ ^(portmaster|all)$ ]]; then + component_found="true" + # TODO: MultiUser + log i "----------------------" + log i "Prepearing PortMaster" + log i "----------------------" + + rm -rf "/var/data/PortMaster" + unzip "/app/retrodeck/PortMaster.zip" -d "/var/data/" + cp -f "/var/data/PortMaster/retrodeck/PortMaster.txt" "/var/data/PortMaster/PortMaster.sh" + chmod +x "/var/data/PortMaster/PortMaster.sh" + rm -f "$roms_folder/portmaster/PortMaster.sh" + install -Dm755 "/var/data/PortMaster/PortMaster.sh" "$roms_folder/portmaster/PortMaster.sh" + create_dir "/var/data/PortMaster/config/" + cp "$config/portmaster/config.json" "/var/data/PortMaster/config/config.json" + + fi + + if [[ "$component" =~ ^(ruffle|all)$ ]]; then + component_found="true" + log i "----------------------" + log i "Prepearing Ruffle" + log i "----------------------" + + rm -rf "/var/config/ruffle" + + # Ruffle creates a directory with the full rom paths in it, so this is necessary + # TODO: be aware of this when multi user support will be integrated for this component + dir_prep "$saves_folder/flash" "/var/data/ruffle/SharedObjects/localhost/$roms_folder/flash" + + if [[ "$action" == "postmove" ]]; then # Run only post-move commands + dir_prep "$saves_folder/flash" "/var/data/ruffle/SharedObjects/localhost/$roms_folder/flash" + fi + + fi + if [[ $component_found == "false" ]]; then log e "Supplied component $component not found, not resetting" fi diff --git a/functions/presets.sh b/functions/presets.sh index aac3c321..3a6a83bd 100644 --- a/functions/presets.sh +++ b/functions/presets.sh @@ -4,7 +4,18 @@ change_preset_dialog() { # This function will build a list of all systems compatible with a given preset, their current enable/disabled state and allow the user to change one or more # USAGE: change_preset_dialog "$preset" - build_preset_list_options "$1" + preset="$1" + pretty_preset_name=${preset//_/ } # Preset name prettification + pretty_preset_name=$(echo $pretty_preset_name | awk '{for(i=1;i<=NF;i++){$i=toupper(substr($i,1,1))substr($i,2)}}1') # Preset name prettification + current_preset_settings=() + local section_results=$(sed -n '/\['"$preset"'\]/, /\[/{ /\['"$preset"'\]/! { /\[/! p } }' $rd_conf | sed '/^$/d') + + while IFS= read -r config_line + do + system_name=$(get_setting_name "$config_line" "retrodeck") + system_value=$(get_setting_value "$rd_conf" "$system_name" "retrodeck" "$preset") + current_preset_settings=("${current_preset_settings[@]}" "$system_value" "$(make_name_pretty $system_name)" "$system_name") + done < <(printf '%s\n' "$section_results") choice=$(rd_zenity \ --list --width=1200 --height=720 \ @@ -21,7 +32,7 @@ change_preset_dialog() { if [[ ! -z $choice || "$rc" == 0 ]]; then ( - make_preset_changes + make_preset_changes "$1" "$choice" ) | rd_zenity --icon-name=net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \ --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ @@ -35,6 +46,8 @@ change_preset_dialog() { build_preset_list_options() { # This function will build a list of all the systems available for a given preset # The list will be generated into a Godot temp file and the variable $current_preset_settings + # The other arrays built (all_systems, changed_systems etc.) are also used in the make_preset_changes() function, so this needs to be called in the same memory space as that function at least once + # USAGE: build_preset_list_options "$preset" if [[ -f "$godot_current_preset_settings" ]]; then rm -f "$godot_current_preset_settings" # Godot data transfer temp files @@ -49,6 +62,7 @@ build_preset_list_options() { current_disabled_systems=() changed_systems=() changed_presets=() + all_systems=() local section_results=$(sed -n '/\['"$preset"'\]/, /\[/{ /\['"$preset"'\]/! { /\[/! p } }' $rd_conf | sed '/^$/d') while IFS= read -r config_line @@ -68,7 +82,23 @@ build_preset_list_options() { make_preset_changes() { - # This function will take an array $choices, which contains the names of systems that have been enabled for this preset and enable them in the backend + # This function will take a preset name $preset and a CSV list $choice, which contains the names of systems that have been enabled for this preset and enable them in the backend + # Any systems which are currently enabled and not in the CSV list $choice will instead be disabled in the backend + # USAGE: make_preset_changes $preset $choice + + # Fetch incompatible presets from JSON and create a lookup list + incompatible_presets=$(jq -r ' + .incompatible_presets | to_entries[] | + [ + "\(.key):\(.value)", + "\(.value):\(.key)" + ] | join("\n") + ' $features) + + preset="$1" + choice="$2" + + build_preset_list_options "$preset" IFS="," read -ra choices <<< "$choice" for emulator in "${all_systems[@]}"; do @@ -89,7 +119,7 @@ make_preset_changes() { fi fi fi - done < "$incompatible_presets_reference_list" + done < <(echo "$incompatible_presets") fi if [[ ! " ${choices[*]} " =~ " ${emulator} " && ! " ${current_disabled_systems[*]} " =~ " ${emulator} " ]]; then changed_systems=("${changed_systems[@]}" "$emulator") diff --git a/functions/run_game.sh b/functions/run_game.sh new file mode 100755 index 00000000..e2aa49a2 --- /dev/null +++ b/functions/run_game.sh @@ -0,0 +1,467 @@ +#!/bin/bash + +run_game() { + # Initialize variables + emulator="" + system="" + manual_mode=false + + # Parse options for system, emulator, and manual mode + while getopts ":e:s:m" opt; do + case ${opt} in + e) + emulator=$OPTARG # Emulator provided via -e + ;; + s) + system=$OPTARG # System provided via -s + ;; + m) + manual_mode=true # Manual mode enabled via -m + log i "Run game: manual mode enabled" + ;; + \?) + echo "Usage: $0 [-e emulator] [-s system] [-m] game" + exit 1 + ;; + esac + done + shift $((OPTIND - 1)) + + # Check for game argument + if [[ -z "$1" ]]; then + log e "Game path is required." + log i "Usage: $0 [-e emulator] [-s system] [-m] game" + exit 1 + fi + + game="$(realpath "$1")" + + # Check if the game is a .desktop file + if [[ "$game" == *.desktop ]]; then + # Extract the Exec command from the .desktop file + exec_cmd=$(grep '^Exec=' "$game" | sed 's/^Exec=//') + # Workaround for RPCS3 games, replace placeholder with actual game ID + exec_cmd=$(echo "$exec_cmd" | sed 's/%%RPCS3_GAMEID%%/%RPCS3_GAMEID%/g') + if [[ -n "$exec_cmd" ]]; then + log i "-------------------------------------------" + log i " RetroDECK is now booting the game" + log i " Game path: \"$game\"" + log i " Recognized system: desktop file" + log i " Command line: $exec_cmd" + log i "-------------------------------------------" + # Execute the command from the .desktop file + eval "$exec_cmd" + exit 1 + else + log e "No Exec command found in .desktop file." + exit 1 + fi + fi + + if [[ -d "$game" ]]; then + log d "$(basename "$game") is a directory, parsing it like a \"directory as a file\"" + game="$game/$(basename "$game")" + log d "Actual file is in \"$game\"" + fi + + game_basename="./$(basename "$game")" + + local error="File \"$game\" not found.\n\nPlease make sure that RetroDECK's Flatpak is correctly configured to reach the given path and try again." + # Check if realpath succeeded + if [[ -z "$game" || ! -e "$game" ]]; then + rd_zenity --icon-name=net.retrodeck.retrodeck --info --no-wrap --ok-label="OK" \ + --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ + --title "RetroDECK - File not found" \ + --text="ERROR: $error" + log e "$error" + exit 1 + fi + + # Step 1: System Recognition + if [[ -z "$system" ]]; then + # Automatically detect system from game path + system=$(echo "$game" | grep -oP '(?<=roms/)[^/]+') + if [[ -z "$system" ]]; then + log i "Failed to detect system from game path, asking user action" + system=$(find_system_by_extension "$game_basename") + fi + fi + + # Step 2: Emulator Definition + if [[ -n "$emulator" ]]; then + log d "Emulator provided via command-line: $emulator" + elif [[ "$manual_mode" = true ]]; then + log d "Manual mode: showing Zenity emulator selection" + emulator=$(find_system_commands "$system") + if [[ -z "$emulator" ]]; then + log e "No emulator selected in manual mode." + exit 1 + fi + else + log d "Automatically searching for an emulator for system: $system" + + # Check for in the game block in gamelist.xml + altemulator=$(xmllint --recover --xpath "string(//game[path='$game_basename']/altemulator)" "$rdhome/ES-DE/gamelists/$system/gamelist.xml" 2>/dev/null) + + if [[ -n "$altemulator" ]]; then + + log d "Found for game: $altemulator" + emulator=$(xmllint --recover --xpath "string(//system[name=\"$system\"]/command[@label=\"$altemulator\"])" "$es_systems" 2>/dev/null) + + else # if no altemulator is found we search if a global one is set + + log d "No altemulator found in the game entry, searching for alternativeEmulator to check if a global emulator is set for the system $system" + alternative_emulator=$(xmllint --recover --xpath 'string(//alternativeEmulator/label)' "$rdhome/ES-DE/gamelists/$system/gamelist.xml" 2>/dev/null) + log d "Alternate emulator found in header: $alternative_emulator" + emulator=$(xmllint --recover --xpath "string(//system[platform='$system']/command[@label=\"$alternative_emulator\"])" "$es_systems" 2>/dev/null) + + fi + + # Fallback to first available emulator in es_systems.xml if no found + if [[ -z "$emulator" ]]; then + log d "No alternate emulator found, using first available emulator in es_systems.xml" + emulator=$(xmllint --recover --xpath "string(//system[name='$system']/command[1])" "$es_systems") + fi + + if [[ -z "$emulator" ]]; then + log e "No valid emulator found for system: $system" + exit 1 + fi + fi + + # Step 3: Construct and Run the Command + log i "-------------------------------------------" + log i " RetroDECK is now booting the game" + log i " Game path: \"$game\"" + log i " Recognized system: $system" + log i " Command line: $emulator" + log i "-------------------------------------------" + + # Now pass the final constructed command to substitute_placeholders function + final_command=$(substitute_placeholders "$emulator") + + # Log and execute the command + log i "Launching game with command: $final_command" + eval "$final_command" +} + +# Function to extract commands from es_systems.xml and present them in Zenity +find_system_commands() { + local system_name=$system + # Use xmllint to extract the system commands from the XML + system_section=$(xmllint --xpath "//system[name='$system_name']" "$es_systems" 2>/dev/null) + + if [ -z "$system_section" ]; then + log e "System not found: $system_name" + exit 1 + fi + + # Extract commands and labels + commands=$(echo "$system_section" | xmllint --xpath "//command" - 2>/dev/null) + + # Prepare Zenity command list + command_list=() + while IFS= read -r line; do + label=$(echo "$line" | sed -n 's/.*label="\([^"]*\)".*/\1/p') + command=$(echo "$line" | sed -n 's/.*]*>\(.*\)<\/command>.*/\1/p') + + # Substitute placeholders in the command + command=$(substitute_placeholders "$command") + + # Add label and command to Zenity list (label first, command second) + command_list+=("$label" "$command") + done <<< "$commands" + + # Check if there's only one command + if [ ${#command_list[@]} -eq 2 ]; then + log d "Only one command found for $system_name, running it directly: ${command_list[1]}" + selected_command="${command_list[1]}" + else + # Show the list with Zenity and return the **command** (second column) selected + selected_command=$(zenity --list \ + --title="Select an emulator for $system_name" \ + --column="Emulator" --column="Hidden Command" "${command_list[@]}" \ + --width=800 --height=400 --print-column=2 --hide-column=2) + fi + + echo "$selected_command" +} + +substitute_placeholders() { + local cmd="$1" + log d "Substitute placeholder: working on $cmd" + + game=$(echo "$game" | sed "s/'/'\\\\''/g") # escaping internal ' + # Use the absolute path for %ROM% + local rom_path="$game" + log d "rom_path is: \"$game\"" + local rom_dir=$(dirname "$rom_path") + local base_name=$(basename "$rom_path") + base_name="${base_name%%.*}" + local file_name=$(basename "$rom_path") + local rom_raw="$rom_path" + local rom_dir_raw="$rom_dir" + local es_path="" + local emulator_path="" + local start_dir="" + + # Substitute placeholders with the absolute path and other variables + cmd="${cmd//"%ROM%"/"'$rom_path'"}" + cmd="${cmd//"%ROMPATH%"/"'$rom_dir'"}" + + # Manually replace %EMULATOR_*% placeholders + while [[ "$cmd" =~ (%EMULATOR_[A-Z0-9_]+%) ]]; do + placeholder="${BASH_REMATCH[1]}" + emulator_path=$(replace_emulator_placeholder "$placeholder") + cmd="${cmd//$placeholder/$emulator_path}" + done + + # Process %STARTDIR% + local start_dir_pos=$(echo "$cmd" | grep -b -o "%STARTDIR%" | cut -d: -f1) + if [[ -n "$start_dir_pos" ]]; then + # Validate and extract %STARTDIR% value + if [[ "${cmd:start_dir_pos+10:1}" != "=" ]]; then + log e "Error: Invalid %STARTDIR% entry in command" + return 1 + fi + + if [[ "${cmd:start_dir_pos+11:1}" == "\"" ]]; then + # Quoted path + local closing_quotation=$(echo "${cmd:start_dir_pos+12}" | grep -bo '"' | head -n 1 | cut -d: -f1) + if [[ -z "$closing_quotation" ]]; then + log e "Error: Invalid %STARTDIR% entry (missing closing quotation)" + return 1 + fi + start_dir="${cmd:start_dir_pos+12:closing_quotation}" + cmd="${cmd:0:start_dir_pos}${cmd:start_dir_pos+12+closing_quotation+1}" + else + # Non-quoted path + local space_pos=$(echo "${cmd:start_dir_pos+11}" | grep -bo ' ' | head -n 1 | cut -d: -f1) + if [[ -n "$space_pos" ]]; then + start_dir="${cmd:start_dir_pos+11:space_pos}" + cmd="${cmd:0:start_dir_pos}${cmd:start_dir_pos+11+space_pos+1}" + else + start_dir="${cmd:start_dir_pos+11}" + cmd="${cmd:0:start_dir_pos}" + fi + fi + + # Expand paths in %STARTDIR% + start_dir=$(eval echo "$start_dir") # Expand ~ or environment variables + start_dir="${start_dir//%EMUDIR%/$(dirname "$emulator_path")}" + start_dir="${start_dir//%GAMEDIR%/$(dirname "$rom_path")}" + start_dir="${start_dir//%GAMEENTRYDIR%/$rom_path}" + + # Create directory if it doesn't exist + if [[ ! -d "$start_dir" ]]; then + mkdir -p "$start_dir" || { + log e "Error: Directory \"$start_dir\" could not be created. Permission problems?" + return 1 + } + fi + + # Normalize the path + start_dir=$(realpath "$start_dir") + log d "Setting start directory to: $start_dir" + fi + + # Substitute %BASENAME% and other placeholders + cmd="${cmd//"%BASENAME%"/"'$base_name'"}" + cmd="${cmd//"%FILENAME%"/"'$file_name'"}" + cmd="${cmd//"%ROMRAW%"/"'$rom_raw'"}" + cmd="${cmd//"%ROMPATH%"/"'$rom_dir'"}" + cmd="${cmd//"%ENABLESHORTCUTS%"/""}" + cmd="${cmd//"%EMULATOR_OS-SHELL%"/"/bin/sh"}" + + # Ensure paths are quoted correctly + cmd="${cmd//"%ROM%"/"'$rom_path'"}" + cmd="${cmd//"%GAMEDIR%"/"'$rom_dir'"}" + cmd="${cmd//"%GAMEDIRRAW%"/"'$rom_dir_raw'"}" + cmd="${cmd//"%CORE_RETROARCH%"/"$ra_cores_path"}" + + # Log the result + log d "Command after placeholders substitutions: $cmd" + + # Now handle %INJECT% after %BASENAME% has been substituted + cmd=$(handle_inject_placeholder "$cmd") + + echo "$cmd" +} + +# Function to replace %EMULATOR_SOMETHING% with the actual path of the emulator +replace_emulator_placeholder() { + local placeholder=$1 + # Extract emulator name from placeholder without changing case + local emulator_name="${placeholder//"%EMULATOR_"/}" # Extract emulator name after %EMULATOR_ + emulator_name="${emulator_name//"%"/}" # Remove the trailing % + + # Use the find_emulator function to get the emulator path using the correct casing + local emulator_exec=$(find_emulator "$emulator_name") + + if [[ -z "$emulator_exec" ]]; then + log e "Emulator '$emulator_name' not found." + exit 1 + fi + echo "$emulator_exec" +} + +# Function to handle the %INJECT% placeholder +handle_inject_placeholder() { + local cmd="$1" + local rom_dir=$(dirname "$game") # Get the ROM directory based on the game path + + # Find and process all occurrences of %INJECT%='something'.extension + while [[ "$cmd" =~ (%INJECT%=\'([^\']+)\')(.[^ ]+)? ]]; do + inject_file="${BASH_REMATCH[2]}" # Extract the quoted file name + extension="${BASH_REMATCH[3]}" # Extract the extension (if any) + inject_file_full_path="$rom_dir/$inject_file$extension" # Form the full path + + log d "Found inject part: %INJECT%='$inject_file'$extension" + + # Check if the file exists + if [[ -f "$inject_file_full_path" ]]; then + # Read the content of the file and replace newlines with spaces + inject_content=$(cat "$inject_file_full_path" | tr '\n' ' ') + log i "File \"$inject_file_full_path\" found. Replacing %INJECT% with content." + + # Escape special characters in the inject part for the replacement + escaped_inject_part=$(printf '%s' "%INJECT%='$inject_file'$extension" | sed 's/[]\/$*.^[]/\\&/g') + + # Replace the entire %INJECT%=...'something'.extension part with the file content + cmd=$(echo "$cmd" | sed "s|$escaped_inject_part|$inject_content|g") + + log d "Replaced cmd: $cmd" + else + log e "File \"$inject_file_full_path\" not found. Removing %INJECT% placeholder." + + # Use sed to remove the entire %INJECT%=...'something'.extension + escaped_inject_part=$(printf '%s' "%INJECT%='$inject_file'$extension" | sed 's/[]\/$*.^[]/\\&/g') + cmd=$(echo "$cmd" | sed "s|$escaped_inject_part||g") + + log d "sedded cmd: $cmd" + fi + done + + log d "Returning the command with injected content: $cmd" + echo "$cmd" +} + +# Function to get the first available emulator in the list +get_first_emulator() { + local system_name=$system + system_section=$(xmllint --xpath "//system[name='$system_name']" "$es_systems" 2>/dev/null) + + if [ -z "$system_section" ]; then + log e "System not found: $system_name" + exit 1 + fi + + # Extract the first command and use it as the selected emulator + first_command=$(echo "$system_section" | xmllint --xpath "string(//command[1])" - 2>/dev/null) + + if [[ -n "$first_command" ]]; then + # Substitute placeholders in the command + first_command=$(substitute_placeholders "$first_command") + log d "Automatically selected the first emulator: $first_command" + echo "$first_command" + else + log e "No command found for the system: $system_name" + return 1 + fi +} + +# Find the emulator path from the es_find_rules.xml file +find_emulator() { + local emulator_name="$1" + found_path="" + + # Search the es_find_rules.xml file for the emulator + emulator_section=$(xmllint --xpath "//emulator[@name='$emulator_name']" "$es_find_rules" 2>/dev/null) + + if [ -z "$emulator_section" ]; then + log e "Find emulator: emulator not found: $emulator_name" + return 1 + fi + + # Search systempath entries + while IFS= read -r line; do + command_path=$(echo "$line" | sed -n 's/.*\(.*\)<\/entry>.*/\1/p') + # Check if the command specified by the variable 'command_path' exists and is executable + if [ -x "$(command -v $command_path)" ]; then + found_path=$command_path + break + fi + done <<< "$(echo "$emulator_section" | xmllint --xpath "//rule[@type='systempath']/entry" - 2>/dev/null)" + + # If not found, search staticpath entries + if [ -z "$found_path" ]; then + while IFS= read -r line; do + command_path=$(echo "$line" | sed -n 's/.*\(.*\)<\/entry>.*/\1/p') + if [ -x "$command_path" ]; then + found_path=$command_path + break + fi + done <<< "$(echo "$emulator_section" | xmllint --xpath "//rule[@type='staticpath']/entry" - 2>/dev/null)" + fi + + if [ -z "$found_path" ]; then + log e "Find emulator: no valid path found for emulator: $emulator_name" + return 1 + else + log d "Find emulator: found emulator \"$found_path\"" + echo "$found_path" + return 0 + fi +} + +# Function to find the emulator name from the label in es_systems.xml +find_emulator_name_from_label() { + local label="$1" + + # Search for the emulator matching the label in the es_systems.xml file + extracted_emulator_name=$(xmllint --recover --xpath "string(//system[name='$system']/command[@label='$label']/text())" "$es_systems" 2>/dev/null | sed 's/%//g' | sed 's/EMULATOR_//g' | cut -d' ' -f1) + log d "Found emulator from label: $extracted_emulator_name" + + emulator_command=$(find_emulator "$extracted_emulator_name") + + if [[ -n "$emulator_command" ]]; then + echo "$emulator_command" + else + log e "Found emulator from label: emulator name not found for label: $label" + return 1 + fi +} + +# Function to find systems by file extension and let user choose +find_system_by_extension() { + local file_path="$1" + local file_extension="${file_path##*.}" + local file_extension_lower=$(echo "$file_extension" | tr '[:upper:]' '[:lower:]') + + # Use xmllint to directly extract the systems supporting the extension + local matching_systems=$(xmllint --xpath "//system[extension[contains(., '.$file_extension_lower')]]/fullname/text()" "$es_systems") + + # If no matching systems found, exit with an error + if [[ -z "$matching_systems" ]]; then + log e "No systems found supporting .${file_extension_lower} extension" + exit 1 + fi + + # Ensure each matching system is on its own line for Zenity + local formatted_systems=$(echo "$matching_systems" | tr '|' '\n') + + # Use Zenity to create a selection dialog + local chosen_system=$(zenity --list --title="Select System" --column="Available Systems" --text="Multiple systems support .${file_extension_lower} extension. Please choose:" --width=500 --height=400 <<< "$formatted_systems") + + # If no system was chosen, exit + if [[ -z "$chosen_system" ]]; then + log e "No system selected" + exit 1 + fi + + # Find the corresponding to the chosen + local detected_system=$(xmllint --xpath "string(//system[fullname='$chosen_system']/name)" "$es_systems") + + # Return the detected system + echo "$detected_system" +} \ No newline at end of file diff --git a/functions/steam_sync.sh b/functions/steam_sync.sh new file mode 100644 index 00000000..4a7f6ac1 --- /dev/null +++ b/functions/steam_sync.sh @@ -0,0 +1,116 @@ +#!/bin/bash + +# Function to sanitize strings for filenames +sanitize() { + # Replace sequences of underscores with a single space + echo "$1" | sed -e 's/_\{2,\}/ /g' -e 's/_/ /g' -e 's/:/ -/g' -e 's/&/and/g' -e 's%/%and%g' -e 's/ / /g' +} + +add_to_steam() { + + log "i" "Starting Steam Sync" + + create_dir $steamsync_folder + create_dir $steamsync_folder_tmp + + local srm_path="/var/config/steam-rom-manager/userData/userConfigurations.json" + if [ ! -f "$srm_path" ]; then + log "e" "Steam ROM Manager configuration not initialized! Initializing now." + prepare_component "reset" "steam-rom-manager" + fi + + # Iterate through all gamelist.xml files in the folder structure + for system_path in "$rdhome/ES-DE/gamelists/"*/; do + # Skip the CLEANUP folder + if [[ "$system_path" == *"/CLEANUP/"* ]]; then + continue + fi + system=$(basename "$system_path") # Extract the folder name as the system name + gamelist="${system_path}gamelist.xml" + + log d "Reading favorites for $system" + + # Ensure gamelist.xml exists in the current folder + if [ -f "$gamelist" ]; then + while IFS= read -r line; do + # Detect the start of a block + if [[ "$line" =~ \ ]]; then + to_be_added=false # Reset the flag for a new block + path="" + name="" + fi + + # Check for true + if [[ "$line" =~ \true\<\/favorite\> ]]; then + to_be_added=true + fi + + # Extract the and remove leading "./" if present + if [[ "$line" =~ \(.*)\<\/path\> ]]; then + path="${BASH_REMATCH[1]#./}" + fi + + # Extract and sanitize + if [[ "$line" =~ \(.*)\<\/name\> ]]; then + name=$(sanitize "${BASH_REMATCH[1]}") + fi + + # Detect the end of a block + if [[ "$line" =~ \<\/game\> ]]; then + # If the block is meaningful (marked as favorite), generate the launcher + if [ "$to_be_added" = true ] && [ -n "$path" ] && [ -n "$name" ]; then + local launcher="$steamsync_folder/${name}.sh" + local launcher_tmp="$steamsync_folder_tmp/${name}.sh" + + # Create the launcher file + # Check if the launcher file does not already exist + if [ ! -e "$launcher_tmp" ]; then + log d "Creating launcher file: $launcher" + command="flatpak run net.retrodeck.retrodeck -s $system '$roms_folder/$system/$path'" + echo '#!/bin/bash' > "$launcher_tmp" + echo "$command" >> "$launcher_tmp" + chmod +x "$launcher_tmp" + else + log d "$(basename $launcher) desktop file already exists" + fi + fi + + # Clean up variables for safety + to_be_added=false + path="" + name="" + fi + done < "$gamelist" + else + log "e" "Gamelist file not found for system: $system" + fi + done + + # Remove the old Steam sync folder + rm -rf "$steamsync_folder" + + # Move the temporary Steam sync folder to the final location + log d "Moving the temporary Steam sync folder to the final location" + mv "$steamsync_folder_tmp" "$steamsync_folder" && log d "\"$steamsync_folder_tmp\" -> \"$steamsync_folder\"" + + # Check if the Steam sync folder is empty + if [ -z "$(ls -A $steamsync_folder)" ]; then + # if empty, add the remove_from_steam function + log d "No games found, cleaning shortcut" + remove_from_steam + else + log d "Updating game list" + steam-rom-manager add + fi +} + +# Function to remove the games from Steam, this is a workaround to make SRM remove the games as it cannot remove the games based on a empty folder +# So a dummy file must be in place to make SRM remove the other games +remove_from_steam() { + log d "Creating dummy game" + cat "" > "$steamsync_folder/CUL0.sh" + log d "Cleaning the shortcut" + steam-rom-manager remove + log d "Removing dummy game" + rm "$steamsync_folder/CUL0.sh" +} diff --git a/net.retrodeck.retrodeck.desktop b/net.retrodeck.retrodeck.desktop index 30abc6e3..6126ae29 100644 --- a/net.retrodeck.retrodeck.desktop +++ b/net.retrodeck.retrodeck.desktop @@ -1,11 +1,12 @@ [Desktop Entry] Name=RetroDECK -GenericName=Emulation bundle for Steam Deck +GenericName=Universal Emulator Platform Type=Application -Comment=All you need for emulation on Steam Deck +Comment=All-in-one emulation solution for Steam Deck and Linux desktops, making emulation easy and accessible Icon=net.retrodeck.retrodeck Exec= Terminal=false StartupNotify=false -Keywords=multi;engine;emulator;standalone;steam;deck +Keywords=multi;engine;emulator;standalone;steam;deck;retro;games;roms;console;classic;gamepad;arcade +MimeType=application/retro-game;application/vnd.nintendo.snes.rom;application/x-atari-2600-rom;application/x-atari-7800-rom;application/x-atari-lynx-rom;application/x-dreamcast-rom;application/x-gameboy-color-rom;application/x-gameboy-rom;application/x-gamecube-rom;application/x-gamegear-rom;application/x-gba-rom;application/x-gd-rom-cue;application/x-genesis-32x-rom;application/x-genesis-rom;application/x-msx-rom;application/x-n64-rom;application/x-neo-geo-pocket-color-rom;application/x-neo-geo-pocket-rom;application/x-nes-rom;application/x-nintendo-3ds-rom;application/x-nintendo-ds-rom;application/x-pc-engine-rom;application/x-saturn-rom;application/x-sega-cd-rom;application/x-sega-pico-rom;application/x-sg1000-rom;application/x-sms-rom;application/x-virtual-boy-rom;application/x-wii-rom;application/x-wonderswan-color-rom;application/x-wonderswan-rom Categories=Game;Emulator; \ No newline at end of file diff --git a/net.retrodeck.retrodeck.appdata.xml b/net.retrodeck.retrodeck.metainfo.xml similarity index 89% rename from net.retrodeck.retrodeck.appdata.xml rename to net.retrodeck.retrodeck.metainfo.xml index 854f2a98..cb467980 100644 --- a/net.retrodeck.retrodeck.appdata.xml +++ b/net.retrodeck.retrodeck.metainfo.xml @@ -7,32 +7,32 @@ RetroDECK brings an environment to catalog and play your retro games directly on your Steam Deck RetroDECK Team https://retrodeck.net - https://github.com/XargonWan/RetroDECK/issues + https://github.com/RetroDECK/RetroDECK/issues https://retrodeck.readthedocs.io - https://github.com/XargonWan/RetroDECK/wiki/FAQs---Frequently-asked-questions + https://retrodeck.readthedocs.io/en/latest/wiki_faq/faq-rd-general/f https://www.patreon.com/RetroDECK - https://github.com/XargonWan/RetroDECK/blob/main/res/logo.png?raw=true + https://github.com/RetroDECK/RetroDECK/blob/main/res/logo.png?raw=true - https://github.com/XargonWan/RetroDECK/blob/main/res/screenshots/screen01.jpeg?raw=true + https://github.com/RetroDECK/RetroDECK/blob/main/res/screenshots/screen01.jpeg?raw=true - https://github.com/XargonWan/RetroDECK/blob/main/res/screenshots/screen02.jpeg?raw=true + https://github.com/RetroDECK/RetroDECK/blob/main/res/screenshots/screen02.jpeg?raw=true - https://github.com/XargonWan/RetroDECK/blob/main/res/screenshots/screen03.jpeg?raw=true + https://github.com/RetroDECK/RetroDECK/blob/main/res/screenshots/screen03.jpeg?raw=true - https://github.com/XargonWan/RetroDECK/blob/main/res/screenshots/screen04.jpeg?raw=true + https://github.com/RetroDECK/RetroDECK/blob/main/res/screenshots/screen04.jpeg?raw=true - https://github.com/XargonWan/RetroDECK/blob/main/res/screenshots/screen05.jpeg?raw=true + https://github.com/RetroDECK/RetroDECK/blob/main/res/screenshots/screen05.jpeg?raw=true - https://github.com/XargonWan/RetroDECK/blob/main/res/screenshots/screen06.jpeg?raw=true + https://github.com/RetroDECK/RetroDECK/blob/main/res/screenshots/screen06.jpeg?raw=true @@ -52,7 +52,7 @@ 4. [OPTIONAL] Download Steam Grids graphics for RetroDECK with BoilR

    For more detailed information check our wiki: - https://github.com/XargonWan/RetroDECK/wiki

    + https://github.com/RetroDECK/RetroDECK/wiki

    If you want to sponsor the project: https://www.patreon.com/RetroDECK

    If you want to join the RetroDECK community check our:

    @@ -67,6 +67,53 @@ GPL-3.0 CC0-1.0 + + https://github.com/RetroDECK/RetroDECK/releases/tag/0.9.0b + +

    New Additions:

    +
      +
    • New Flash system via the standalone emulator: Ruffle
    • +
    • New RetroArch experimental core: Panda3DS
    • +
    • PortMaster is now included in RetroDECK!
    • +
    • Steam Sync is now available: favorite your games and enable Steam Sync in the Configurator to find them as standalone Steam games, thanks to Steam Rom Manager acting as an engine
    • +
    • New game engine added to run games via CLI. Just run `flatpak run net.retrodeck.retrodeck retrodeck/roms/system/game.ext`, use `--help` for more info
    • +
    • New feature for Desktop: RetroENGINE. RetroDECK can now be used as a headless engine to run your games. Just double-click them!
    • +
    • New default theme: RetroDECK now has its own custom theme for ES-DE. Do you like it? Feel free to give us feedback!
    • +
    • We soft-launched our new website earlier. Come take a look at retrodeck.net!
    • +
    +

    Changes:

    +
      +
    • RetroDECK is on a diet: we saved around 600MB on the final build, about 40% less!
    • +
    • Updated all outdated emulators possible
    • +
    • Duckstation, due to licensing changes, is frozen at the latest possible build, becoming de facto: Legacy
    • +
    • Duckstation configured to use OpenGL as Vulkan seems to be broken in some cases
    • +
    • Because of Steam Sync, the Favorites collection is now enabled by default on ES-DE
    • +
    • ES-DE updated to 3.1.1 with language support and more
    • +
    • ES-DE main menu tidied up. Due to our configurator, there were too many entries, so we moved ES-DE specific configs inside a custom menu
    • +
    • After the initial installation, the user will be prompted to choose the location for game files and BIOSes, as the ES-DE screen will no longer appear due to the presence of PortMaster
    • +
    • The post-update options are now condensed into a single Zenity window
    • +
    • Fixed an issue that was not correctly displaying version notes
    • +
    • Vita3K now uses Vulkan as default
    • +
    • Dolphin and Primehack are no longer scaled wide by default but are set to auto
    • +
    +

    Developers, developers, developers:

    +
      +
    • The manifest was completely redone, more on that in the October blog post
    • +
    • RetroDECK has now migrated to an organization on GitHub. As before, please check the October blog post
    • +
    • The pre_build_automation script was reworked and additional functions were added
    • +
    • Contributing is now easier and the manifest build time is down to about 1 hour (was 3 hours 30 minutes)
    • +
    • Local building has been fixed
    • +
    • Introduced a new library management system called LibMan to ensure that each component brings its own libraries while being built from the manifest
    • +
    • Migrated from AppData to MetaInfo
    • +
    +

    Known issues:

    +
      +
    • In some cases, Steam Sync fails to associate the controller template to the Steam entry, so the user needs to set it manually if desired
    • +
    • Ryujinx is still broken
    • +
    • Please check the known issues in the Wiki under General Information
    • +
    +
    +
    https://github.com/XargonWan/RetroDECK/releases/tag/0.8.4b @@ -122,7 +169,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.8.1b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.8.1b

    Changes:

      @@ -155,7 +202,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.8.0b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.8.0b

      Changes:

        @@ -213,7 +260,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.7.6b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.7.6b

        Changes:

          @@ -231,7 +278,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.7.5b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.7.5b

          Bug fixes and other changes:

            @@ -251,7 +298,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.7.4b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.7.4b

            Hotfix:

              @@ -267,7 +314,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.7.3b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.7.3b

              Updates:

                @@ -281,7 +328,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.7.2b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.7.2b

                Updates:

                  @@ -304,7 +351,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.7.1b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.7.1b

                  Information:

                    @@ -348,7 +395,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.7.0b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.7.0b

                    New - System features:

                      @@ -401,7 +448,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.6.6b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.6.6b

                      Bug fixes:

                        @@ -411,7 +458,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.6.5b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.6.5b

                        Bug fixes and other changes:

                          @@ -423,7 +470,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.6.4b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.6.4b

                          New features - General:

                            @@ -440,7 +487,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.6.3b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.6.3b

                            New features - General:

                              @@ -468,7 +515,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.6.2b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.6.2b
                              • Persistent configurations when updating RetroDECK, this means your custom configurations should be saved across future versions. (We also laid groundwork for dynamic persistent configurations, more on that in a future update. This is the reason why it has taken quite long to fix this).
                              • @@ -492,7 +539,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.6.1b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.6.1b
                                • Updated all the emulators and cores at their latest versions (except for Duckstation)
                                • @@ -511,7 +558,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.6.0b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.6.0b
                                  • Added Ryujinx
                                  • @@ -536,7 +583,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.5.3b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.5.3b
                                    • Fixed inaccessible RetroArch shaders folder
                                    • @@ -553,7 +600,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.5.2b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.5.2b
                                      • VERY IMPORTANT: We are moving your saves! This can take time on the first boot. If you miss some saves they are not gone. Please read more in the wiki.
                                      • @@ -564,7 +611,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.5.1b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.5.1b
                                        • VERY IMPORTANT: We are moving your saves! This can take time on the first boot. If you miss some saves they are not gone. Please read more in the wiki.
                                        • @@ -586,7 +633,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.5.0b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.5.0b
                                          • VERY IMPORTANT: We are moving your saves! This can take time on the first boot. If you miss some saves they are not gone. Please read more in the wiki.
                                          • @@ -606,7 +653,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.4.5b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.4.5b
                                            • Fixed a bug where new symlinks were not created correctly and users couldn't scrape their games
                                            • @@ -621,7 +668,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.4.4b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.4.4b
                                              • Yuzu: Disabled shader caching as it was broken
                                              • @@ -646,7 +693,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.4.3b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.4.3b

                                                Emulators: @@ -674,7 +721,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.4.2b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.4.2b

                                                Emulators: @@ -709,7 +756,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.4.1b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.4.1b

                                                Emulators: @@ -748,7 +795,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.4.0b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.4.0b

                                                Emulators:

                                                  @@ -805,7 +852,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.3.1b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.3.1b
                                                  • Fixed Dolphin: now Dolphin (Standalone) is the default emulator for GC/Wii.
                                                  • @@ -813,7 +860,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.3.0b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.3.0b
                                                    • Migrated everything from the old domain com.xargon.retrodeck to net.retrodeck.retrodeck to be aligned with flathub standards
                                                    • @@ -833,7 +880,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.2.0b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.2.0b
                                                      • Migrated everything from the old building script to a full fledged yaml in order to being published on Discover
                                                      • @@ -849,7 +896,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.1.1b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.1.1b
                                                        • Removed some debug stuff (press any key to continue)
                                                        • @@ -861,7 +908,7 @@ - https://github.com/XargonWan/RetroDECK/releases/tag/0.1.0b + https://github.com/RetroDECK/RetroDECK/releases/tag/0.1.0b
                                                          • Pick up and play, just put your roms and bios in /retrodeck/roms and /retrodeck/bios folders.
                                                          • diff --git a/net.retrodeck.retrodeck.yml b/net.retrodeck.retrodeck.yml index 784c3f8f..2fb6bc3c 100644 --- a/net.retrodeck.retrodeck.yml +++ b/net.retrodeck.retrodeck.yml @@ -1,11 +1,19 @@ app-id: net.retrodeck.retrodeck runtime: org.kde.Platform -runtime-version: "6.7" +runtime-version: &runtime-version "6.7" sdk: org.kde.Sdk -sdk-extensions: - - org.freedesktop.Sdk.Extension.llvm18 # Needed for RPCS3 +base: org.electronjs.Electron2.BaseApp # Needed for Steam ROM Manager +base-version: "22.08" command: retrodeck.sh +add-extensions: + org.freedesktop.Platform.ffmpeg-full: + directory: lib/ffmpeg + add-ld-path: . + version: 23.08 +cleanup-commands: + - mkdir -p ${FLATPAK_DEST}/lib/ffmpeg + finish-args: - --socket=wayland - --socket=x11 @@ -29,7 +37,7 @@ finish-args: - --env=SDL_VIDEO_WAYLAND_WMCLASS=net.retrodeck.retrodeck # XEMU - Fixes issues with openSUSE systems, QEMU_AUDIO_DRV is defined as "pa" causing xemu to not launch - --unset-env=QEMU_AUDIO_DRV - # BoilR + # Steam ROM Manager - --filesystem=xdg-data/Steam:rw #Steam (flatpak) - --filesystem=~/.steam:rw # Steam (Non-flatpak) - --filesystem=~/.var/app/com.valvesoftware.Steam:rw # Steam (Flatpak) @@ -48,13 +56,12 @@ cleanup: - /bin/zstd* - /lib/pkg-config - /share/doc + - /share/gtk-doc # Steam ROM Manager - /share/man - /src - '*.a' - '*.la' - # XMLSTARLET - - /lib/debug - - /share/runtime + - /app/bin/libman.sh modules: @@ -68,17 +75,18 @@ modules: # The version number is hardcoded in /app/retrodeck/version # # UPDATE STEPS FOR MAIN: - # [X] Update the VERSION variable on line containing "VERSION=THISBRANCH" - # [X] Update the appdata.xml with the version number and notes - # - - name: version-initialization + # [ ] Update the VERSION variable in retrodeck-initialization module + # [ ] Update the net.retrodeck.retrodeck.metainfo.xml with the version number and notes + + - name: retrodeck-initialization buildsystem: simple build-commands: - | - # on main please update this with the version variable, eg: VERSION=0.8.4b - # on cooker will be THISBRANCH - VERSION=0.8.4b + # VERSION INITIALIZATION + # on main please update this with the version variable, eg: VERSION=0.8.0b + # on cooker will be VERSION=cooker-0.9.0b for example + VERSION=0.9.0b git checkout ${GITHUB_REF_NAME} mkdir -p ${FLATPAK_DEST}/retrodeck/ @@ -89,10 +97,12 @@ modules: echo $VERSION >> ${FLATPAK_DEST}/retrodeck/version cat ${FLATPAK_DEST}/retrodeck/version echo "Version is $VERSION" + + # LIBMAN INSTALLATION + install -Dm755 "automation_tools/libman.sh" "/app/bin/libman.sh" sources: - - type: git - url: https://github.com/XargonWan/RetroDECK.git - branch: THISBRANCH + - type: dir + path: . - name: xmlstarlet config-opts: @@ -110,57 +120,6 @@ modules: post-install: - ln -s "xml" "${FLATPAK_DEST}/bin/xmlstarlet" ||: - # mesa repo got a double certificate issue and gnutils cannot handle that so GLU download fails, - # this affects even the shared-modules's libglu so I have to replace it temporarly - # more info there: https://gitlab.com/gnutls/gnutls/-/issues/1335 - # dependency of: RETROARCH, CEMU, RPCS3, XEMU - - name: libglu - buildsystem: meson - cleanup: - - /include - - /lib/debug - - /lib/pkgconfig - - /lib/*.a - sources: - - type: archive - url: https://ftp.osuosl.org/pub/blfs/conglomeration/glu/glu-9.0.3.tar.xz - sha256: bd43fe12f374b1192eb15fe20e45ff456b9bc26ab57f0eee919f96ca0f8a330f - # - type: archive - # url: https://mesa.freedesktop.org/archive/glu/glu-9.0.3.tar.xz - # sha256: bd43fe12f374b1192eb15fe20e45ff456b9bc26ab57f0eee919f96ca0f8a330f - # x-checker-data: - # type: anitya - # project-id: 13518 - # stable-only: true - # url-template: https://mesa.freedesktop.org/archive/glu/glu-$version.tar.xz - - - name: libgudev - buildsystem: meson - config-opts: - - -Dtests=disabled - - -Dvapi=disabled - - -Dintrospection=disabled - - -Dgtk_doc=false - cleanup: - - /include - - /etc - - /libexec - - /sbin - - /lib/pkgconfig - - /lib/systemd - - /man - - /share/aclocal - - /share/doc - - /share/gtk-doc - - /share/man - - /share/pkgconfig - - '*.la' - - '*.a' - sources: - - type: archive - url: https://ftp.osuosl.org/pub/blfs/conglomeration/libgudev/libgudev-237.tar.xz - sha256: 0d06b21170d20c93e4f0534dbb9b0a8b4f1119ffb00b4031aaeb5b9148b686aa - - name: rclone buildsystem: simple build-commands: @@ -192,402 +151,161 @@ modules: - name: jq buildsystem: simple build-commands: - - cp jq-linux64 ${FLATPAK_DEST}/bin/jq - - chmod +x ${FLATPAK_DEST}/bin/jq + - install -Dm755 jq-linux64 ${FLATPAK_DEST}/bin/jq sources: - type: file url: https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 sha256: af986793a515d500ab2d35f8d2aecd656e764504b789b66d7e1a0b727a124c44 + + # Steam ROM Manager - START + # https://github.com/flathub/com.steamgriddb.steam-rom-manager + + - name: zypak + sources: + - type: git + url: https://github.com/refi64/zypak + tag: v2022.03 + commit: 8424c6bcf909ca2031ebc6537d324bb64772266e + + - name: steam-rom-manager + buildsystem: simple + env: + IN_FLATPAK: 1 + build-commands: + - install -D run.sh ${FLATPAK_DEST}/bin/steam-rom-manager + - bsdtar -xf srm.deb data.tar.xz + - tar xf data.tar.xz + - mv "opt/Steam ROM Manager" "${FLATPAK_DEST}/srm" + - rm -rf "usr/share/icons/hicolor/1024x1024" + - cd usr; find share/icons/hicolor -type f -exec install -Dm644 "{}" + "${FLATPAK_DEST}/{}" \; + - rm -r srm.deb data.tar.xz usr opt + sources: + - type: script + dest-filename: run.sh + commands: + - /app/bin/zypak-wrapper.sh /app/srm/steam-rom-manager "${@}" + - type: file + dest-filename: srm.deb + url: https://github.com/SteamGridDB/steam-rom-manager/releases/download/v2.5.29/steam-rom-manager_2.5.29_amd64.deb + sha256: a85369ad8b758551b74755ddb712c6bd72311693971065c9bcec1dcdec53f54a + x-checker-data: + type: json + url: https://api.github.com/repos/SteamGridDB/steam-rom-manager/releases/latest + url-query: >- + .assets[] | select(.name=="steam-rom-manager_" + $version + + "_amd64.deb") | .browser_download_url + version-query: .tag_name | sub("^v"; "") + + # Steam ROM Manager - END - name: yq buildsystem: simple build-commands: - - cp yq_linux_amd64 ${FLATPAK_DEST}/bin/yq - - chmod +x ${FLATPAK_DEST}/bin/yq + - install -Dm755 yq_linux_amd64 ${FLATPAK_DEST}/bin/yq sources: - type: file url: https://github.com/mikefarah/yq/releases/download/v4.33.3/yq_linux_amd64 sha256: 4ee662847c588c3ef2fec8bfb304e8739e3dbaba87ccb9a608d691c88f5b64dc - # dependency of: CEMU - - name: glslang - buildsystem: cmake-ninja - config-opts: - - -DCMAKE_BUILD_TYPE=Release - - -DENABLE_CTEST=OFF - # TODO: Does Cemu benefit from SPIRV-Tools-opt - - -DENABLE_OPT=OFF - cleanup: - - /include - - /lib/cmake - sources: - - type: archive - url: https://github.com/KhronosGroup/glslang/archive/14.2.0.tar.gz - sha256: 14a2edbb509cb3e51a9a53e3f5e435dbf5971604b4b833e63e6076e8c0a997b5 - x-checker-data: - type: anitya - stable-only: true - project-id: 205796 - url-template: https://github.com/KhronosGroup/glslang/archive/$version.tar.gz - - # enables motion controls on non-wii controllers (switch, ps4, etc) - # dependency of: DOLPHIN, RPCS3 - # TODO: requires a udev rule enabling Motion Sensors access - - name: libevdev - buildsystem: meson - config-opts: - - -Dtests=disabled - - -Ddocumentation=disabled - cleanup: - - /bin - - /include - - /lib/pkgconfig - - /share - sources: - - type: archive - url: https://www.freedesktop.org/software/libevdev/libevdev-1.13.2.tar.xz - sha256: 3eca86a6ce55b81d5bce910637fc451c8bbe373b1f9698f375c7f1ad0de3ac48 - x-checker-data: - type: anitya - project-id: 20540 - stable-only: true - url-template: https://www.freedesktop.org/software/libevdev/libevdev-$version.tar.xz - # dependency of: CEMU - - name: rapidjson - buildsystem: cmake-ninja - config-opts: - - -DRAPIDJSON_BUILD_DOC=OFF - - -DRAPIDJSON_BUILD_EXAMPLES=OFF - - -DRAPIDJSON_BUILD_TESTS=OFF - - -DRAPIDJSON_BUILD_THIRDPARTY_GTEST=OFF - cleanup: - - /include - - /lib/cmake - - /lib/pkgconfig - - /share/doc - sources: - - type: archive - url: https://github.com/Tencent/rapidjson/archive/refs/tags/v1.1.0.tar.gz - sha256: bf7ced29704a1e696fbccf2a2b4ea068e7774fa37f6d7dd4039d0787f8bed98e - x-checker-data: - type: anitya - project-id: 7422 - stable-only: true - url-template: https://github.com/Tencent/rapidjson/archive/refs/tags/v$version.tar.gz - - # dependency of: CEMU, SOLARUS - - name: glm - buildsystem: cmake-ninja - cleanup: ['*'] - no-make-install: true - post-install: - - install -d ${FLATPAK_DEST}/include - - cp -R glm ${FLATPAK_DEST}/include - - cp -R cmake/glm ${FLATPAK_DEST}/lib/cmake - sources: - - type: archive - url: https://github.com/g-truc/glm/releases/download/0.9.9.8/glm-0.9.9.8.zip - sha256: 37e2a3d62ea3322e43593c34bae29f57e3e251ea89f4067506c94043769ade4c + # GODOT Configurator + # - name: retrodeck-configurator + # buildsystem: simple + # build-commands: + # - install -Dm755 "Godot_v4.3-stable_linux.x86_64" "${FLATPAK_DEST}/bin/godot" + # - mkdir -p "${FLATPAK_DEST}/retrodeck" + # - godot --headless --path "tools/configurator" --import + # - godot --headless --path "tools/configurator" --export-pack "Linux/X11 64-bit" "${FLATPAK_DEST}/retrodeck/configurator.pck" + # - chmod +x "${FLATPAK_DEST}/retrodeck/configurator.pck" + # - echo '#!/bin/sh' > "godot-configurator.sh" + # - echo 'godot --main-pack /app/retrodeck/configurator.pck' >> "godot-configurator.sh" + # - install -Dm755 "godot-configurator.sh" "/app/bin/" + # sources: + # - type: archive + # url: https://github.com/godotengine/godot/releases/download/4.3-stable/Godot_v4.3-stable_linux.x86_64.zip + # sha256: 7de56444b130b10af84d19c7e0cf63cf9e9937ee4ba94364c3b7dd114253ca21 + # - type: archive + # url: https://www.freedesktop.org/software/fontconfig/release/fontconfig-2.15.0.tar.gz + # sha256: f5f359d6332861bd497570848fcb42520964a9e83d5e3abe397b6b6db9bcaaf4 + # dest: fontconfig + # - type: git + # url: THISREPO + # branch: THISBRANCH - # dependency of: CEMU, ES-DE - - name: pugixml - buildsystem: cmake-ninja - config-opts: - - -DBUILD_SHARED_LIBS=ON - cleanup: - - /include - - /lib/cmake - - /lib/pkgconfig - sources: - - type: archive - url: https://github.com/zeux/pugixml/releases/download/v1.14/pugixml-1.14.tar.gz - sha256: 2f10e276870c64b1db6809050a75e11a897a8d7456c4be5c6b2e35a11168a015 - x-checker-data: - type: anitya - project-id: 3728 - url-template: https://github.com/zeux/pugixml/releases/download/v$version/pugixml-$version.tar.gz - - # dependency of: CEMU, RPCS3 - - rd-submodules/shared-modules/glew/glew.json - - # dependency of: XEMU, MelonDS (4.7.0) - - name: libslirp - buildsystem: meson - cleanup: - - /include - sources: - - type: archive - url: https://gitlab.freedesktop.org/slirp/libslirp/-/archive/v4.8.0/libslirp-v4.8.0.tar.gz - sha256: 2a98852e65666db313481943e7a1997abff0183bd9bea80caec1b5da89fda28c - x-checker-data: - type: anitya - project-id: 96796 - stable-only: true - url-template: https://gitlab.freedesktop.org/slirp/libslirp/-/archive/v$version/libslirp-v$version.tar.gz - - # dependency of: CEMU (1.0.26), DOLPHIN (1.0.27) - - name: libusb - config-opts: - - --disable-static - cleanup: - - /include - - /lib/*.la - - /lib/pkgconfig - sources: - - type: archive - url: https://github.com/libusb/libusb/releases/download/v1.0.27/libusb-1.0.27.tar.bz2 - sha256: ffaa41d741a8a3bee244ac8e54a72ea05bf2879663c098c82fc5757853441575 - x-checker-data: - type: anitya - project-id: 1749 - stable-only: true - url-template: https://github.com/libusb/libusb/releases/download/v$version/libusb-$version.tar.bz2 - - # ES-DE - START - # https://gitlab.com/es-de/emulationstation-de - - - name: ffmpeg - config-opts: - - --disable-static - - --disable-programs - - --disable-doc - - --enable-gpl - - --enable-shared - - --enable-libvorbis - - --enable-libopus - - --enable-libvpx - - --enable-postproc - sources: - - type: git - url: https://github.com/FFmpeg/FFmpeg.git - tag: n5.1.4 - - - name: freeimage - no-autogen: true - build-options: - cxxflags: -std=c++14 - make-args: - - DESTDIR=/app - sources: - - type: archive - url: http://downloads.sourceforge.net/freeimage/FreeImage3180.zip - sha256: f41379682f9ada94ea7b34fe86bf9ee00935a3147be41b6569c9605a53e438fd - - type: shell - commands: - - sed -i 's|-o root -g root ||' ./Makefile.gnu - - sed -i 's|/usr|/app|' ./Makefile.gnu - - - name: libgit2 - buildsystem: cmake-ninja - config-opts: - - -DCMAKE_BUILD_TYPE=Release - - -DBUILD_SHARED_LIBS:BOOL=ON - - -DTHREADSAFE=ON - sources: - - type: git - url: https://github.com/libgit2/libgit2.git - tag: v1.6.3 - - # Needed from ES-DE 2.1.0+ - - name: libpoppler-glib - buildsystem: cmake-ninja - config-opts: - - -DENABLE_BOOST=OFF - sources: - - type: archive - # original link not working, found a mirror - url: https://poppler.freedesktop.org/poppler-22.11.0.tar.xz - #url: https://gitlab.freedesktop.org/poppler/poppler/-/archive/poppler-22.11.0/poppler-poppler-22.11.0.tar.bz2 - sha256: 093ba9844ed774285517361c15e21a31ba4df278a499263d4403cca74f2da828 - cleanup: - - /lib/pkgconfig - - /include - - '*.a' - - '*.la' - - # When updating this module remember to check those on the main repos: - - name: ES-DE - buildsystem: cmake-ninja - config-opts: - - -DRETRODECK=on - cleanup: - - es-app - - es-core - sources: - - type: git - url: https://github.com/RetroDECK/ES-DE - branch: 6fca5df93116a2be3028aab89850a2f5be3eb6e4 - - # ES-DE - END - - # ES-DE Themes - START - - - name: art-book-next-es-de - buildsystem: simple - build-commands: - - mkdir -p ${FLATPAK_DEST}/share/es-de/themes/art-book-next-es-de/ - - mv -f * ${FLATPAK_DEST}/share/es-de/themes/art-book-next-es-de/ - sources: - - type: git - url: https://github.com/anthonycaccese/art-book-next-es-de.git - commit: 4fe896af7447404f6ea083335cd661c91b0f7860 - - # ES-DE Themes - END - - # External manifests start - - # RetroArch - START - # https://github.com/flathub/org.libretro.RetroArch + # RetroArch + # https://retroarch.com/index.php?page=platforms - name: retroarch - config-opts: - - '--enable-dbus' + buildsystem: simple + build-commands: + # Step 1: Create required directories + - mkdir -p "${FLATPAK_DEST}/share/libretro/" + # Step 2: Copy RetroArch configuration files + - cp -r ./RetroArch-Linux-x86_64.AppImage.home/.config/retroarch/* "${FLATPAK_DEST}/share/libretro/" + # Step 3: Extract the AppImage + - chmod +x ./*.AppImage + - ./*.AppImage --appimage-extract + # Step 4: Use libman.sh to manage libraries + - /app/bin/libman.sh "squashfs-root/usr/lib" + # Step 5: Copy remaining extracted files to the Flatpak destination + - find squashfs-root/usr/ -exec sh -c 'install -Dm755 "{}" "${FLATPAK_DEST}/$(echo "{}" | sed "s|^squashfs-root/usr||")"' \; + sources: + - type: archive + url: https://buildbot.libretro.com/stable/1.20.0/linux/x86_64/RetroArch.7z + sha256: 809b3e9f02a9849719453d0f189a0edc544ad3235c8ce75a79488e710ba9668a + + # TODO: outsource me + - name: libbz2 + no-autogen: true make-args: - - GLOBAL_CONFIG_DIR=${FLATPAK_DEST}/etc - - HAVE_TRANSLATE=1 - - HAVE_ACCESSIBILITY=1 - sources: - - type: git - url: https://github.com/libretro/RetroArch.git - commit: 06fa5325f8b3cd42e6fba3d57835d5924c9ea2e7 - - type: file - path: rd-submodules/retroarch/retroarch.cfg - - type: file - path: rd-submodules/retroarch/VkLayer_FROG_gamescope_wsi.x86_64.json - post-install: - - mkdir -p ${FLATPAK_DEST}/share/icons/hicolor/scalable/apps/ - - >- - mv ${FLATPAK_DEST}/share/pixmaps/retroarch.svg - ${FLATPAK_DEST}/share/icons/hicolor/scalable/apps/ - - rmdir --ignore-fail-on-non-empty ${FLATPAK_DEST}/share/pixmaps/ - - mkdir -p ${FLATPAK_DEST}/etc - - >- - sed s:@prefix@:${FLATPAK_DEST}:g retroarch.cfg > - ${FLATPAK_DEST}/etc/retroarch.cfg - - mkdir -p ${FLATPAK_DEST}/share/vulkan/implicit_layer.d - - >- - install VkLayer_FROG_gamescope_wsi.x86_64.json - /app/share/vulkan/implicit_layer.d/VkLayer_FROG_gamescope_wsi.x86_64.json - modules: - - rd-submodules/retroarch/modules/libpng/libpng-1.6.json - - rd-submodules/retroarch/modules/nvidia-cg-toolkit/nvidia-cg-toolkit-3.1.0013.json - - rd-submodules/shared-modules/SDL/SDL-1.2.15.json - - rd-submodules/shared-modules/SDL/SDL_image-1.2.12.json - - rd-submodules/shared-modules/SDL/SDL_mixer-1.2.12.json - - rd-submodules/shared-modules/SDL/SDL_net-1.2.8.json - - rd-submodules/shared-modules/SDL/SDL_ttf-2.0.11.json - #- rd-submodules/shared-modules/libusb/libusb.json moved outside - # certificate glu issue - #- rd-submodules/shared-modules/gudev/gudev.json - - rd-submodules/retroarch/modules/libbz2/libbz2-1.0.8.json - - rd-submodules/retroarch/modules/xrandr/xrandr-1.5.json - - rd-submodules/retroarch/modules/libaio/libaio-0.3.112.json - # certificate issue, check glu module for more info - #- rd-submodules/shared-modules/glu/glu-9.json - - rd-submodules/shared-modules/libdecor/libdecor.json - - rd-submodules/retroarch/modules/gamemode/gamemode-1.8.json - - name: retroarch-filers-video - subdir: gfx/video_filters - make-install-args: + - --f=Makefile-libbz2_so - PREFIX=${FLATPAK_DEST} + no-make-install: true + post-install: + - mv libbz2.so.1.0.8 ${FLATPAK_DEST}/lib/ + - ln -s ${FLATPAK_DEST}/lib/libbz2.so.1.0.8 ${FLATPAK_DEST}/lib/libbz2.so.1.0 sources: - - type: git - url: https://github.com/libretro/RetroArch.git - commit: 06fa5325f8b3cd42e6fba3d57835d5924c9ea2e7 - - name: retroarch-filers-audio - subdir: libretro-common/audio/dsp_filters - make-install-args: - - PREFIX=${FLATPAK_DEST} - sources: - - type: git - url: https://github.com/libretro/RetroArch.git - commit: 06fa5325f8b3cd42e6fba3d57835d5924c9ea2e7 - - name: retroarch-assets - make-install-args: - - PREFIX=${FLATPAK_DEST} - sources: - - type: git - url: https://github.com/libretro/retroarch-assets.git - commit: 923b711dc6772a168d83dc8915e9260730fcf3a1 - - name: libretro-database - make-install-args: - - PREFIX=${FLATPAK_DEST} - sources: - - type: git - url: https://github.com/libretro/libretro-database.git - commit: 977612e2cd284f67fc0d121d9d94c5982a49f61e - - name: libretro-core-info - make-install-args: - - PREFIX=${FLATPAK_DEST} - sources: - - type: git - url: https://github.com/libretro/libretro-core-info.git - commit: ad0f67e172dca9edb88a4eea1d541f407a9c2d12 - - name: retroarch-joypad-autoconfig - make-install-args: - - PREFIX=${FLATPAK_DEST} - sources: - - type: git - url: https://github.com/libretro/retroarch-joypad-autoconfig.git - commit: ec43cfef730f15d6b20bf277681250b2f4b99a8b - - name: common-shaders - make-install-args: - - PREFIX=${FLATPAK_DEST} - sources: - - type: git - url: https://github.com/libretro/common-shaders.git - commit: 86cfa146a8dfddf6377ddb5dbcff552feae2e5bf - - name: slang-shaders - make-install-args: - - PREFIX=${FLATPAK_DEST} - sources: - - type: git - url: https://github.com/libretro/slang-shaders.git - commit: d367f6cf73e01a8e43028107ab1ded2d2f05fe6a - - name: glsl-shaders - make-install-args: - - PREFIX=${FLATPAK_DEST} - sources: - - type: git - url: https://github.com/libretro/glsl-shaders.git - commit: db974e4d6f6e3178198b7690095a107b3b509d4b - - name: common-overlays - make-install-args: - - PREFIX=${FLATPAK_DEST} - sources: - - type: git - url: https://github.com/libretro/common-overlays.git - commit: c266abf4d7f9286fb6fbcfb57647cd9c80c45530 + - type: archive + url: https://sourceware.org/pub/bzip2/bzip2-1.0.8.tar.gz + sha256: ab5a03176ee106d3f0fa90e381da478ddae405918153cca248e682cd0c4a2269 + + # TODO: If more are mising are here: https://github.com/flathub/org.libretro.RetroArch/tree/8c388bb84df63b3a2efb40dc3d8f78df7717059e/modules - # RetroArch - END - - # Not part of the offical RetroArch manifest # retroarch-cores-nightly must be earlier than retroarch-cores as it will overwrite this cores with the stable ones - name: retroarch-cores-nightly buildsystem: simple build-commands: - - mkdir -p /app/share/libretro/cores/ - - - mv -f ./RetroArch-Linux-x86_64.AppImage.home/.config/retroarch/cores/* /app/share/libretro/cores/ + - mkdir -p ${FLATPAK_DEST}/share/libretro/cores/ + - cp -r ./RetroArch-Linux-x86_64.AppImage.home/.config/retroarch/cores/* ${FLATPAK_DEST}/share/libretro/cores/ sources: - type: archive url: https://buildbot.libretro.com/nightly/linux/x86_64/RetroArch_cores.7z sha256: RANIGHTLYCORESPLACEHOLDER + # Citra is removed from the LibretroCores but is still available in Libretro repo + - name: citra-libretro-core + buildsystem: simple + build-commands: + - cp citra_libretro.so ${FLATPAK_DEST}/share/libretro/cores/ + sources: + - type: archive + url: https://buildbot.libretro.com/nightly/linux/x86_64/latest/citra_libretro.so.zip + sha256: RACITRAPLACEHOLDER + - name: retroarch-cores buildsystem: simple build-commands: - - mkdir -p /app/share/libretro/cores/ - - mv -f ./RetroArch-Linux-x86_64.AppImage.home/.config/retroarch/cores/* /app/share/libretro/cores/ + - mkdir -p ${FLATPAK_DEST}/share/libretro/cores/ + - cp -rf ./RetroArch-Linux-x86_64.AppImage.home/.config/retroarch/cores/* ${FLATPAK_DEST}/share/libretro/cores/ sources: - type: archive - url: https://buildbot.libretro.com/stable/1.17.0/linux/x86_64/RetroArch_cores.7z - sha256: 1c1d61f86b196e9f89c1a93d0756fba95b60ef3ba57a7cd1d1e86dfd419c766b + url: https://buildbot.libretro.com/stable/1.20.0/linux/x86_64/RetroArch_cores.7z + sha256: 433f46ecbb3f1ae8d17b6c5fdffbd11761ce4532652d73a1d4e1f0029c175a87 - name: retroarch-sameduck-core buildsystem: simple build-commands: - - mv sameduck_libretro.so /app/share/libretro/cores/sameduck_libretro.so + - cp -f sameduck_libretro.so ${FLATPAK_DEST}/share/libretro/cores/sameduck_libretro.so sources: - type: archive url: https://buildbot.libretro.com/nightly/linux/x86_64/latest/sameduck_libretro.so.zip @@ -596,8 +314,8 @@ modules: - name: ppsspp-bios buildsystem: simple build-commands: - - mkdir -p ${FLATPAK_DEST}/retrodeck/extras/PPSSPP - - mv -f assets/* ${FLATPAK_DEST}/retrodeck/extras/PPSSPP/ + - mkdir -p ${FLATPAK_DEST}/retrodeck/extras/PPSSPP + - cp -r assets/* ${FLATPAK_DEST}/retrodeck/extras/PPSSPP/ sources: - type: archive url: https://github.com/hrydgard/ppsspp/archive/refs/heads/master.zip @@ -607,8 +325,8 @@ modules: buildsystem: simple build-commands: - mkdir -p ${FLATPAK_DEST}/retrodeck/extras/MSX - - mv -f Databases ${FLATPAK_DEST}/retrodeck/extras/MSX/Databases - - mv -f Machines ${FLATPAK_DEST}/retrodeck/extras/MSX/Machines + - cp -r Databases ${FLATPAK_DEST}/retrodeck/extras/MSX/Databases + - cp -r Machines ${FLATPAK_DEST}/retrodeck/extras/MSX/Machines sources: - type: archive url: http://bluemsx.msxblue.com/rel_download/blueMSXv282full.zip @@ -619,466 +337,183 @@ modules: buildsystem: simple build-commands: - mkdir -p ${FLATPAK_DEST}/retrodeck/extras/Amiga - - cp -f Linux/x86-64/capsimg.so ${FLATPAK_DEST}/retrodeck/extras/Amiga/capsimg.so + - cp -r Linux/x86-64/capsimg.so ${FLATPAK_DEST}/retrodeck/extras/Amiga/capsimg.so sources: - type: archive url: https://github.com/rsn8887/capsimg/releases/download/1.1/Capsimg_for_Retroarch.zip sha256: 16c1b511b8e1374a2b6461a66bb6f07b7d2627eb4e941fd1497a432330acaad1 strip-components: 0 - # PPSSPP - START - # https://github.com/flathub/org.ppsspp.PPSSPP + # PPSSPP + # why from our artifacts: AppImage not provided, only Flatpak, requested here: https://github.com/hrydgard/ppsspp/issues/16511 + # https://github.com/RetroDECK/org.ppsspp.PPSSPP - - name: ppsspp - buildsystem: cmake-ninja - config-opts: - - -DUSE_SYSTEM_FFMPEG=OFF - - -DUSE_SYSTEM_LIBZIP=ON - - -DUSE_SYSTEM_ZSTD=ON - - -DUSE_WAYLAND_WSI=ON - - -DUSING_QT_UI=OFF - - -DBUILD_TESTING=OFF - - -DOpenGL_GL_PREFERENCE=GLVND - build-options: - arch: - aarch64: - config-opts: - - -DUSING_EGL=ON - - -DUSING_GLES2=ON - post-install: - - install -Dm644 icons/icon-512.svg ${FLATPAK_DEST}/share/icons/hicolor/scalable/apps/ppsspp.svg - cleanup: - - /share/ppsspp/assets/lang/README.md + - name: retrodeck-ppsspp + buildsystem: simple + build-commands: + # Step 1: Remove any existing manifest.json file + - rm -f "files/manifest.json" + # Step 2: Use libman.sh to manage libraries + - /app/bin/libman.sh "files/lib" + # Step 3: removing libraries folder that have been already moved + - rm -rf "files/lib" + # Step 4: Ensure binaries are executable + - chmod +x "files/bin/"* + # Step 5: Copy all remaining files to the Flatpak destination + - cp -r files/* "${FLATPAK_DEST}" sources: - - type: git - url: &ppsspp-url https://github.com/hrydgard/ppsspp.git - tag: v1.17.1 - commit: d479b74ed9c3e321bc3735da29bc125a2ac3b9b2 - x-checker-data: - type: json - url: https://api.github.com/repos/hrydgard/ppsspp/releases/latest - version-query: .tag_name | sub("^v"; "") - tag-query: .tag_name - timestamp-query: .published_at + - type: archive + url: https://github.com/RetroDECK/org.ppsspp.PPSSPP/releases/latest/download/RetroDECK-Artifact.tar.gz + sha256: RETRODECKPPSSPPLATEST - # PPSSPP - END - - - # PCSX2 - START - # Inspired by: - # https://github.com/flathub/com.zettlr.Zettlr/blob/master/com.zettlr.Zettlr.yaml + # PCSX2 - FROZEN UNTIL QT 6.8 UPDATE + # Inspired by: https://github.com/flathub/com.zettlr.Zettlr/blob/master/com.zettlr.Zettlr.yaml # https://pcsx2.net/downloads/ - - name: pcsx2-qt + - name: pcsx2 buildsystem: simple build-commands: - - chmod +x pcsx2*.AppImage - - ./pcsx2*.AppImage --appimage-extract - - mkdir -p "${FLATPAK_DEST}/pcsx2-qt" - - cp -r squashfs-root/* "${FLATPAK_DEST}/pcsx2-qt" - - ln -s "${FLATPAK_DEST}/pcsx2-qt/usr/bin/pcsx2-qt" "${FLATPAK_DEST}/bin/pcsx2-qt" + # Step 1: Ensure the AppImage is executable + - chmod +x *.AppImage + # Step 2: Extract the AppImage + - ./*.AppImage --appimage-extract + # Step 3: Use libman.sh to handle library files + - /app/bin/libman.sh "squashfs-root/usr/lib" + # Step 4: Copy the remaining extracted files to the Flatpak destination + - find squashfs-root/usr/ -exec sh -c 'install -Dm755 "{}" "${FLATPAK_DEST}/$(echo "{}" | sed "s|^squashfs-root/usr||")"' \; sources: - type: file - url: https://github.com/PCSX2/pcsx2/releases/download/v2.0.3/pcsx2-v2.0.3-linux-appimage-x64-Qt.AppImage - sha256: ce1a6240643a1c7b68d5ad21789bf9de218fcef6f61649a6503b7de7bfce186f + url: https://github.com/PCSX2/pcsx2/releases/download/v2.1.190/pcsx2-v2.1.190-linux-appimage-x64-Qt.AppImage + sha256: 6a83a7bc499ad4ef4940aa2df08624876b452998f897ebdb8f8d7687c9035b79 - # PCSX2 - END + # Dolphin + # why from source: AppImage not provided, only Flatpak + # https://github.com/RetroDECK/org.DolphinEmu.dolphin-emu - # Dolphin - START - # https://github.com/flathub/org.DolphinEmu.dolphin-emu - # WHEN UPADTING: remember to update rd-submodules/dolphin contents - - - name: xdg-screensaver-shim - buildsystem: meson - sources: - - type: archive - url: https://github.com/Unrud/xdg-screensaver-shim/archive/0.0.2.tar.gz - sha256: 0ed2a69fe6ee6cbffd2fe16f85116db737f17fb1e79bfb812d893cf15c728399 - - - name: dolphin-emu - buildsystem: cmake-ninja - config-opts: - - -DCMAKE_BUILD_TYPE=Release - - -DENABLE_ALSA=OFF - - -DENABLE_SDL=ON - - -DENABLE_EVDEV=ON - - -DDISTRIBUTOR=Flathub - cleanup: - - /share/man - post-install: - - install -D -t ${FLATPAK_DEST}/bin/ dolphin-emu-wrapper - - sed -i -e 's/viewBox="0 0 1024.02 571.29"/viewBox="0 -285.645 1024 1024" width="2048" - height="2048"/g' /app/share/icons/hicolor/scalable/apps/dolphin-emu.svg - sources: - - type: git - # Sometimes Dolphin or its submodules clone are failing in https so it must done in ssh - # fatal: remote transport reported error - # url: ssh://git@github.com/dolphin-emu/dolphin.git - url: https://github.com/dolphin-emu/dolphin.git - commit: cc3ff347b437fd80f3a2880d1bbc7ba2d5f191f4 - # x-checker-data: - # type: json - # url: https://dolphin-emu.org/update/latest/beta - # commit-query: .hash - # version-query: .shortrev - # timestamp-query: .date - # is-main-source: true - # detects whether dolphin is running in a flatpak sandbox - # and makes it use xdg directories if it is. - # prevents dolphin from attempting to write conf files - # in non-writable paths, typically happens when a user - # has leftover files from a previous non-flatpak install - - type: patch - path: rd-submodules/dolphin/detectflatpak.patch - # version strings must match exactly for online multiplayer - - type: patch - path: rd-submodules/dolphin/nodirtyversion.patch - - type: script - commands: - - | - for i in {0..9}; do - test -S $XDG_RUNTIME_DIR/discord-ipc-$i || - ln -sf {app/com.discordapp.Discord,$XDG_RUNTIME_DIR}/discord-ipc-$i; - done - dolphin-emu "$@" - dest-filename: dolphin-emu-wrapper - - - name: universal_dynamic_input + - name: retrodeck-dolphin buildsystem: simple build-commands: - - mkdir -p ${FLATPAK_DEST}/retrodeck/extras/DynamicInputTextures - - cp -r * ${FLATPAK_DEST}/retrodeck/extras/DynamicInputTextures/ - sources: - - type: git - url: https://github.com/Venomalia/UniversalDynamicInput.git - commit: UNIVERSALDYNAMICINPUTCOMMITPLACEHOLDER - - # Dolphin - END - - # XEMU - START - # https://github.com/flathub/app.xemu.xemu - - - name: libpcap - buildsystem: cmake-ninja - cleanup: - - /bin - - /include - - /lib/debug - - /lib/pkgconfig - - /lib/*.a - - /share + # Step 1: Remove any existing manifest.json file + - rm -f "files/manifest.json" + # Step 2: Use libman.sh to manage libraries + - /app/bin/libman.sh "files/lib" + # Step 3: removing libraries folder that have been already moved + - rm -rf "files/lib" + # Step 4: Ensure binaries are executable + - chmod +x "files/bin/"* + # Step 5: Copy all remaining files to the Flatpak destination + - cp -r files/* "${FLATPAK_DEST}" sources: - type: archive - url: https://www.tcpdump.org/release/libpcap-1.10.4.tar.gz - sha256: ed19a0383fad72e3ad435fd239d7cd80d64916b87269550159d20e47160ebe5f - x-checker-data: - type: anitya - project-id: 1702 - stable-only: true - url-template: https://www.tcpdump.org/release/libpcap-$version.tar.gz + url: https://github.com/RetroDECK/org.DolphinEmu.dolphin-emu/releases/latest/download/RetroDECK-Artifact.tar.gz + sha256: RETRODECKDOLPHINLATEST - - name: PyYAML + # PRIMEHACK + # https://github.com/RetroDECK/io.github.shiiion.primehack + + - name: retrodeck-primehack buildsystem: simple build-commands: - - python3 setup.py install --prefix=/app --root=/ + # Step 1: Remove any existing manifest.json file + - rm -f "files/manifest.json" + # Step 2: Remove unnecessary files + - rm -rf "files/lib/pkgconfig" + # Step 3: Use libman.sh to manage libraries + - /app/bin/libman.sh "files/lib" + # Step 4: removing libraries folder that have been already moved + - rm -rf "files/lib" + # Step 5: Ensure binaries are executable + - chmod +x "files/bin/"* + # Step 6: Copy all remaining files to the Flatpak destination + - cp -r files/* "${FLATPAK_DEST}" sources: - type: archive - url: https://github.com/yaml/pyyaml/archive/refs/tags/6.0.tar.gz - sha256: f33eaba25d8e0c1a959bbf00655198c287dfc5868f5b7b01e401eaa1796cc778 + url: https://github.com/RetroDECK/io.github.shiiion.primehack/releases/latest/download/RetroDECK-primehack-Artifact.tar.gz + sha256: RETRODECKPRIMEHACKLATEST - - name: xemu - buildsystem: autotools - builddir: true - no-make-install: true - build-options: - cflags: -O3 -DXBOX=1 -Wno-error=redundant-decls - config-opts: - - --audio-drv-list=sdl - - --disable-werror - - --target-list=i386-softmmu - make-args: - - qemu-system-i386 - post-install: - - |- - for px in 16 32 48 64 128 256 512; do - install -Dm644 ../ui/icons/xemu_${px}x${px}.png $FLATPAK_DEST/share/icons/hicolor/${px}x${px}/apps/app.xemu.xemu.png - done - - install -Dm644 ../ui/icons/xemu.svg $FLATPAK_DEST/share/icons/hicolor/scalable/apps/app.xemu.xemu.svg - - mv qemu-system-i386 $FLATPAK_DEST/bin/xemu - - mkdir -p $FLATPAK_DEST/share/licenses/xemu - - cd .. && python3 scripts/gen-license.py > $FLATPAK_DEST/share/licenses/xemu/LICENSE.txt - sources: - - type: git - url: https://github.com/xemu-project/xemu.git - tag: v0.7.126 - commit: b2b6a98d5ea21970cd2436a1912230f4b97c5e03 - x-checker-data: - type: json - url: https://api.github.com/repos/xemu-project/xemu/releases/latest - tag-query: .tag_name - timestamp-query: .published_at - version-query: .tag_name + # RPCS3 + # https://rpcs3.net/download - - name: xemu-dummy-hdd + - name: retrodeck-rpcs3 buildsystem: simple build-commands: - - mkdir -p ${FLATPAK_DEST}/retrodeck/extras/XEMU - - mv -f "xbox_hdd.qcow2" "${FLATPAK_DEST}/retrodeck/extras/XEMU/xbox_hdd.qcow2" + # Step 1: Remove any existing manifest.json file + - rm -f "files/manifest.json" + # Step 2: Use libman.sh to manage libraries + - /app/bin/libman.sh "files/lib" + # Step 3: removing libraries folder that have been already moved + - rm -rf "files/lib" + # Step 4: Ensure binaries are executable + - chmod +x "files/bin/"* + # Step 5: Copy all remaining files to the Flatpak destination + - cp -r files/* "${FLATPAK_DEST}" sources: - type: archive - url: https://github.com/mborgerson/xemu-hdd-image/releases/latest/download/xbox_hdd.qcow2.zip - sha256: XEMUHDDHASHPLACEHOLDER + url: https://github.com/RetroDECK/net.rpcs3.RPCS3/releases/latest/download/RetroDECK-Artifact.tar.gz + sha256: RETRODECKRPCS3LATEST - # XEMU - END - - # MELONDS - START - # https://github.com/flathub/net.kuribo64.melonDS - # ちっちゃい、かわいい! + # MELONDS + # https://github.com/RetroDECK/net.kuribo64.melonDS - name: melonds - buildsystem: cmake-ninja - builddir: true - build-options: - config-opts: - - -DUSE_QT6=ON - sources: - - type: git - url: https://github.com/melonDS-emu/melonDS.git - commit: 430de6b2702bb93faa8c2004aff3fbd084db4a1e - - type: patch - path: rd-submodules/melonds/hotkeys.patch - - # MELONDS - END - - # RPCS3 - START - # https://github.com/flathub/net.rpcs3.RPCS3 - - - name: rpcs3 - buildsystem: cmake-ninja - builddir: true - build-options: - append-ld-library-path: /usr/lib/sdk/llvm18/lib - append-path: /usr/lib/sdk/llvm18/bin - cflags: &optflags -O2 -g -pipe -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong - -grecord-gcc-switches -fasynchronous-unwind-tables -fstack-clash-protection - -fcf-protection -fno-omit-frame-pointer - cflags-override: true - cxxflags: *optflags - cxxflags-override: true - env: - AR: llvm-ar - CC: clang - CXX: clang++ - RANLIB: llvm-ranlib - ldflags: -fuse-ld=lld - config-opts: - - -DCMAKE_BUILD_TYPE=RelWithDebInfo - - -DBUILD_LLVM=OFF - - -DUSE_NATIVE_INSTRUCTIONS=OFF - - -DUSE_PRECOMPILED_HEADERS=OFF - - -DUSE_SDL=ON - - -DUSE_SYSTEM_CURL=ON - - -DUSE_SYSTEM_FFMPEG=OFF # Disabled this to force RPCS3 to use our built FFMPEG - - -DUSE_SYSTEM_LIBPNG=ON - - -DUSE_SYSTEM_SDL=ON - - -DUSE_SYSTEM_ZLIB=ON - - -Wno-dev - post-install: - - cp /usr/lib/sdk/llvm18/lib/libLLVM.so.18.1 /app/lib/ - - |- - set -eux - COMM_TAG="$(awk -F'[\{,]' '/version{.*}/{printf "%d.%d.%d", $2, $3, $4}' ../rpcs3/rpcs3_version.cpp)" - COMM_COUNT="$(git rev-list --count HEAD)"; - COMM_HASH="$(git rev-parse --short=8 HEAD)"; - sources: - - type: git - url: https://github.com/RPCS3/rpcs3.git - commit: 5b973448bf75a239f34fd9c7698c8a02b04e2ea9 - - # RPCS3 - END - - # PRIMEHACK - START - # https://github.com/flathub/io.github.shiiion.primehack - - - name: primehack - buildsystem: cmake-ninja - config-opts: - - -DCMAKE_BUILD_TYPE=Release - - -DENABLE_ALSA=OFF - - -DENABLE_SDL=ON - - -DENABLE_EVDEV=ON - - -DDISTRIBUTOR=Flathub - cleanup: - - /share/man - post-install: - - install -D primehack-wrapper /app/bin/primehack-wrapper - sources: - - type: git - url: https://github.com/shiiion/dolphin.git - commit: 81bfb9686afd2d190134b44dd72d3cee876fe2ab # This commit refers to the PR 166: https://github.com/shiiion/dolphin/pull/166, please change it when it's approved - # detects whether dolphin is running in a flatpak sandbox - # and makes it use xdg directories if it is. - # prevents dolphin from attempting to write conf files - # in non-writable paths, typically happens when a user - # has leftover files from a previous non-flatpak install - - type: patch - path: rd-submodules/primehack/detectflatpak.patch - # version strings must match exactly for online multiplayer - - type: patch - path: rd-submodules/primehack/nodirtyversion.patch - - type: script - commands: - - for i in {0..9}; do - - test -S $XDG_RUNTIME_DIR/discord-ipc-$i || ln -sf {app/com.discordapp.Discord,$XDG_RUNTIME_DIR}/discord-ipc-$i; - - done - - primehack "$@" - dest-filename: primehack-wrapper - - # PRIMEHACK - END - - # Duckstation-AppImage - START - AUTOUPDATED - # https://github.com/stenzek/duckstation/releases/tag/preview - - - name: Duckstation-AppImage buildsystem: simple build-commands: - - chmod +x DuckStation-*.AppImage - - ./DuckStation-x64*.AppImage --appimage-extract - - mkdir -p "${FLATPAK_DEST}/duckstation" - - cp -r squashfs-root/* "${FLATPAK_DEST}/duckstation" - - ln -s "${FLATPAK_DEST}/duckstation/usr/bin/duckstation-qt" "${FLATPAK_DEST}/bin/duckstation-qt" + # Step 1: Remove any existing manifest.json file + - rm -f "files/manifest.json" + # Step 2: Use libman.sh to manage libraries + - /app/bin/libman.sh "files/lib" + # Step 3: removing libraries folder that have been already moved + - rm -rf "files/lib" + # Step 4: Ensure binaries are executable + - chmod +x "files/bin/"* + # Step 5: Copy all remaining files to the Flatpak destination + - cp -r files/* "${FLATPAK_DEST}/" + sources: + - type: archive + url: https://github.com/RetroDECK/net.kuribo64.melonDS/releases/latest/download/RetroDECK-melonds-Artifact.tar.gz + sha256: RETRODECKMELONDSLATEST + + # Duckstation + # Do not update: Legacy + # https://github.com/RetroDECK/Duckstation + + - name: duckstation + buildsystem: simple + build-commands: + # Step 1: Ensure the AppImage is executable and extract it + - chmod +x *.AppImage + - ./*.AppImage --appimage-extract + # Step 2: Use libman.sh to manage libraries + - /app/bin/libman.sh "squashfs-root/usr/lib" + # Step 3: Copy remaining extracted files to the Flatpak destination + - find squashfs-root/usr/ -exec sh -c 'install -Dm755 "{}" "${FLATPAK_DEST}/$(echo "{}" | sed "s|^squashfs-root/usr||")"' \; sources: - type: file - url: https://github.com/stenzek/duckstation/releases/download/v0.1-6937/DuckStation-x64.AppImage - sha256: 8a16f034cc8b11341ed9ad382226549301736794582bdec46a5e19b3ca981e07 + url: https://github.com/RetroDECK/Duckstation/releases/download/preview/DuckStation-x64.AppImage + sha256: 84777a8d0fce9acfc2ffe6a8aea352bd68a8a37f5c793d328dbaa4ff5ada5e6d - # Duckstation-AppImage - END - - # Cemu - START - # needed libusb 1.0.26 but we provide 1.0.27, it could break + # Cemu + # UPDATE IT HERE # https://github.com/cemu-project/Cemu/releases - # https://github.com/flathub/info.cemu.Cemu - - name: hidapi - buildsystem: cmake-ninja - sources: - - type: archive - url: https://github.com/libusb/hidapi/archive/refs/tags/hidapi-0.14.0.tar.gz - sha256: a5714234abe6e1f53647dd8cba7d69f65f71c558b7896ed218864ffcf405bcbd - x-checker-data: - type: anitya - project-id: 5594 - stable-only: true - url-template: https://github.com/libusb/hidapi/archive/refs/tags/hidapi-$version.tar.gz - - - name: boost + - name: cemu buildsystem: simple build-commands: - - ./bootstrap.sh --prefix=${FLATPAK_DEST} --with-toolset=gcc --with-libraries=filesystem,system,program_options,nowide - - ./b2 install variant=release link=shared runtime-link=shared cxxflags="$CXXFLAGS" - linkflags="$LDFLAGS" -j ${FLATPAK_BUILDER_N_JOBS} - cleanup: - - /include - - /lib/cmake + # Step 1: Ensure the AppImage is executable and extract it + - chmod +x *.AppImage + - ./*.AppImage --appimage-extract + # Step 2: Remove unnecessary files causing potential issues + - rm -rf "squashfs-root/usr/lib/girepository-1.0" + # Step 3: Use libman.sh to manage libraries + - /app/bin/libman.sh "squashfs-root/usr/lib" + # Step 4: Copy remaining extracted files to the Flatpak destination + - find squashfs-root/usr/ -exec sh -c 'install -Dm755 "{}" "${FLATPAK_DEST}/$(echo "{}" | sed "s|^squashfs-root/usr||")"' \; + # Step 5: Install the wrapper script + - install -Dm755 Cemu-wrapper "${FLATPAK_DEST}/bin/" sources: - - type: archive - url: https://boostorg.jfrog.io/artifactory/main/release/1.85.0/source/boost_1_85_0.tar.bz2 - sha256: 7009fe1faa1697476bdc7027703a2badb84e849b7b0baad5086b087b971f8617 - x-checker-data: - type: anitya - project-id: 6845 - stable-only: true - url-template: https://boostorg.jfrog.io/artifactory/main/release/$version/source/boost_${major}_${minor}_$patch.tar.bz2 - - - name: libzip - buildsystem: cmake-ninja - config-opts: - - -DBUILD_DOC=OFF - - -DBUILD_EXAMPLES=OFF - - -DBUILD_REGRESS=OFF - - -DBUILD_TOOLS=OFF - cleanup: - - /bin - - /include - - /lib/cmake - - /lib/pkgconfig - sources: - - type: archive - url: https://libzip.org/download/libzip-1.10.1.tar.xz - mirror-urls: - - https://github.com/nih-at/libzip/releases/download/v1.10.1/libzip-1.10.1.tar.xz - sha256: dc3c8d5b4c8bbd09626864f6bcf93de701540f761d76b85d7c7d710f4bd90318 - x-checker-data: - type: anitya - project-id: 10649 - url-template: https://libzip.org/download/libzip-$version.tar.xz - - - name: fmt - buildsystem: cmake-ninja - config-opts: - - -DFMT_TEST=Off - cleanup: - - '*' - sources: - - type: archive - url: https://github.com/fmtlib/fmt/archive/9.1.0.tar.gz - sha256: 5dea48d1fcddc3ec571ce2058e13910a0d4a6bab4cc09a809d8b1dd1c88ae6f2 - x-checker-data: - type: anitya - project-id: 11526 - url-template: https://github.com/fmtlib/fmt/archive/$version.tar.gz - versions: {<: '10.0'} - - - name: wxWidgets - buildsystem: cmake-ninja - cleanup: - - /bin - - /include - - /lib/cmake - - /lib/wx - - /share - sources: - - type: archive - url: https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.5/wxWidgets-3.2.5.tar.bz2 - sha256: 0ad86a3ad3e2e519b6a705248fc9226e3a09bbf069c6c692a02acf7c2d1c6b51 - x-checker-data: - type: anitya - project-id: 5150 - stable-only: true - url-template: https://github.com/wxWidgets/wxWidgets/releases/download/v$version/wxWidgets-$version.tar.bz2 - versions: {'!=': 3.2.4-with-msvs2012-fix} - - - name: Cemu - buildsystem: cmake-ninja - config-opts: - - -DPORTABLE=false - - -DENABLE_VCPKG=false - sources: - - type: git - url: https://github.com/cemu-project/Cemu - # TODO: Update tag pattern on next stable ^v([\d.]+)$ - x-checker-data: - type: git - tag-pattern: ^v([\d.]+-\d+)$ - tag: v2.0-88 - commit: aefbb918beb8718af8f190a73018ff63bf801d95 - disable-submodules: true - - type: git - url: https://github.com/mozilla/cubeb - commit: 6c1a6e151c1f981a2800d40af7c041cfcccc710e - dest: dependencies/cubeb - - type: git - url: https://github.com/Exzap/ZArchive - dest: dependencies/ZArchive - tag: v0.1.2 - - type: git - url: https://github.com/ocornut/imgui - dest: dependencies/imgui - commit: f65bcf481ab34cd07d3909aab1479f409fa79f2f - - type: shell - commands: - - sed "s/set(EXPERIMENTAL_VERSION.*/set(EXPERIMENTAL_VERSION \"$(git describe - --tag | sed "s/v2.0-//")\" CACHE STRING \"\")/g" -i CMakeLists.txt + - type: file + url: https://github.com/cemu-project/Cemu/releases/download/v2.4/Cemu-2.4-x86_64.AppImage + sha256: 92a1f081230809bd0ac30b228f72c6d8c7aa7eaa3e56df4cf8ad54d4c9927097 - type: script commands: - | @@ -1088,42 +523,10 @@ modules: ln -sf {app/com.discordapp.$d,$XDG_RUNTIME_DIR}/discord-ipc-$i; done done - Cemu_relwithdebinfo "$@" + Cemu "$@" dest-filename: Cemu-wrapper - - type: script - dest-filename: dev_release_metainfo.py - commands: - - | - import os - import xml.etree.ElementTree as ET - meta_file = os.environ.get('AS_META_FILE') - version = os.environ.get('AS_META_VERSION') - release_type = os.environ.get('AS_META_TYPE') - release_date = os.environ.get('AS_META_DATE') - release_url = os.environ.get('AS_META_URL') - tree = ET.parse(meta_file) - root = tree.getroot() - el_releases = root.find('releases') - for el_release in el_releases: - el_releases.remove(el_release) - el_release = ET.SubElement(el_releases, 'release') - el_url = ET.SubElement(el_release, 'url') - el_url.text = release_url - el_release.attrib['type'] = release_type - el_release.attrib['date'] = release_date - el_release.attrib['version'] = version - ET.indent(tree, space=' ', level=0) - tree.write(meta_file, encoding='utf8') - post-install: - - cp -r bin/gameProfiles ${FLATPAK_DEST}/share/Cemu/ - - cp -r bin/resources ${FLATPAK_DEST}/share/Cemu/ - - install -Dm644 -t ${FLATPAK_DEST}/share/icons/hicolor/128x128/apps/ dist/linux/info.cemu.Cemu.png - - install -D -t ${FLATPAK_DEST}/bin/ bin/Cemu_relwithdebinfo Cemu-wrapper - - # Cemu - END - - # Vita3K - START - AUTOUPDATED + # Vita3K - ROLLING RELEASE - name: vita3k buildsystem: simple build-commands: @@ -1136,195 +539,269 @@ modules: - ln -s ${FLATPAK_DEST}/share/Vita3K/Vita3K ${FLATPAK_DEST}/bin/Vita3K sources: - type: file - url: https://github.com/Vita3K/Vita3K/releases/download/continuous/ubuntu-latest.zip - sha256: VITA3KSHAPLACEHOLDER + url: https://github.com/RetroDECK/Vita3K-bin/releases/latest/download/ubuntu-latest.zip + sha256: RETRODECKLATESTVITA3KSHA - type: file path: res/retrodeck.png - - # Vita3K - END - # SOLARUS - START - # https://github.com/flathub/org.solarus_games.solarus.Launcher + # SOLARUS + # why from source: they only provide a snap + # https://github.com/RetroDECK/org.solarus_games.solarus.Launcher - - name: luajit - no-autogen: true - cleanup: - - /bin - - /lib/*.a - - /include - - /lib/pkgconfig - - /share/man + - name: retrodeck-solarus + buildsystem: simple + build-commands: + # Step 1: Remove any existing manifest.json file + - rm -f "files/manifest.json" + # Step 2: Remove unnecessary files + - rm -rf "files/lib/debug" "files/lib/pkgconfig" + # Step 3: Use libman.sh to manage libraries + - /app/bin/libman.sh "files/lib" + # Step 4: removing libraries folder that have been already moved + - rm -rf "files/lib" + # Step 5: Ensure binaries are executable + - chmod +x "files/bin/"* + # Step 6: Copy all remaining files to the Flatpak destination + - cp -r files/* "${FLATPAK_DEST}" sources: - type: archive - url: https://luajit.org/download/LuaJIT-2.0.5.tar.gz - sha256: 874b1f8297c697821f561f9b73b57ffd419ed8f4278c82e05b48806d30c1e979 - - type: shell - commands: - - sed -i 's|/usr/local|/app|' ./Makefile + url: https://github.com/RetroDECK/org.solarus_games.solarus.Launcher/releases/latest/download/RetroDECK-solarus-Artifact.tar.gz + sha256: RETRODECKSOLARUSLATEST - - name: libmodplug - cleanup: - - /include - sources: - - type: archive - url: https://download.sourceforge.net/project/modplug-xmms/libmodplug/0.8.9.0/libmodplug-0.8.9.0.tar.gz - sha512: 880e10154fd367ee24ace53ca7e32a5c1fee7dfff1f934e6499944c12779427da63e2f55f8d6ce25db0a42a5b4424053bf64305b31dbfc4ef6a8909924d655fd - - - name: physfs - buildsystem: cmake-ninja - config-opts: - - -DPHYSFS_BUILD_TEST=OFF - sources: - - type: archive - url: https://icculus.org/physfs/downloads/physfs-3.0.2.tar.bz2 - sha256: 304df76206d633df5360e738b138c94e82ccf086e50ba84f456d3f8432f9f863 - size: 194888 - x-checker-data: - type: anitya - project-id: 3631 - url-template: https://icculus.org/physfs/downloads/physfs-$version.tar.bz2 - - - name: solarus - buildsystem: cmake-ninja - builddir: true - config-opts: - - -DSOLARUS_GUI=OFF - sources: - - type: git - url: https://gitlab.com/solarus-games/solarus.git - tag: v1.6.5 - commit: 3aec70b0556a8d7aed7903d1a3e4d9a18c5d1649 - - # SOLARUS - END - - # GZDoom - Start + # GZDoom # When updating remember to update all the .pk3 files from the standalone linux download - - rd-submodules/shared-modules/gzdoom/gzdoom.json - # GZDoom - END - - # MAME - Start + # https://github.com/RetroDECK/org.zdoom.GZDoom + + - name: retrodeck-gzdoom + buildsystem: simple + build-commands: + # Step 1: Remove any existing manifest.json file + - rm -f "files/manifest.json" + # Step 2: Remove unnecessary files + - rm -rf "files/lib/cmake" "files/lib/pkgconfig" "files/lib/debug" + # Step 3: Use libman.sh to manage libraries + - /app/bin/libman.sh "files/lib" + # Step 4: removing libraries folder that have been already moved + - rm -rf "files/lib" + # Step 5: Ensure binaries are executable + - chmod +x "files/bin/"* + # Step 6: Copy all remaining files to the Flatpak destination + - cp -r files/* "${FLATPAK_DEST}" + # Step 7: installing GZDoom wrapper + - install -Dm755 gzdoom.sh ${FLATPAK_DEST}/bin/gzdoom.sh + sources: + - type: archive + url: https://github.com/RetroDECK/org.zdoom.GZDoom/releases/latest/download/RetroDECK-Artifact.tar.gz + sha256: RETRODECKGZDOOMLATEST + - type: file + path: config/gzdoom/gzdoom.sh + + # Pancakes + # NOTE: if this module breaks, might be caused by SDL2 version mismatch. Check last line of this module. + - name: Pancakes + buildsystem: simple + build-commands: + # Step 1: Create the Flatpak destination directory + - mkdir -p "${FLATPAK_DEST}" + # Step 2: Extract and manage library files + - /app/bin/libman.sh "." + # Step 3: Move and set up the binary + - rm -rf *.dll.config + - mv R*x* "${FLATPAK_DEST}/bin/" + # This line inserts the command to export the LD_LIBRARY_PATH environment variable at the beginning of the specified file. + # It ensures that the /app/bin directory is included in the library search path for the executable files matching the pattern R*x*.sh. + - sed -i 's|#!/bin/sh|#!/bin/sh\nexport LD_LIBRARY_PATH=/app/lib:$LD_LIBRARY_PATH|' "${FLATPAK_DEST}/bin/"R*x*.sh + - chmod +x "${FLATPAK_DEST}/bin/"R*x* + # Step 4: Set up license directory and move license files + - mkdir -p "${FLATPAK_DEST}/retrodeck/licenses" + - mv LICENSE.txt THIRDPARTY.md "${FLATPAK_DEST}/retrodeck/licenses" + sources: + - type: archive + url: https://github.com/RetroDECK/Pancakes-bin/releases/download/1.1.0.1403-20250118/pancakes-Release-linux_x64.tar.gz + sha256: 52a7d37cb3586c8b8f281e8190a6af9ff654586f38a0c3caea27e5d1db322405 + + # XEMU + # https://xemu.app/docs/download/#download-for-linux + + - name: xemu + buildsystem: simple + build-commands: + # Step 1: Ensure the AppImage is executable and extract it + - chmod +x *.AppImage + - ./*.AppImage --appimage-extract + # Step 2: Use libman.sh to manage libraries + - /app/bin/libman.sh "squashfs-root/usr/lib" + # Step 3: Copy remaining extracted files to the Flatpak destination + - find squashfs-root/usr/ -exec sh -c 'install -Dm755 "{}" "${FLATPAK_DEST}/$(echo "{}" | sed "s|^squashfs-root/usr||")"' \; + sources: + - type: file + url: https://github.com/xemu-project/xemu/releases/download/v0.8.5/xemu-v0.8.5-x86_64.AppImage + sha256: fd282e299dbc3207b8afb84059da99feffc65a86eb29d96c9108fde368d4c99e + + - name: xemu-dummy-hdd + buildsystem: simple + build-commands: + - mkdir -p ${FLATPAK_DEST}/retrodeck/extras/XEMU + - mv -f "xbox_hdd.qcow2" "${FLATPAK_DEST}/retrodeck/extras/XEMU/xbox_hdd.qcow2" + sources: + - type: archive + url: https://github.com/mborgerson/xemu-hdd-image/releases/latest/download/xbox_hdd.qcow2.zip + sha256: XEMUHDDHASHPLACEHOLDER + + # MAME - name: retrodeck-mame buildsystem: simple build-commands: - - cp -rn files/* /app + # Step 1: Remove any existing manifest.json file + - rm -f files/manifest.json + # Step 2: Use libman.sh to manage libraries - REMOVED AS MAME DON'T BRING ANY LIBS WITH IT + # - /app/bin/libman.sh "files/lib" + # Step 3: Copy the managed libraries and all other files to the Flatpak destination + - cp -rn files/* ${FLATPAK_DEST} sources: - - type: archive - url: RETRODECKMAMEURLPLACEHOLDER - sha256: RETRODECKMAMEPLACEHOLDER + - type: archive + url: https://github.com/RetroDECK/org.mamedev.MAME/releases/latest/download/RetroDECK-Artifact.tar.gz + sha256: RETRODECKMAMELATEST - # MAME - End + # PortMaster - # Ryujinx Appimage - START - # https://ryujinx.org/download - - # Temporary disabled to test a symlink fix build - # - name: Ryujinx - # buildsystem: simple - # build-commands: - # - | - # tar -zxvf *.tar.gz - # mv -v publish ${FLATPAK_DEST}/ryujinx - # ln -sv ${FLATPAK_DEST}/ryujinx/Ryujinx ${FLATPAK_DEST}/bin/Ryujinx.sh - # sources: - # - type: file - # url: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1343/ryujinx-1.1.1343-linux_x64.tar.gz - # sha256: 3cd2172d2f42a0fb93a83bffe6bd8fb2d1d81fb45afc80e0068a245c8f755ac1 - - # - name: Ryujinx-with-symlink-fix - # buildsystem: simple - # build-commands: - # - | - # mkdir -p ${FLATPAK_DEST}/ryujinx - # mkdir -p ${FLATPAK_DEST}/bin - # chmod +x Ryujinx.sh - # chmod +x Ryujinx - # mv -v * ${FLATPAK_DEST}/ryujinx - # ln -sv ${FLATPAK_DEST}/ryujinx/Ryujinx.sh ${FLATPAK_DEST}/bin/Ryujinx.sh - # chmod +x ${FLATPAK_DEST}/bin/Ryujinx.sh - # sources: - # - type: archive - # url: https://gitlab.com/-/project/59825450/uploads/a512ffca03dea9a687a7c3048dc1fd00/ryujinx-Release-1.1.0+56c8844-linux_x64.zip - # sha256: 890f82146d6847efaf480d63867f439d58f28261e9070a4790f77eab9be16e6b - - # This version was reported as working with symlinks: https://discord.com/channels/951662718102962256/951715885968654418/1264882000658169866 - - name: Ryujinx-reported-working-version + - name: PortMaster buildsystem: simple build-commands: - - | - tar -zxvf *.tar.gz - mv -v publish ${FLATPAK_DEST}/ryujinx - ln -sv ${FLATPAK_DEST}/ryujinx/Ryujinx ${FLATPAK_DEST}/bin/Ryujinx.sh + - mkdir -p "${FLATPAK_DEST}/retrodeck/PortMaster/" + - install -Dm755 "PortMaster" "${FLATPAK_DEST}/bin/PortMaster" + - install -Dm755 "harbourmaster" "${FLATPAK_DEST}/bin/harbourmaster" + - cp PortMaster.zip "${FLATPAK_DEST}/retrodeck/PortMaster.zip" sources: - type: file - url: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1297/ryujinx-1.1.1297-linux_x64.tar.gz - sha256: 28b38754e7d2e92083b313b23278c180ae54ac025edbbd0276ec03baec0cec0f + url: https://github.com/PortsMaster/PortMaster-GUI/releases/latest/download/retrodeck.portmaster.zip + sha256: PORTMASTERLATESTSHA + dest-filename: PortMaster.zip + - type: script + commands: + - | + "/var/data/PortMaster/PortMaster.sh" "$@" + dest-filename: PortMaster + - type: script + commands: + - | + "/var/data/PortMaster/harbourmaster" "$@" + dest-filename: harbourmaster - # Ryujinx Appimage - END + # ES-DE - # External manifests end + - name: ES-DE + buildsystem: simple + build-commands: + # Step 1: Remove any existing manifest.json file + - rm -f "files/manifest.json" + # Step 2: Use libman.sh to manage libraries + - /app/bin/libman.sh "files/lib" + # Step 3: Clean up source library folder + - rm -rf "files/lib" + # Step 4: Ensure binaries are executable + - chmod +x "files/bin/"* + # Step 5: Copy all remaining files to the Flatpak destination + - cp -r files/* "${FLATPAK_DEST}" + sources: + - type: archive + url: https://github.com/RetroDECK/ES-DE/releases/latest/download/RetroDECK-ES-DE-Artifact.tar.gz + sha256: RETRODECKESDELATEST + + - name: retrodeck-theme + buildsystem: simple + build-commands: + - mkdir -p ${FLATPAK_DEST}/share/es-de/themes/retrodeck/ + - mv -f * ${FLATPAK_DEST}/share/es-de/themes/retrodeck/ + sources: + - type: git + url: https://github.com/RetroDECK/RetroDECK-theme + commit: e9d20225b6a5e74bc867d7b1fb31baeaf2663dcc + + # RUFFLE - START - FROZEN UNTIL QT 6.8 UPDATE + # https://github.com/ruffle-rs/ruffle/releases + + - name: ruffle + buildsystem: simple + build-commands: + - install -Dm755 ruffle "${FLATPAK_DEST}/bin/ruffle" + - install -Dm755 ruffle-rdwrapper.sh "${FLATPAK_DEST}/bin/ruffle-rdwrapper.sh" + sources: + - type: archive + strip-components: 0 + url: https://github.com/ruffle-rs/ruffle/releases/download/nightly-2024-09-17/ruffle-nightly-2024_09_17-linux-x86_64.tar.gz + sha256: 8a0c8ab2638dd54140b14febee0bc43e354b05fb28a29e127e4e0e44fe5c087c + - type: file + path: config/ruffle/ruffle-rdwrapper.sh - name: retrodeck buildsystem: simple build-commands: + # This prevents appstream-compose to fail + - | + if [ -d ${FLATPAK_DEST}/usr ]; then + mv -n ${FLATPAK_DEST}/usr/** ${FLATPAK_DEST}/share + rm -rf ${FLATPAK_DEST}/usr + fi + # Initializing RO retrodeck config folder - mkdir -p ${FLATPAK_DEST}/retrodeck # These must be put in home folder, managed by retrodeck.sh - - cp es-configs/es_settings.xml ${FLATPAK_DEST}/retrodeck/es_settings.xml - - mv -f -t ${FLATPAK_DEST}/retrodeck es-configs/rd_prepacks + - cp config/es-de/es_settings.xml ${FLATPAK_DEST}/retrodeck/es_settings.xml + - mv -f -t ${FLATPAK_DEST}/retrodeck config/es-de/rd_prepacks # Logo, res, move graphics directory away from default location so splash can be changed after build - - mv -f -t ${FLATPAK_DEST}/retrodeck /app/share/es-de/resources/graphics + - mv -f -t ${FLATPAK_DEST}/retrodeck ${FLATPAK_DEST}/share/es-de/resources/graphics - cp -f res/splash.svg ${FLATPAK_DEST}/retrodeck/graphics/splash.svg - cp -f res/splash.svg ${FLATPAK_DEST}/retrodeck/graphics/splash-orig.svg - cp -rf res/extra_splashes/ ${FLATPAK_DEST}/retrodeck/graphics - - cp -f res/icon.svg /app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg + - cp -f res/icon.svg ${FLATPAK_DEST}/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg - cp -f res/icon-configurator.svg ${FLATPAK_DEST}/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.configurator.svg - mv -f -t ${FLATPAK_DEST}/retrodeck res/binding_icons # RetroDECK core script - - cp retrodeck.sh /app/bin/retrodeck.sh - - chmod +x /app/bin/retrodeck.sh + - install -Dm755 retrodeck.sh ${FLATPAK_DEST}/bin/retrodeck.sh # Tools - - mkdir -p /app/tools - - cp -r tools/** /app/tools - - find /app/tools -type f \( -name "*.sh" -o -name "*.py" \) -exec chmod +x {} \; + - mkdir -p ${FLATPAK_DEST}/tools + - cp -r tools/*.sh ${FLATPAK_DEST}/tools + - find ${FLATPAK_DEST}/tools -type f \( -name "*.sh" -o -name "*.py" \) -exec chmod +x {} \; # Function libraries - - mkdir -p /app/libexec - - cp -r functions/** "/app/libexec/" + - mkdir -p ${FLATPAK_DEST}/libexec + - cp -r functions/** "${FLATPAK_DEST}/libexec/" # Desktop entries - - cp net.retrodeck.retrodeck.desktop /app/share/applications/net.retrodeck.retrodeck.desktop - - cp net.retrodeck.retrodeck.Configurator.desktop /app/share/applications/net.retrodeck.retrodeck.Configurator.desktop - - chmod +x net.retrodeck.retrodeck*desktop + - install -Dm755 net.retrodeck.retrodeck.desktop ${FLATPAK_DEST}/share/applications/net.retrodeck.retrodeck.desktop + - install -Dm755 net.retrodeck.retrodeck.Configurator.desktop ${FLATPAK_DEST}/share/applications/net.retrodeck.retrodeck.Configurator.desktop # Initializing default emulator configs - - cp -r emu-configs ${FLATPAK_DEST}/retrodeck/emu-configs/ + - cp -r config ${FLATPAK_DEST}/retrodeck/config/ # PICO-8 wrapper - - cp ${FLATPAK_DEST}/retrodeck/emu-configs/pico-8/pico8-wrapper.sh /app/bin/pico8 - - chmod +x /app/bin/pico8 - - # Needed for ffmpeg (RPCS3) - - mkdir -p ${FLATPAK_DEST}/lib/ffmpeg - - # Placing appdata - - mkdir -p ${FLATPAK_DEST}/share/appdata - - cp net.retrodeck.retrodeck.appdata.xml ${FLATPAK_DEST}/share/appdata + - install -Dm755 ${FLATPAK_DEST}/retrodeck/config/pico-8/pico8-wrapper.sh ${FLATPAK_DEST}/bin/pico8 # Creating symlinks for a prettier access - - ln -s /app/bin/retrodeck.sh /app/bin/retrodeck - - ln -s /app/tools/configurator.sh /app/bin/configurator + - ln -s ${FLATPAK_DEST}/bin/retrodeck.sh ${FLATPAK_DEST}/bin/retrodeck + - ln -s ${FLATPAK_DEST}/tools/configurator.sh ${FLATPAK_DEST}/bin/configurator - # GZDOOM wrapper - - cp emu-configs/gzdoom/gzdoom.sh ${FLATPAK_DEST}/bin/gzdoom.sh - - chmod +x ${FLATPAK_DEST}/bin/gzdoom.sh + # Install MIME Type + - install -Dm 644 config/retrodeck/net.retrodeck.retrodeck.mime.xml /app/share/mime/packages/net.retrodeck.retrodeck.mime.xml + + # One off to make Pancakes (and possibly other components) work with SDL2, this line is here as it must be run after LibMan + - | + if [ ! -f "${FLATPAK_DEST}/lib/libSDL2.so" ]; then + echo "${FLATPAK_DEST}/lib/libSDL2.so is missing, creating symlink" + ln -s "/lib/x86_64-linux-gnu/libSDL2-2.0.so.0" "${FLATPAK_DEST}/lib/libSDL2.so" + fi + + # Installing metainfo + - install -Dm 644 net.retrodeck.retrodeck.metainfo.xml ${FLATPAK_DEST}/share/metainfo/net.retrodeck.retrodeck.metainfo.xml sources: - - type: git - url: https://github.com/XargonWan/RetroDECK.git - branch: THISBRANCH + - type: dir + path: . + diff --git a/old/disabled-workflows/TEST_release_info.yml b/old/disabled-workflows/TEST_release_info.yml index ebf21609..bbec905e 100644 --- a/old/disabled-workflows/TEST_release_info.yml +++ b/old/disabled-workflows/TEST_release_info.yml @@ -32,16 +32,16 @@ jobs: git submodule update sudo apt install -y flatpak flatpak-builder p7zip-full xmlstarlet appstream-util - - name: Validating the appdata - run: appstream-util validate "net.retrodeck.retrodeck.appdata.xml" + - name: Validating the metainfo + run: appstream-util validate "net.retrodeck.retrodeck.metainfo.xml" continue-on-error: true - name: Getting version info id: version run: | - appdata="https://raw.githubusercontent.com/XargonWan/RetroDECK/main/net.retrodeck.retrodeck.appdata.xml" - REL_VER=$(curl -s $appdata | xmlstarlet sel -t -v "//release/@version" | head -1) - DES="$(curl -s $appdata | xmlstarlet sel -t -m "//release[1]" -v "description" -n | sed '1,2d;$d;s/^ */- /;/^- $/d')" + metainfo="https://raw.githubusercontent.com/RetroDECK/RetroDECK/main/net.retrodeck.retrodeck.metainfo.xml" + REL_VER=$(curl -s $metainfo | xmlstarlet sel -t -v "//release/@version" | head -1) + DES="$(curl -s $metainfo | xmlstarlet sel -t -m "//release[1]" -v "description" -n | sed '1,2d;$d;s/^ */- /;/^- $/d')" echo "REL_VER=$REL_VER" >> $GITHUB_ENV echo -e "# Release Notes\n" >> "body.md" echo "$DES" >> "body.md" diff --git a/old/disabled-workflows/cooker-selfhosted-persistent.yml b/old/disabled-workflows/cooker-selfhosted-persistent.yml index 711deb76..c040860a 100644 --- a/old/disabled-workflows/cooker-selfhosted-persistent.yml +++ b/old/disabled-workflows/cooker-selfhosted-persistent.yml @@ -11,13 +11,13 @@ on: paths: - '.github/workflows/**' - 'automation_tools/**' - - 'emu-configs/**' - - 'es-configs/**' + - 'config/**' + - 'config/es-de/**' - 'functions/**' - 'rd-submodules/**' - '*.sh' - 'net.retrodeck.retrodeck.yml' - - 'net.retrodeck.retrodeck.appdata.xml' + - 'net.retrodeck.retrodeck.metainfo.xml' pull_request: branches: - cooker* @@ -27,7 +27,7 @@ on: jobs: Building_RetroDECK: - runs-on: self-hosted + runs-on: retrodeck steps: # Circumventing this bug: https://github.com/flatpak/flatpak-builder/issues/317 @@ -64,7 +64,7 @@ jobs: run: | if [[ "$BRANCH_NAME" == 'refs/'* ]]; then pr_number=$(echo ${{env.BRANCH_NAME}} | awk -F'/' '{print $3}') - source_branch=$(curl -s "https://api.github.com/repos/XargonWan/RetroDECK/pulls/$pr_number" | jq -r '.head.ref') + source_branch=$(curl -s "https://api.github.com/repos/RetroDECK/RetroDECK/pulls/$pr_number" | jq -r '.head.ref') source_branch=${source_branch//\//-} echo "[DEBUG] source branch is: $source_branch" echo "TAG=PR-$pr_number-$source_branch-${{ env.buildid }}" >> $GITHUB_ENV @@ -78,13 +78,13 @@ jobs: run: "cp ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak" - name: Run pre-build automation tasks - run : "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/pre_build_automation.sh" + run : "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/manifest_placeholder_replacer.sh" - name: "Adding flatpak portal for automated updates (cooker only)" run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/cooker_flatpak_portal_add.sh" - - name: "Updating release notes in appdata" - run: "automation_tools/appdata_management.sh" + - name: "Updating release notes in metainfo" + run: "automation_tools/metainfo_management.sh" - name: "[DEBUG] Outputting manifest" run: cat net.retrodeck.retrodeck.yml @@ -102,7 +102,7 @@ jobs: echo "Recalculating hashes and retrying download..." rm -f "{GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml" cp "${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak" "${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml" - "${GITHUB_WORKSPACE}/automation_tools/pre_build_automation.sh" + "${GITHUB_WORKSPACE}/automation_tools/manifest_placeholder_replacer.sh" "${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only_persistent.sh" - name: Build flatpak @@ -140,7 +140,7 @@ jobs: body: | # Release Notes (Cooker) This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}. - On branch [${{env.BRANCH_NAME}}](https://github.com/XargonWan/RetroDECK/tree/${{env.BRANCH_NAME}}). + On branch [${{env.BRANCH_NAME}}](https://github.com/RetroDECK/RetroDECK/tree/${{env.BRANCH_NAME}}). ## Commits since last release ${{ steps.commits.outputs.commits }} diff --git a/old/disabled-workflows/cooker-selfhosted.yml b/old/disabled-workflows/cooker-selfhosted.yml index 4ffb693a..88e6f918 100644 --- a/old/disabled-workflows/cooker-selfhosted.yml +++ b/old/disabled-workflows/cooker-selfhosted.yml @@ -8,13 +8,13 @@ on: paths: - '.github/workflows/**' - 'automation_tools/**' - - 'emu-configs/**' - - 'es-configs/**' + - 'config/**' + - 'config/es-de/**' - 'functions/**' - 'rd-submodules/**' - '*.sh' - 'net.retrodeck.retrodeck.yml' - - 'net.retrodeck.retrodeck.appdata.xml' + - 'net.retrodeck.retrodeck.metainfo.xml' pull_request: branches: - cooker* @@ -29,7 +29,7 @@ on: jobs: Building_RetroDECK: - runs-on: self-hosted + runs-on: retrodeck steps: # Circumventing this bug: https://github.com/flatpak/flatpak-builder/issues/317 @@ -66,7 +66,7 @@ jobs: run: | if [[ "$BRANCH_NAME" == 'refs/'* ]]; then pr_number=$(echo ${{env.BRANCH_NAME}} | awk -F'/' '{print $3}') - source_branch=$(curl -s "https://api.github.com/repos/XargonWan/RetroDECK/pulls/$pr_number" | jq -r '.head.ref') + source_branch=$(curl -s "https://api.github.com/repos/RetroDECK/RetroDECK/pulls/$pr_number" | jq -r '.head.ref') source_branch=${source_branch//\//-} echo "[DEBUG] source branch is: $source_branch" echo "TAG=PR-$pr_number-$source_branch-${{ env.buildid }}" >> $GITHUB_ENV @@ -80,13 +80,13 @@ jobs: run: "cp ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak" - name: Run pre-build automation tasks - run : "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/pre_build_automation.sh" + run : "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/manifest_placeholder_replacer.sh" - name: "Adding flatpak portal for automated updates (cooker only)" run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/cooker_flatpak_portal_add.sh" - - name: "Updating release notes in appdata" - run: "automation_tools/appdata_management.sh" + - name: "Updating release notes in metainfo" + run: "automation_tools/metainfo_management.sh" - name: "[DEBUG] Outputting manifest" run: cat net.retrodeck.retrodeck.yml @@ -104,7 +104,7 @@ jobs: echo "Recalculating hashes and retrying download..." rm -f "{GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml" cp "${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak" "${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml" - "${GITHUB_WORKSPACE}/automation_tools/pre_build_automation.sh" + "${GITHUB_WORKSPACE}/automation_tools/manifest_placeholder_replacer.sh" "${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh" - name: Build flatpak @@ -142,7 +142,7 @@ jobs: body: | # Release Notes (Cooker) This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}. - On branch [${{env.BRANCH_NAME}}](https://github.com/XargonWan/RetroDECK/tree/${{env.BRANCH_NAME}}). + On branch [${{env.BRANCH_NAME}}](https://github.com/RetroDECK/RetroDECK/tree/${{env.BRANCH_NAME}}). ## Commits since last release ${{ steps.commits.outputs.commits }} diff --git a/old/disabled-workflows/flathub_push_cooker.yml b/old/disabled-workflows/flathub_push_cooker.yml index 65a4d349..2760bade 100644 --- a/old/disabled-workflows/flathub_push_cooker.yml +++ b/old/disabled-workflows/flathub_push_cooker.yml @@ -25,7 +25,7 @@ jobs: fi git clone --recursive https://github.com/flathub/net.retrodeck.retrodeck.git flathub cd $gits_folder - git clone --recursive https://github.com/XargonWan/RetroDECK RetroDECK + git clone --recursive https://github.com/RetroDECK/RetroDECK RetroDECK cd $gits_folder/RetroDECK # NON-EDITABLES @@ -66,7 +66,7 @@ jobs: # curl -sL \ # -H "Accept: application/vnd.github+json" \ # -H "Authorization: Bearer ${{ secrets.TRIGGER_BUILD_TOKEN }}" \ - # https://api.github.com/repos/XargonWan/RetroDECK-cooker/releases \ + # https://api.github.com/repos/RetroDECK/Cooker/releases \ # | jq .[0].tag_name \ # | tr -d \" \ # ) diff --git a/old/disabled-workflows/update-readthedocs.yml b/old/disabled-workflows/update-readthedocs.yml index f32127e4..65784a36 100644 --- a/old/disabled-workflows/update-readthedocs.yml +++ b/old/disabled-workflows/update-readthedocs.yml @@ -26,7 +26,7 @@ jobs: - name: Update ReadTheDocs wiki-rtd id: wiki-rtd-update run: | - git checkout https://github.com/XargonWan/RetroDECK.wiki-rtd.git tmp/wiki-rtd + git checkout https://github.com/RetroDECK/RetroDECK.wiki-rtd.git tmp/wiki-rtd cp -rf tmp/wiki-rtd/* wiki-rtd rm wiki-rtd/index.md mv wiki-rtd/Home.md wiki-rtd/index.md diff --git a/old/removed-modules.yml b/old/removed-modules.yml index 04274441..343fe295 100644 --- a/old/removed-modules.yml +++ b/old/removed-modules.yml @@ -172,4 +172,182 @@ - type: file path: rd-submodules/ryujinx/ryujinx-wrapper - # Ryujinx - END \ No newline at end of file + # Ryujinx - END + + # Needed from ES-DE 2.1.0+ + - name: libpoppler-glib + buildsystem: cmake-ninja + config-opts: + - -DENABLE_BOOST=OFF + sources: + - type: archive + # original link not working, found a mirror + url: https://poppler.freedesktop.org/poppler-22.11.0.tar.xz + #url: https://gitlab.freedesktop.org/poppler/poppler/-/archive/poppler-22.11.0/poppler-poppler-22.11.0.tar.bz2 + sha256: 093ba9844ed774285517361c15e21a31ba4df278a499263d4403cca74f2da828 + cleanup: + - /lib/pkgconfig + - /include + - '*.a' + - '*.la' + + + # dependency of: XEMU, MelonDS (4.7.0) + - name: libslirp + buildsystem: meson + cleanup: + - /include + sources: + - type: archive + url: https://gitlab.freedesktop.org/slirp/libslirp/-/archive/v4.8.0/libslirp-v4.8.0.tar.gz + sha256: 2a98852e65666db313481943e7a1997abff0183bd9bea80caec1b5da89fda28c + x-checker-data: + type: anitya + project-id: 96796 + stable-only: true + url-template: https://gitlab.freedesktop.org/slirp/libslirp/-/archive/v$version/libslirp-v$version.tar.gz + + # dependency of: CEMU (1.0.26), DOLPHIN (1.0.27) + - name: libusb + config-opts: + - --disable-static + cleanup: + - /include + - /lib/*.la + - /lib/pkgconfig + sources: + - type: archive + url: https://github.com/libusb/libusb/releases/download/v1.0.27/libusb-1.0.27.tar.bz2 + sha256: ffaa41d741a8a3bee244ac8e54a72ea05bf2879663c098c82fc5757853441575 + x-checker-data: + type: anitya + project-id: 1749 + stable-only: true + url-template: https://github.com/libusb/libusb/releases/download/v$version/libusb-$version.tar.bz2 + + # Dolphin - START + # why from source: AppImage not provided, only Flatpak + # https://github.com/flathub/org.DolphinEmu.dolphin-emu + # WHEN UPADTING: remember to update rd-submodules/dolphin contents + + - name: xdg-screensaver-shim + buildsystem: meson + sources: + - type: archive + url: https://github.com/Unrud/xdg-screensaver-shim/archive/0.0.2.tar.gz + sha256: 0ed2a69fe6ee6cbffd2fe16f85116db737f17fb1e79bfb812d893cf15c728399 + + - name: dolphin-emu + buildsystem: cmake-ninja + config-opts: + - -DCMAKE_BUILD_TYPE=Release + - -DENABLE_ALSA=OFF + - -DENABLE_SDL=ON + - -DENABLE_EVDEV=ON + - -DDISTRIBUTOR=Flathub + cleanup: + - /share/man + post-install: + - install -D -t ${FLATPAK_DEST}/bin/ dolphin-emu-wrapper + - sed -i -e 's/viewBox="0 0 1024.02 571.29"/viewBox="0 -285.645 1024 1024" width="2048" + height="2048"/g' /app/share/icons/hicolor/scalable/apps/dolphin-emu.svg + sources: + - type: git + # Sometimes Dolphin or its submodules clone are failing in https so it must done in ssh + # fatal: remote transport reported error + # url: ssh://git@github.com/dolphin-emu/dolphin.git + url: https://github.com/dolphin-emu/dolphin.git + commit: cc3ff347b437fd80f3a2880d1bbc7ba2d5f191f4 + # x-checker-data: + # type: json + # url: https://dolphin-emu.org/update/latest/beta + # commit-query: .hash + # version-query: .shortrev + # timestamp-query: .date + # is-main-source: true + # detects whether dolphin is running in a flatpak sandbox + # and makes it use xdg directories if it is. + # prevents dolphin from attempting to write conf files + # in non-writable paths, typically happens when a user + # has leftover files from a previous non-flatpak install + - type: patch + path: rd-submodules/dolphin/detectflatpak.patch + # version strings must match exactly for online multiplayer + - type: patch + path: rd-submodules/dolphin/nodirtyversion.patch + - type: script + commands: + - | + for i in {0..9}; do + test -S $XDG_RUNTIME_DIR/discord-ipc-$i || + ln -sf {app/com.discordapp.Discord,$XDG_RUNTIME_DIR}/discord-ipc-$i; + done + dolphin-emu "$@" + dest-filename: dolphin-emu-wrapper + + - name: universal_dynamic_input + buildsystem: simple + build-commands: + - mkdir -p ${FLATPAK_DEST}/retrodeck/extras/DynamicInputTextures + - cp -rf * ${FLATPAK_DEST}/retrodeck/extras/DynamicInputTextures/ + sources: + - type: git + url: https://github.com/Venomalia/UniversalDynamicInput.git + commit: UNIVERSALDYNAMICINPUTCOMMITPLACEHOLDER + + # Dolphin - END + + # SOLARUS - START + # why from source: they only provide a snap + # https://github.com/flathub/org.solarus_games.solarus.Launcher + + - name: luajit + no-autogen: true + cleanup: + - /bin + - /lib/*.a + - /include + - /lib/pkgconfig + - /share/man + sources: + - type: archive + url: https://luajit.org/download/LuaJIT-2.0.5.tar.gz + sha256: 874b1f8297c697821f561f9b73b57ffd419ed8f4278c82e05b48806d30c1e979 + - type: shell + commands: + - sed -i 's|/usr/local|/app|' ./Makefile + + - name: libmodplug + cleanup: + - /include + sources: + - type: archive + url: https://download.sourceforge.net/project/modplug-xmms/libmodplug/0.8.9.0/libmodplug-0.8.9.0.tar.gz + sha512: 880e10154fd367ee24ace53ca7e32a5c1fee7dfff1f934e6499944c12779427da63e2f55f8d6ce25db0a42a5b4424053bf64305b31dbfc4ef6a8909924d655fd + + - name: physfs + buildsystem: cmake-ninja + config-opts: + - -DPHYSFS_BUILD_TEST=OFF + sources: + - type: archive + url: https://icculus.org/physfs/downloads/physfs-3.0.2.tar.bz2 + sha256: 304df76206d633df5360e738b138c94e82ccf086e50ba84f456d3f8432f9f863 + size: 194888 + x-checker-data: + type: anitya + project-id: 3631 + url-template: https://icculus.org/physfs/downloads/physfs-$version.tar.bz2 + + - name: solarus + buildsystem: cmake-ninja + builddir: true + config-opts: + - -DSOLARUS_GUI=OFF + sources: + - type: git + url: https://gitlab.com/solarus-games/solarus.git + tag: v1.6.5 + commit: 3aec70b0556a8d7aed7903d1a3e4d9a18c5d1649 + + # SOLARUS - END \ No newline at end of file diff --git a/old/workflows/TEST_release_info.yml b/old/workflows/TEST_release_info.yml index ebf21609..bbec905e 100644 --- a/old/workflows/TEST_release_info.yml +++ b/old/workflows/TEST_release_info.yml @@ -32,16 +32,16 @@ jobs: git submodule update sudo apt install -y flatpak flatpak-builder p7zip-full xmlstarlet appstream-util - - name: Validating the appdata - run: appstream-util validate "net.retrodeck.retrodeck.appdata.xml" + - name: Validating the metainfo + run: appstream-util validate "net.retrodeck.retrodeck.metainfo.xml" continue-on-error: true - name: Getting version info id: version run: | - appdata="https://raw.githubusercontent.com/XargonWan/RetroDECK/main/net.retrodeck.retrodeck.appdata.xml" - REL_VER=$(curl -s $appdata | xmlstarlet sel -t -v "//release/@version" | head -1) - DES="$(curl -s $appdata | xmlstarlet sel -t -m "//release[1]" -v "description" -n | sed '1,2d;$d;s/^ */- /;/^- $/d')" + metainfo="https://raw.githubusercontent.com/RetroDECK/RetroDECK/main/net.retrodeck.retrodeck.metainfo.xml" + REL_VER=$(curl -s $metainfo | xmlstarlet sel -t -v "//release/@version" | head -1) + DES="$(curl -s $metainfo | xmlstarlet sel -t -m "//release[1]" -v "description" -n | sed '1,2d;$d;s/^ */- /;/^- $/d')" echo "REL_VER=$REL_VER" >> $GITHUB_ENV echo -e "# Release Notes\n" >> "body.md" echo "$DES" >> "body.md" diff --git a/old/workflows/flathub_push_cooker.yml b/old/workflows/flathub_push_cooker.yml index 65a4d349..2760bade 100644 --- a/old/workflows/flathub_push_cooker.yml +++ b/old/workflows/flathub_push_cooker.yml @@ -25,7 +25,7 @@ jobs: fi git clone --recursive https://github.com/flathub/net.retrodeck.retrodeck.git flathub cd $gits_folder - git clone --recursive https://github.com/XargonWan/RetroDECK RetroDECK + git clone --recursive https://github.com/RetroDECK/RetroDECK RetroDECK cd $gits_folder/RetroDECK # NON-EDITABLES @@ -66,7 +66,7 @@ jobs: # curl -sL \ # -H "Accept: application/vnd.github+json" \ # -H "Authorization: Bearer ${{ secrets.TRIGGER_BUILD_TOKEN }}" \ - # https://api.github.com/repos/XargonWan/RetroDECK-cooker/releases \ + # https://api.github.com/repos/RetroDECK/Cooker/releases \ # | jq .[0].tag_name \ # | tr -d \" \ # ) diff --git a/other_licenses.txt b/other_licenses.txt index 94837c31..1cf33ba3 100644 --- a/other_licenses.txt +++ b/other_licenses.txt @@ -1,10 +1,14 @@ --- RetroDECK 3rd Party Licences --- -All Licenses of the projects we are using are listed on the wiki: +All Licenses of the projects we are using are listed on the wiki as well for ease of reading: https://retrodeck.readthedocs.io/en/latest/wiki_about/donations-licenses/ If we have made some linkage errors or your license needs to be included in the projects github page please contact the RetroDECK Team on Discord or Matrix. +RetroDECK generally only modifies the default configurations to the systems to fit into our folder structure (saves, bios etc..), work with Steam Input and sometime tweaks the settings with the help of the RetroDECK community to find the "best settings" for the hardware and the community likes to use. + +Note that not all of the software listed here have been added to RetroDECK proper yet, we hope to get to them in the future. + --- Freedoom --- @@ -25,8 +29,838 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” For a list of contributors to the Freedoom project, see the file CREDITS. +--- ares --- ---- Visual Pinball --- +Copyright (c) 2004-2021 ares team, Near et al + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +Stack-less Just-In-Time compiler + +Copyright Zoltan Herczeg (hzmester@freemail.hu). All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND CONTRIBUTORS +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER(S) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +libchdr + +Copyright Romain Tisserand +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of the nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +LZMA SDK is placed in the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or distribute +the original LZMA SDK code, either in source code form or as a compiled binary, +for any purpose, commercial or non-commercial, and by any means. +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +zlib + + (C) 1995-2017 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + +If you use the zlib library in a product, we would appreciate *not* receiving +lengthy legal documents to sign. The sources are provided for free but without +warranty of any kind. The library has been entirely written by Jean-loup +Gailly and Mark Adler; it does not include third-party code. + +If you redistribute modified sources, we would appreciate that you include in +the file ChangeLog history information documenting your changes. Please read +the FAQ for more information on the distribution of modified source versions. +---------------------------------------------------------------------- + +---------------------------------------------------------------------- + +xxHash - Extremely Fast Hash algorithm +Header File +Copyright (C) 2012-2021 Yann Collet + +BSD 2-Clause License (https://www.opensource.org/licenses/bsd-license.php) + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following disclaimer + in the documentation and/or other materials provided with the + distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +You can contact the author at: +- xxHash homepage: https://www.xxhash.com +- xxHash source repository: https://github.com/Cyan4973/xxHash + +---------------------------------------------------------------------- + +MoltenVK + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +OpenGL API and Extension Registry +https://github.com/KhronosGroup/OpenGL-Registry + +Copyright 2013-2020 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +EGL API and Extension Registry +https://github.com/KhronosGroup/EGL-Registry + +Copyright (c) 2008-2018 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +TZXFile + +MIT License + +Copyright (c) 2020 MrReeMachine + +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. +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +ymfm + +BSD 3-Clause License + +Copyright (c) 2021, Aaron Giles +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +librashader +Mozilla Public License Version 2.0 +================================== + +### 1. Definitions + +**1.1. “Contributor”** +means each individual or legal entity that creates, contributes to +the creation of, or owns Covered Software. + +**1.2. “Contributor Version”** +means the combination of the Contributions of others (if any) used +by a Contributor and that particular Contributor's Contribution. + +**1.3. “Contribution”** +means Covered Software of a particular Contributor. + +**1.4. “Covered Software”** +means Source Code Form to which the initial Contributor has attached +the notice in Exhibit A, the Executable Form of such Source Code +Form, and Modifications of such Source Code Form, in each case +including portions thereof. + +**1.5. “Incompatible With Secondary Licenses”** +means + +* **(a)** that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or +* **(b)** that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +**1.6. “Executable Form”** +means any form of the work other than Source Code Form. + +**1.7. “Larger Work”** +means a work that combines Covered Software with other material, in +a separate file or files, that is not Covered Software. + +**1.8. “License”** +means this document. + +**1.9. “Licensable”** +means having the right to grant, to the maximum extent possible, +whether at the time of the initial grant or subsequently, any and +all of the rights conveyed by this License. + +**1.10. “Modifications”** +means any of the following: + +* **(a)** any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or +* **(b)** any new file in Source Code Form that contains any Covered + Software. + +**1.11. “Patent Claims” of a Contributor** +means any patent claim(s), including without limitation, method, +process, and apparatus claims, in any patent Licensable by such +Contributor that would be infringed, but for the grant of the +License, by the making, using, selling, offering for sale, having +made, import, or transfer of either its Contributions or its +Contributor Version. + +**1.12. “Secondary License”** +means either the GNU General Public License, Version 2.0, the GNU +Lesser General Public License, Version 2.1, the GNU Affero General +Public License, Version 3.0, or any later versions of those +licenses. + +**1.13. “Source Code Form”** +means the form of the work preferred for making modifications. + +**1.14. “You” (or “Your”)** +means an individual or a legal entity exercising rights under this +License. For legal entities, “You” includes any entity that +controls, is controlled by, or is under common control with You. For +purposes of this definition, “control” means **(a)** the power, direct +or indirect, to cause the direction or management of such entity, +whether by contract or otherwise, or **(b)** ownership of more than +fifty percent (50%) of the outstanding shares or beneficial +ownership of such entity. + + +### 2. License Grants and Conditions + +#### 2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +* **(a)** under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and +* **(b)** under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +#### 2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +#### 2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +* **(a)** for any code that a Contributor has removed from Covered Software; + or +* **(b)** for infringements caused by: **(i)** Your and any other third party's + modifications of Covered Software, or **(ii)** the combination of its + Contributions with other software (except as part of its Contributor + Version); or +* **(c)** under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +#### 2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +#### 2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +#### 2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +#### 2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + + +### 3. Responsibilities + +#### 3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +#### 3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +* **(a)** such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +* **(b)** You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +#### 3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +#### 3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +#### 3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + + +### 4. Inability to Comply Due to Statute or Regulation + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: **(a)** comply with +the terms of this License to the maximum extent possible; and **(b)** +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + + +### 5. Termination + +**5.1.** The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated **(a)** provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and **(b)** on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +**5.2.** If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +**5.3.** In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + + +### 6. Disclaimer of Warranty + +> Covered Software is provided under this License on an “as is” +> basis, without warranty of any kind, either expressed, implied, or +> statutory, including, without limitation, warranties that the +> Covered Software is free of defects, merchantable, fit for a +> particular purpose or non-infringing. The entire risk as to the +> quality and performance of the Covered Software is with You. +> Should any Covered Software prove defective in any respect, You +> (not any Contributor) assume the cost of any necessary servicing, +> repair, or correction. This disclaimer of warranty constitutes an +> essential part of this License. No use of any Covered Software is +> authorized under this License except under this disclaimer. + +### 7. Limitation of Liability + +> Under no circumstances and under no legal theory, whether tort +> (including negligence), contract, or otherwise, shall any +> Contributor, or anyone who distributes Covered Software as +> permitted above, be liable to You for any direct, indirect, +> special, incidental, or consequential damages of any character +> including, without limitation, damages for lost profits, loss of +> goodwill, work stoppage, computer failure or malfunction, or any +> and all other commercial damages or losses, even if such party +> shall have been informed of the possibility of such damages. This +> limitation of liability shall not apply to liability for death or +> personal injury resulting from such party's negligence to the +> extent applicable law prohibits such limitation. Some +> jurisdictions do not allow the exclusion or limitation of +> incidental or consequential damages, so this exclusion and +> limitation may not apply to You. + + +### 8. Litigation + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + + +### 9. Miscellaneous + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + + +### 10. Versions of the License + +#### 10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +#### 10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +#### 10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +#### 10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +## Exhibit A - Source Code Form License Notice + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +## Exhibit B - “Incompatible With Secondary Licenses” Notice + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + + + +--- Visual Pinball X --- https://github.com/vpinball/vpinball?tab=License-1-ov-file#readme @@ -155,7 +989,7 @@ freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be - appreciated but is not required. + appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. @@ -451,7 +1285,7 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ---- WINE --- +--- WINE --- https://github.com/wine-mirror/wine/blob/master/LICENSE @@ -461,7 +1295,7 @@ for a complete list) Wine is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at -your option) any later version. +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 @@ -473,7 +1307,7 @@ Wine distribution in the file COPYING.LIB. If you did not receive this copy, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. ---- Proton --- +--- Proton --- https://github.com/ValveSoftware/Proton/blob/proton_9.0/LICENSE.proton https://github.com/ValveSoftware/Proton/blob/proton_9.0/LICENSE @@ -505,3 +1339,15369 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--- Duckstation --- + +DuckStation PS1 Emulator +Copyright (C) 2019-2024 Connor McLaughlin + +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 +DuckStation contains code written by, and copyrighted by third parties. +The copyright statements and licenses for the included third-party code is included below. +biscuit - https://github.com/lioncash/biscuit +Copyright 2021 Lioncash/Lioncache + +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. +cpuinfo - https://github.com/pytorch/cpuinfo +Copyright (c) 2019 Google LLC +Copyright (c) 2017-2018 Facebook Inc. +Copyright (C) 2012-2017 Georgia Institute of Technology +Copyright (C) 2010-2012 Marat Dukhan + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +cubeb - https://github.com/mozilla/cubeb +Copyright 2011 Mozilla Foundation + +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +D3D12 Memory Allocator - https://github.com/GPUOpen-LibrariesAndSDKs/D3D12MemoryAllocator +Copyright (c) 2019-2022 Advanced Micro Devices, Inc. All rights reserved. + +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. +Discord-RPC - https://github.com/discord/discord-rpc +Copyright 2017 Discord, Inc. + +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. +fast_float - https://github.com/fastfloat/fast_float +MIT License + +Copyright (c) 2021 The fast_float authors + +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. +fmt - https://github.com/fmtlib/fmt +Copyright (c) 2012 - present, Victor Zverovich + +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. + +--- Optional exception to the license --- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into a machine-executable object form of such +source code, you may redistribute such embedded portions in such object form +without including the above copyright and permission notices. +FreeType - https://freetype.org/index.html + The FreeType Project LICENSE + ---------------------------- + + 2006-Jan-27 + + Copyright 1996-2002, 2006 by + David Turner, Robert Wilhelm, and Werner Lemberg + + + +Introduction +============ + + The FreeType Project is distributed in several archive packages; + some of them may contain, in addition to the FreeType font engine, + various tools and contributions which rely on, or relate to, the + FreeType Project. + + This license applies to all files found in such packages, and + which do not fall under their own explicit license. The license + affects thus the FreeType font engine, the test programs, + documentation and makefiles, at the very least. + + This license was inspired by the BSD, Artistic, and IJG + (Independent JPEG Group) licenses, which all encourage inclusion + and use of free software in commercial and freeware products + alike. As a consequence, its main points are that: + + o We don't promise that this software works. However, we will be + interested in any kind of bug reports. (`as is' distribution) + + o You can use this software for whatever you want, in parts or + full form, without having to pay us. (`royalty-free' usage) + + o You may not pretend that you wrote this software. If you use + it, or only parts of it, in a program, you must acknowledge + somewhere in your documentation that you have used the + FreeType code. (`credits') + + We specifically permit and encourage the inclusion of this + software, with or without modifications, in commercial products. + We disclaim all warranties covering The FreeType Project and + assume no liability related to The FreeType Project. + + + Finally, many people asked us for a preferred form for a + credit/disclaimer to use in compliance with this license. We thus + encourage you to use the following text: + + """ + Portions of this software are copyright © The FreeType + Project (www.freetype.org). All rights reserved. + """ + + Please replace with the value from the FreeType version you + actually use. + + +Legal Terms +=========== + +0. Definitions +-------------- + + Throughout this license, the terms `package', `FreeType Project', + and `FreeType archive' refer to the set of files originally + distributed by the authors (David Turner, Robert Wilhelm, and + Werner Lemberg) as the `FreeType Project', be they named as alpha, + beta or final release. + + `You' refers to the licensee, or person using the project, where + `using' is a generic term including compiling the project's source + code as well as linking it to form a `program' or `executable'. + This program is referred to as `a program using the FreeType + engine'. + + This license applies to all files distributed in the original + FreeType Project, including all source code, binaries and + documentation, unless otherwise stated in the file in its + original, unmodified form as distributed in the original archive. + If you are unsure whether or not a particular file is covered by + this license, you must contact us to verify this. + + The FreeType Project is copyright (C) 1996-2000 by David Turner, + Robert Wilhelm, and Werner Lemberg. All rights reserved except as + specified below. + +1. No Warranty +-------------- + + THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO + USE, OF THE FREETYPE PROJECT. + +2. Redistribution +----------------- + + This license grants a worldwide, royalty-free, perpetual and + irrevocable right and license to use, execute, perform, compile, + display, copy, create derivative works of, distribute and + sublicense the FreeType Project (in both source and object code + forms) and derivative works thereof for any purpose; and to + authorize others to exercise some or all of the rights granted + herein, subject to the following conditions: + + o Redistribution of source code must retain this license file + (`FTL.TXT') unaltered; any additions, deletions or changes to + the original files must be clearly indicated in accompanying + documentation. The copyright notices of the unaltered, + original files must be preserved in all copies of source + files. + + o Redistribution in binary form must provide a disclaimer that + states that the software is based in part of the work of the + FreeType Team, in the distribution documentation. We also + encourage you to put an URL to the FreeType web page in your + documentation, though this isn't mandatory. + + These conditions apply to any software derived from or based on + the FreeType Project, not just the unmodified files. If you use + our work, you must acknowledge us. However, no fee need be paid + to us. + +3. Advertising +-------------- + + Neither the FreeType authors and contributors nor you shall use + the name of the other for commercial, advertising, or promotional + purposes without specific prior written permission. + + We suggest, but do not require, that you use one or more of the + following phrases to refer to this software in your documentation + or advertising materials: `FreeType Project', `FreeType Engine', + `FreeType library', or `FreeType Distribution'. + + As you have not signed this license, you are not required to + accept it. However, as the FreeType Project is copyrighted + material, only this license, or another one contracted with the + authors, grants you the right to use, distribute, and modify it. + Therefore, by using, distributing, or modifying the FreeType + Project, you indicate that you understand and accept all the terms + of this license. + +4. Contacts +----------- + + There are two mailing lists related to FreeType: + + o freetype@nongnu.org + + Discusses general use and applications of FreeType, as well as + future and wanted additions to the library and distribution. + If you are looking for support, start in this list if you + haven't found anything to help you in the documentation. + + o freetype-devel@nongnu.org + + Discusses bugs, as well as engine internals, design issues, + specific licenses, porting, etc. + + Our home page can be found at + + https://www.freetype.org +HarfBuzz - https://github.com/harfbuzz/harfbuzz +HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. +For parts of HarfBuzz that are licensed under different licenses see individual +files names COPYING in subdirectories where applicable. + +Copyright © 2010-2022 Google, Inc. +Copyright © 2015-2020 Ebrahim Byagowi +Copyright © 2019,2020 Facebook, Inc. +Copyright © 2012,2015 Mozilla Foundation +Copyright © 2011 Codethink Limited +Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) +Copyright © 2009 Keith Stribley +Copyright © 2011 Martin Hosken and SIL International +Copyright © 2007 Chris Wilson +Copyright © 2005,2006,2020,2021,2022,2023 Behdad Esfahbod +Copyright © 2004,2007,2008,2009,2010,2013,2021,2022,2023 Red Hat, Inc. +Copyright © 1998-2005 David Turner and Werner Lemberg +Copyright © 2016 Igalia S.L. +Copyright © 2022 Matthias Clasen +Copyright © 2018,2021 Khaled Hosny +Copyright © 2018,2019,2020 Adobe, Inc +Copyright © 2013-2015 Alexei Podtelezhnikov + +For full copyright notices consult the individual files in the package. + + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +glslang - https://github.com/KhronosGroup/glslang +Here, glslang proper means core GLSL parsing, HLSL parsing, and SPIR-V code +generation. Glslang proper requires use of two licenses, one that covers +non-preprocessing and an additional one that covers preprocessing. + +Bison was removed long ago. You can build glslang from the source grammar, +using tools of your choice, without using bison or any bison files. + +Other parts, outside of glslang proper, include: + +- gl_types.h, only needed for OpenGL-like reflection, and can be left out of + a parse and codegen project. See it for its license. + +- update_glslang_sources.py, which is not part of the project proper and does + not need to be used. + +- the SPIR-V "remapper", which is optional, but has the same license as + glslang proper + +- Google tests and SPIR-V tools, and anything in the external subdirectory + are external and optional; see them for their respective licenses. + +-------------------------------------------------------------------------------- + +The core of glslang-proper, minus the preprocessor is licenced as follows: + +// +// Copyright (C) 2015-2018 Google, Inc. +// Copyright (C) +// +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions +// are met: +// +// Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// +// Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following +// disclaimer in the documentation and/or other materials provided +// with the distribution. +// +// Neither the name of 3Dlabs Inc. Ltd. nor the names of its +// contributors may be used to endorse or promote products derived +// from this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +// COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. +// + +-------------------------------------------------------------------------------- + +The preprocessor has the core license stated above, plus an additional licence: + +/****************************************************************************\ +Copyright (c) 2002, NVIDIA Corporation. + +NVIDIA Corporation("NVIDIA") supplies this software to you in +consideration of your agreement to the following terms, and your use, +installation, modification or redistribution of this NVIDIA software +constitutes acceptance of these terms. If you do not agree with these +terms, please do not use, install, modify or redistribute this NVIDIA +software. + +In consideration of your agreement to abide by the following terms, and +subject to these terms, NVIDIA grants you a personal, non-exclusive +license, under NVIDIA's copyrights in this original NVIDIA software (the +"NVIDIA Software"), to use, reproduce, modify and redistribute the +NVIDIA Software, with or without modifications, in source and/or binary +forms; provided that if you redistribute the NVIDIA Software, you must +retain the copyright notice of NVIDIA, this notice and the following +text and disclaimers in all such redistributions of the NVIDIA Software. +Neither the name, trademarks, service marks nor logos of NVIDIA +Corporation may be used to endorse or promote products derived from the +NVIDIA Software without specific prior written permission from NVIDIA. +Except as expressly stated in this notice, no other rights or licenses +express or implied, are granted by NVIDIA herein, including but not +limited to any patent rights that may be infringed by your derivative +works or by other works in which the NVIDIA Software may be +incorporated. No hardware is licensed hereunder. + +THE NVIDIA SOFTWARE IS BEING PROVIDED ON AN "AS IS" BASIS, WITHOUT +WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, +INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR +ITS USE AND OPERATION EITHER ALONE OR IN COMBINATION WITH OTHER +PRODUCTS. + +IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY SPECIAL, INDIRECT, +INCIDENTAL, EXEMPLARY, CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, LOST PROFITS; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) OR ARISING IN ANY WAY +OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE +NVIDIA SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, +TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF +NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +\****************************************************************************/ +Shaderc - https://github.com/google/shaderc +SPIRV-Tools - https://github.com/KhronosGroup/SPIRV-Tools + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +SPIRV-Headers - https://github.com/KhronosGroup/SPIRV-Headers +Files: All files except for those called out below. +Copyright (c) 2015-2024 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS +KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS +SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT + https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. + +--- + +Files: include/spirv/spir-v.xml +Copyright (c) 2015-2024 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. + +--- + +Files: tools/buildHeaders/jsoncpp/* +The JsonCpp library's source code, including accompanying documentation, +tests and demonstration applications, are licensed under the following +conditions... + +The author (Baptiste Lepilleur) explicitly disclaims copyright in all +jurisdictions which recognize such a disclaimer. In such jurisdictions, +this software is released into the Public Domain. + +In jurisdictions which do not recognize Public Domain property (e.g. Germany as of +2010), this software is Copyright (c) 2007-2010 by Baptiste Lepilleur, and is +released under the terms of the MIT License (see below). + +In jurisdictions which recognize Public Domain property, the user of this +software may choose to accept it either as 1) Public Domain, 2) under the +conditions of the MIT License (see below), or 3) under the terms of dual +Public Domain/MIT License conditions described here, as they choose. + +The MIT License is about as close to Public Domain as a license can get, and is +described in clear, concise terms at: + + http://en.wikipedia.org/wiki/MIT_License + +The full text of the MIT License follows: + +======================================================================== +Copyright (c) 2007-2010 Baptiste Lepilleur + +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. +======================================================================== + +--- +Dear ImGui - https://github.com/ocornut/imgui +The MIT License (MIT) + +Copyright (c) 2014-2019 Omar Cornut + +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. +FreeSurround - https://hydrogenaud.io/index.php/topic,52235.0.html +Copyright (C) 2007-2010 Christian Kothe + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) 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 +this service 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 make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. 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. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + 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 +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 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, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision 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, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This 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. +libchdr - https://github.com/rtissera/libchdr +Copyright Romain Tisserand +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of the nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +libjpeg - https://ijg.org/ +The authors make NO WARRANTY or representation, either express or implied, +with respect to this software, its quality, accuracy, merchantability, or +fitness for a particular purpose. This software is provided "AS IS", and you, +its user, assume the entire risk as to its quality and accuracy. + +This software is copyright (C) 1991-2024, Thomas G. Lane, Guido Vollbeding. +All Rights Reserved except as specified below. + +Permission is hereby granted to use, copy, modify, and distribute this +software (or portions thereof) for any purpose, without fee, subject to these +conditions: +(1) If any part of the source code for this software is distributed, then this +README file must be included, with this copyright and no-warranty notice +unaltered; and any additions, deletions, or changes to the original files +must be clearly indicated in accompanying documentation. +(2) If only executable code is distributed, then the accompanying +documentation must state that "this software is based in part on the work of +the Independent JPEG Group". +(3) Permission for use of this software is granted only if the user accepts +full responsibility for any undesirable consequences; the authors accept +NO LIABILITY for damages of any kind. + +These conditions apply to any software derived from or based on the IJG code, +not just to the unmodified library. If you use our work, you ought to +acknowledge us. + +Permission is NOT granted for the use of any IJG author's name or company name +in advertising or publicity relating to this software or products derived from +it. This software may be referred to only as "the Independent JPEG Group's +software". + +We specifically permit and encourage the use of this software as the basis of +commercial products, provided that all warranty or liability claims are +assumed by the product vendor. +libpng - http://www.libpng.org/pub/png/libpng.html + * Copyright (c) 1995-2024 The PNG Reference Library Authors. + * Copyright (c) 2018-2024 Cosmin Truta. + * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson. + * Copyright (c) 1996-1997 Andreas Dilger. + * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +The software is supplied "as is", without warranty of any kind, +express or implied, including, without limitation, the warranties +of merchantability, fitness for a particular purpose, title, and +non-infringement. In no event shall the Copyright owners, or +anyone distributing the software, be liable for any damages or +other liability, whether in contract, tort or otherwise, arising +from, out of, or in connection with the software, or the use or +other dealings in the software, even if advised of the possibility +of such damage. + +Permission is hereby granted to use, copy, modify, and distribute +this software, or portions hereof, for any purpose, without fee, +subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you + must not claim that you wrote the original software. If you + use this software in a product, an acknowledgment in the product + documentation would be appreciated, but is not required. + + 2. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + + 3. This Copyright notice may not be removed or altered from any + source or altered source distribution. +LLVM - https://github.com/llvm/llvm-project + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +---- LLVM Exceptions to the Apache 2.0 License ---- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. +LZMA SDK - https://7-zip.org/sdk.html +LZMA SDK is placed in the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original LZMA SDK code, +either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, +and by any means. +kissfft - https://github.com/mborgerding/kissfft +Copyright (c) 2003-2010 Mark Borgerding . All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors +may be used to endorse or promote products derived from this software without +specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE +USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +PromptFont - +https://shinmera.github.io/promptfont/ +This Font Software is licensed under the SIL Open Font License, +Version 1.1. This license is copied below, and is also available +with a FAQ at + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. +rcheevos - https://github.com/RetroAchievements/rcheevos/ +MIT License + +Copyright (c) 2019 RetroAchievements.org + +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. +reshadefx - https://github.com/crosire/reshade +Copyright 2014 Patrick Mours. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +riscv-disassembler - https://github.com/michaeljclark/riscv-disassembler +RISC-V Disassembler Copyright (c) 2016-2017 Michael Clark Copyright (c) 2017-2018 SiFive, Inc. 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. +SDL - https://github.com/libsdl-org/SDL +Simple DirectMedia Layer + Copyright (C) 1997-2024 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +simpleini - https://github.com/brofield/simpleini +The MIT License (MIT) + +Copyright (c) 2006-2013 Brodie Thiesfield + +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. +RapidJSON - https://rapidjson.org/ +Tencent is pleased to support the open source community by making +RapidJSON available. + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. +All rights reserved. + +If you have downloaded a copy of the RapidJSON binary from Tencent, please note +that the RapidJSON binary is licensed under the MIT License. If you have +downloaded a copy of the RapidJSON source code from Tencent, please note that +RapidJSON source code is licensed under the MIT License, except for the +third-party components listed below which are subject to different license +terms. Your integration of RapidJSON into your own projects may require +compliance with the MIT License, as well as the other licenses applicable +to the third-party components included within RapidJSON. + +A copy of the MIT License is included in this file. + +Other dependencies and licenses: + +Open Source Software Licensed Under the BSD License: +-------------------------------------------------------------------- + +The msinttypes r29 +Copyright (c) 2006-2013 Alexander Chemeris +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +* Neither the name of copyright holder nor the names of its contributors may be + used to endorse or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +Terms of the MIT License: +-------------------------------------------------------------------- + +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. +Rapid YAML - https://github.com/biojppm/rapidyaml +Copyright (c) 2018, Joao Paulo Magalhaes + +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. +SoundTouch audio processing library - https://github.com/rspeyer/soundtouch +FFmpeg - https://www.ffmpeg.org/ +Build instructions for distributed FFmpeg can be found at https://github.com/stenzek/duckstation/tree/master/scripts/deps. +FFmpeg sources can be downloaded from https://www.ffmpeg.org/download.html + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +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 this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authoried party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser 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 Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "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 +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY 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 +LIBRARY (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 LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS +SPIRV-Cross - https://github.com/KhronosGroup/SPIRV-Cross + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +StackWalker.cpp +Copyright (c) 2005-2013, Jochen Kalmbach +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. +Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. +Neither the name of Jochen Kalmbach nor the names of its contributors may be +used to endorse or promote products derived from this software without +specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +vixl - https://git.linaro.org/arm/vixl.git +LICENCE +======= + +The software in this repository is covered by the following licence. + +// Copyright 2015, VIXL authors +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are met: +// +// * Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// * Neither the name of ARM Limited nor the names of its contributors may be +// used to endorse or promote products derived from this software without +// specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS CONTRIBUTORS "AS IS" AND +// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +xbyak - https://github.com/herumi/xbyak +Copyright (c) 2007 MITSUNARI Shigeo All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the copyright owner nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +xxhash - https://github.com/Cyan4973/xxHash +xxHash Library +Copyright (c) 2012-present, Yann Collet +All rights reserved. + +BSD 2-Clause License (https://www.opensource.org/licenses/bsd-license.php) + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, this + list of conditions and the following disclaimer in the documentation and/or + other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +zlib - https://github.com/madler/zlib + Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu +Zstandard - https://github.com/facebook/zstd +BSD License + +For Zstandard software + +Copyright (c) 2016-present, Facebook, Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name Facebook nor the names of its contributors may be used to + endorse or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Zydis - https://github.com/zyantific/zydis +The MIT License (MIT) + +Copyright (c) 2014-2021 Florian Bernd +Copyright (c) 2014-2021 Joel H ner + +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. +MIPS Encoder - https://raw.githubusercontent.com/grumpycoders/pcsx-redux/main/src/mips/common/util/encoder.hh +MIT License + +Copyright (c) 2021 PCSX-Redux authors + +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. +Some shaders provided with the application are sourced from: +https://github.com/Matsilagi/RSRetroArch/ +https://github.com/akgunter/crt-royale-reshade +https://github.com/HelelSingh/CRT-Guest-ReShade +License details are included in the relevant shader source files, under resources\shaders\reshade. + +--- Ares --- + +---------------------------------------------------------------------- +ares + +Copyright (c) 2004-2021 ares team, Near et al + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +Stack-less Just-In-Time compiler + +Copyright Zoltan Herczeg (hzmester@freemail.hu). All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND CONTRIBUTORS +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER(S) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +libchdr + +Copyright Romain Tisserand +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of the nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +LZMA SDK is placed in the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or distribute +the original LZMA SDK code, either in source code form or as a compiled binary, +for any purpose, commercial or non-commercial, and by any means. +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +zlib + + (C) 1995-2017 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + +If you use the zlib library in a product, we would appreciate *not* receiving +lengthy legal documents to sign. The sources are provided for free but without +warranty of any kind. The library has been entirely written by Jean-loup +Gailly and Mark Adler; it does not include third-party code. + +If you redistribute modified sources, we would appreciate that you include in +the file ChangeLog history information documenting your changes. Please read +the FAQ for more information on the distribution of modified source versions. +---------------------------------------------------------------------- + +---------------------------------------------------------------------- + +xxHash - Extremely Fast Hash algorithm +Header File +Copyright (C) 2012-2021 Yann Collet + +BSD 2-Clause License (https://www.opensource.org/licenses/bsd-license.php) + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following disclaimer + in the documentation and/or other materials provided with the + distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +You can contact the author at: +- xxHash homepage: https://www.xxhash.com +- xxHash source repository: https://github.com/Cyan4973/xxHash + +---------------------------------------------------------------------- + +MoltenVK + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +OpenGL API and Extension Registry +https://github.com/KhronosGroup/OpenGL-Registry + +Copyright 2013-2020 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +EGL API and Extension Registry +https://github.com/KhronosGroup/EGL-Registry + +Copyright (c) 2008-2018 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +TZXFile + +MIT License + +Copyright (c) 2020 MrReeMachine + +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. +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +ymfm + +BSD 3-Clause License + +Copyright (c) 2021, Aaron Giles +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +---------------------------------------------------------------------- + +---------------------------------------------------------------------- +librashader +Mozilla Public License Version 2.0 +================================== + +### 1. Definitions + +**1.1. “Contributor”** +means each individual or legal entity that creates, contributes to +the creation of, or owns Covered Software. + +**1.2. “Contributor Version”** +means the combination of the Contributions of others (if any) used +by a Contributor and that particular Contributor's Contribution. + +**1.3. “Contribution”** +means Covered Software of a particular Contributor. + +**1.4. “Covered Software”** +means Source Code Form to which the initial Contributor has attached +the notice in Exhibit A, the Executable Form of such Source Code +Form, and Modifications of such Source Code Form, in each case +including portions thereof. + +**1.5. “Incompatible With Secondary Licenses”** +means + +* **(a)** that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or +* **(b)** that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +**1.6. “Executable Form”** +means any form of the work other than Source Code Form. + +**1.7. “Larger Work”** +means a work that combines Covered Software with other material, in +a separate file or files, that is not Covered Software. + +**1.8. “License”** +means this document. + +**1.9. “Licensable”** +means having the right to grant, to the maximum extent possible, +whether at the time of the initial grant or subsequently, any and +all of the rights conveyed by this License. + +**1.10. “Modifications”** +means any of the following: + +* **(a)** any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or +* **(b)** any new file in Source Code Form that contains any Covered + Software. + +**1.11. “Patent Claims” of a Contributor** +means any patent claim(s), including without limitation, method, +process, and apparatus claims, in any patent Licensable by such +Contributor that would be infringed, but for the grant of the +License, by the making, using, selling, offering for sale, having +made, import, or transfer of either its Contributions or its +Contributor Version. + +**1.12. “Secondary License”** +means either the GNU General Public License, Version 2.0, the GNU +Lesser General Public License, Version 2.1, the GNU Affero General +Public License, Version 3.0, or any later versions of those +licenses. + +**1.13. “Source Code Form”** +means the form of the work preferred for making modifications. + +**1.14. “You” (or “Your”)** +means an individual or a legal entity exercising rights under this +License. For legal entities, “You” includes any entity that +controls, is controlled by, or is under common control with You. For +purposes of this definition, “control” means **(a)** the power, direct +or indirect, to cause the direction or management of such entity, +whether by contract or otherwise, or **(b)** ownership of more than +fifty percent (50%) of the outstanding shares or beneficial +ownership of such entity. + + +### 2. License Grants and Conditions + +#### 2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +* **(a)** under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and +* **(b)** under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +#### 2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +#### 2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +* **(a)** for any code that a Contributor has removed from Covered Software; + or +* **(b)** for infringements caused by: **(i)** Your and any other third party's + modifications of Covered Software, or **(ii)** the combination of its + Contributions with other software (except as part of its Contributor + Version); or +* **(c)** under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +#### 2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +#### 2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +#### 2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +#### 2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + + +### 3. Responsibilities + +#### 3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +#### 3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +* **(a)** such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +* **(b)** You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +#### 3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +#### 3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +#### 3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + + +### 4. Inability to Comply Due to Statute or Regulation + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: **(a)** comply with +the terms of this License to the maximum extent possible; and **(b)** +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + + +### 5. Termination + +**5.1.** The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated **(a)** provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and **(b)** on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +**5.2.** If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +**5.3.** In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + + +### 6. Disclaimer of Warranty + +> Covered Software is provided under this License on an “as is” +> basis, without warranty of any kind, either expressed, implied, or +> statutory, including, without limitation, warranties that the +> Covered Software is free of defects, merchantable, fit for a +> particular purpose or non-infringing. The entire risk as to the +> quality and performance of the Covered Software is with You. +> Should any Covered Software prove defective in any respect, You +> (not any Contributor) assume the cost of any necessary servicing, +> repair, or correction. This disclaimer of warranty constitutes an +> essential part of this License. No use of any Covered Software is +> authorized under this License except under this disclaimer. + +### 7. Limitation of Liability + +> Under no circumstances and under no legal theory, whether tort +> (including negligence), contract, or otherwise, shall any +> Contributor, or anyone who distributes Covered Software as +> permitted above, be liable to You for any direct, indirect, +> special, incidental, or consequential damages of any character +> including, without limitation, damages for lost profits, loss of +> goodwill, work stoppage, computer failure or malfunction, or any +> and all other commercial damages or losses, even if such party +> shall have been informed of the possibility of such damages. This +> limitation of liability shall not apply to liability for death or +> personal injury resulting from such party's negligence to the +> extent applicable law prohibits such limitation. Some +> jurisdictions do not allow the exclusion or limitation of +> incidental or consequential damages, so this exclusion and +> limitation may not apply to You. + + +### 8. Litigation + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + + +### 9. Miscellaneous + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + + +### 10. Versions of the License + +#### 10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +#### 10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +#### 10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +#### 10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +## Exhibit A - Source Code Form License Notice + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +## Exhibit B - “Incompatible With Secondary Licenses” Notice + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + +---------------------------------------------------------------------- + +--- Ryujinx --- + +MIT License + +Copyright (c) Ryujinx Team and Contributors + +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. + +--- RPCS3 --- + +GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) 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 +this service 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 make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. 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. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + 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 +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + {description} + Copyright (C) {year} {fullname} + + 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 2 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, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision 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, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + {signature of Ty Coon}, 1 April 1989 + Ty Coon, President of Vice + +This 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. + +--- PCSX2 --- + +GNU GENERAL PUBLIC LICENSE +Version 3, 29 June 2007 +Copyright © 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. + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +Also add information on how to contact you by electronic and paper mail. +If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. +The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”. +You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . +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 . + +PCSX2 - PS2 Emulator for PCs +Copyright © 2002-2024 PCSX2 Dev Team +PCSX2 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. +PCSX2 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 PCSX2. If not, see http://www.gnu.org/licenses/. +PCSX2 contains code written by, and copyrighted by third parties. The copyright statements and licenses for the included third-party code is included below. +cpuinfo - https://github.com/pytorch/cpuinfo +Copyright (c) 2019 Google LLC +Copyright (c) 2017-2018 Facebook Inc. +Copyright (C) 2012-2017 Georgia Institute of Technology +Copyright (C) 2010-2012 Marat Dukhan + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +cubeb - https://github.com/mozilla/cubeb +Copyright 2011 Mozilla Foundation + +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +D3D12 Memory Allocator - https://github.com/GPUOpen-LibrariesAndSDKs/D3D12MemoryAllocator +Copyright (c) 2019-2022 Advanced Micro Devices, Inc. All rights reserved. + +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. +Discord-RPC - https://github.com/discord/discord-rpc +Copyright 2017 Discord, Inc. + +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. +fast_float - https://github.com/fastfloat/fast_float +MIT License + +Copyright (c) 2021 The fast_float authors + +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. +fmt - https://github.com/fmtlib/fmt +Copyright (c) 2012 - present, Victor Zverovich + +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. + +--- Optional exception to the license --- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into a machine-executable object form of such +source code, you may redistribute such embedded portions in such object form +without including the above copyright and permission notices. +glslang - https://github.com/KhronosGroup/glslang +Here, glslang proper means core GLSL parsing, HLSL parsing, and SPIR-V code +generation. Glslang proper requires use of two licenses, one that covers +non-preprocessing and an additional one that covers preprocessing. + +Bison was removed long ago. You can build glslang from the source grammar, +using tools of your choice, without using bison or any bison files. + +Other parts, outside of glslang proper, include: + +- gl_types.h, only needed for OpenGL-like reflection, and can be left out of + a parse and codegen project. See it for its license. + +- update_glslang_sources.py, which is not part of the project proper and does + not need to be used. + +- the SPIR-V "remapper", which is optional, but has the same license as + glslang proper + +- Google tests and SPIR-V tools, and anything in the external subdirectory + are external and optional; see them for their respective licenses. + +-------------------------------------------------------------------------------- + +The core of glslang-proper, minus the preprocessor is licenced as follows: + +// +// Copyright (C) 2015-2018 Google, Inc. +// Copyright (C) +// +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions +// are met: +// +// Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// +// Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following +// disclaimer in the documentation and/or other materials provided +// with the distribution. +// +// Neither the name of 3Dlabs Inc. Ltd. nor the names of its +// contributors may be used to endorse or promote products derived +// from this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +// COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. +// + +-------------------------------------------------------------------------------- + +The preprocessor has the core license stated above, plus an additional licence: + +/****************************************************************************\ +Copyright (c) 2002, NVIDIA Corporation. + +NVIDIA Corporation("NVIDIA") supplies this software to you in +consideration of your agreement to the following terms, and your use, +installation, modification or redistribution of this NVIDIA software +constitutes acceptance of these terms. If you do not agree with these +terms, please do not use, install, modify or redistribute this NVIDIA +software. + +In consideration of your agreement to abide by the following terms, and +subject to these terms, NVIDIA grants you a personal, non-exclusive +license, under NVIDIA's copyrights in this original NVIDIA software (the +"NVIDIA Software"), to use, reproduce, modify and redistribute the +NVIDIA Software, with or without modifications, in source and/or binary +forms; provided that if you redistribute the NVIDIA Software, you must +retain the copyright notice of NVIDIA, this notice and the following +text and disclaimers in all such redistributions of the NVIDIA Software. +Neither the name, trademarks, service marks nor logos of NVIDIA +Corporation may be used to endorse or promote products derived from the +NVIDIA Software without specific prior written permission from NVIDIA. +Except as expressly stated in this notice, no other rights or licenses +express or implied, are granted by NVIDIA herein, including but not +limited to any patent rights that may be infringed by your derivative +works or by other works in which the NVIDIA Software may be +incorporated. No hardware is licensed hereunder. + +THE NVIDIA SOFTWARE IS BEING PROVIDED ON AN "AS IS" BASIS, WITHOUT +WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, +INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR +ITS USE AND OPERATION EITHER ALONE OR IN COMBINATION WITH OTHER +PRODUCTS. + +IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY SPECIAL, INDIRECT, +INCIDENTAL, EXEMPLARY, CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, LOST PROFITS; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) OR ARISING IN ANY WAY +OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE +NVIDIA SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, +TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF +NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +\****************************************************************************/ +Shaderc - https://github.com/google/shaderc +SPIRV-Tools - https://github.com/KhronosGroup/SPIRV-Tools + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +SPIRV-Headers - https://github.com/KhronosGroup/SPIRV-Headers +Files: All files except for those called out below. +Copyright (c) 2015-2024 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS +KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS +SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT + https://www.khronos.org/registry/ + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. + +--- + +Files: include/spirv/spir-v.xml +Copyright (c) 2015-2024 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are 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 Materials. + +THE MATERIALS ARE 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 +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. + +--- + +Files: tools/buildHeaders/jsoncpp/* +The JsonCpp library's source code, including accompanying documentation, +tests and demonstration applications, are licensed under the following +conditions... + +The author (Baptiste Lepilleur) explicitly disclaims copyright in all +jurisdictions which recognize such a disclaimer. In such jurisdictions, +this software is released into the Public Domain. + +In jurisdictions which do not recognize Public Domain property (e.g. Germany as of +2010), this software is Copyright (c) 2007-2010 by Baptiste Lepilleur, and is +released under the terms of the MIT License (see below). + +In jurisdictions which recognize Public Domain property, the user of this +software may choose to accept it either as 1) Public Domain, 2) under the +conditions of the MIT License (see below), or 3) under the terms of dual +Public Domain/MIT License conditions described here, as they choose. + +The MIT License is about as close to Public Domain as a license can get, and is +described in clear, concise terms at: + + http://en.wikipedia.org/wiki/MIT_License + +The full text of the MIT License follows: + +======================================================================== +Copyright (c) 2007-2010 Baptiste Lepilleur + +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. +======================================================================== + +--- +Dear ImGui - https://github.com/ocornut/imgui +The MIT License (MIT) + +Copyright (c) 2014-2019 Omar Cornut + +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. +FreeSurround - https://hydrogenaud.io/index.php/topic,52235.0.html +Copyright (C) 2007-2010 Christian Kothe + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) 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 +this service 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 make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. 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. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + 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 +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 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, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision 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, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This 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. +FreeType - https://freetype.org/index.html + The FreeType Project LICENSE + ---------------------------- + + 2006-Jan-27 + + Copyright 1996-2002, 2006 by + David Turner, Robert Wilhelm, and Werner Lemberg + + + +Introduction +============ + + The FreeType Project is distributed in several archive packages; + some of them may contain, in addition to the FreeType font engine, + various tools and contributions which rely on, or relate to, the + FreeType Project. + + This license applies to all files found in such packages, and + which do not fall under their own explicit license. The license + affects thus the FreeType font engine, the test programs, + documentation and makefiles, at the very least. + + This license was inspired by the BSD, Artistic, and IJG + (Independent JPEG Group) licenses, which all encourage inclusion + and use of free software in commercial and freeware products + alike. As a consequence, its main points are that: + + o We don't promise that this software works. However, we will be + interested in any kind of bug reports. (`as is' distribution) + + o You can use this software for whatever you want, in parts or + full form, without having to pay us. (`royalty-free' usage) + + o You may not pretend that you wrote this software. If you use + it, or only parts of it, in a program, you must acknowledge + somewhere in your documentation that you have used the + FreeType code. (`credits') + + We specifically permit and encourage the inclusion of this + software, with or without modifications, in commercial products. + We disclaim all warranties covering The FreeType Project and + assume no liability related to The FreeType Project. + + Finally, many people asked us for a preferred form for a + credit/disclaimer to use in compliance with this license. We thus + encourage you to use the following text: + + """ + Portions of this software are copyright © The FreeType + Project (www.freetype.org). All rights reserved. + """ + + Please replace with the value from the FreeType version you + actually use. + + +Legal Terms +=========== + +0. Definitions +-------------- + + Throughout this license, the terms `package', `FreeType Project', + and `FreeType archive' refer to the set of files originally + distributed by the authors (David Turner, Robert Wilhelm, and + Werner Lemberg) as the `FreeType Project', be they named as alpha, + beta or final release. + + `You' refers to the licensee, or person using the project, where + `using' is a generic term including compiling the project's source + code as well as linking it to form a `program' or `executable'. + This program is referred to as `a program using the FreeType + engine'. + + This license applies to all files distributed in the original + FreeType Project, including all source code, binaries and + documentation, unless otherwise stated in the file in its + original, unmodified form as distributed in the original archive. + If you are unsure whether or not a particular file is covered by + this license, you must contact us to verify this. + + The FreeType Project is copyright (C) 1996-2000 by David Turner, + Robert Wilhelm, and Werner Lemberg. All rights reserved except as + specified below. + +1. No Warranty +-------------- + + THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO + USE, OF THE FREETYPE PROJECT. + +2. Redistribution +----------------- + + This license grants a worldwide, royalty-free, perpetual and + irrevocable right and license to use, execute, perform, compile, + display, copy, create derivative works of, distribute and + sublicense the FreeType Project (in both source and object code + forms) and derivative works thereof for any purpose; and to + authorize others to exercise some or all of the rights granted + herein, subject to the following conditions: + + o Redistribution of source code must retain this license file + (`FTL.TXT') unaltered; any additions, deletions or changes to + the original files must be clearly indicated in accompanying + documentation. The copyright notices of the unaltered, + original files must be preserved in all copies of source + files. + + o Redistribution in binary form must provide a disclaimer that + states that the software is based in part of the work of the + FreeType Team, in the distribution documentation. We also + encourage you to put an URL to the FreeType web page in your + documentation, though this isn't mandatory. + + These conditions apply to any software derived from or based on + the FreeType Project, not just the unmodified files. If you use + our work, you must acknowledge us. However, no fee need be paid + to us. + +3. Advertising +-------------- + + Neither the FreeType authors and contributors nor you shall use + the name of the other for commercial, advertising, or promotional + purposes without specific prior written permission. + + We suggest, but do not require, that you use one or more of the + following phrases to refer to this software in your documentation + or advertising materials: `FreeType Project', `FreeType Engine', + `FreeType library', or `FreeType Distribution'. + + As you have not signed this license, you are not required to + accept it. However, as the FreeType Project is copyrighted + material, only this license, or another one contracted with the + authors, grants you the right to use, distribute, and modify it. + Therefore, by using, distributing, or modifying the FreeType + Project, you indicate that you understand and accept all the terms + of this license. + +4. Contacts +----------- + + There are two mailing lists related to FreeType: + + o freetype@nongnu.org + + Discusses general use and applications of FreeType, as well as + future and wanted additions to the library and distribution. + If you are looking for support, start in this list if you + haven't found anything to help you in the documentation. + + o freetype-devel@nongnu.org + + Discusses bugs, as well as engine internals, design issues, + specific licenses, porting, etc. + + Our home page can be found at + + https://www.freetype.org +HarfBuzz - https://github.com/harfbuzz/harfbuzz +HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. +For parts of HarfBuzz that are licensed under different licenses see individual +files names COPYING in subdirectories where applicable. + +Copyright © 2010-2022 Google, Inc. +Copyright © 2015-2020 Ebrahim Byagowi +Copyright © 2019,2020 Facebook, Inc. +Copyright © 2012,2015 Mozilla Foundation +Copyright © 2011 Codethink Limited +Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) +Copyright © 2009 Keith Stribley +Copyright © 2011 Martin Hosken and SIL International +Copyright © 2007 Chris Wilson +Copyright © 2005,2006,2020,2021,2022,2023 Behdad Esfahbod +Copyright © 2004,2007,2008,2009,2010,2013,2021,2022,2023 Red Hat, Inc. +Copyright © 1998-2005 David Turner and Werner Lemberg +Copyright © 2016 Igalia S.L. +Copyright © 2022 Matthias Clasen +Copyright © 2018,2021 Khaled Hosny +Copyright © 2018,2019,2020 Adobe, Inc +Copyright © 2013-2015 Alexei Podtelezhnikov + +For full copyright notices consult the individual files in the package. + + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +kissfft - https://github.com/mborgerding/kissfft +Copyright (c) 2003-2010 Mark Borgerding . All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors +may be used to endorse or promote products derived from this software without +specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE +USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +libchdr - https://github.com/rtissera/libchdr +Copyright Romain Tisserand +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of the nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +libjpeg - https://ijg.org/ +The authors make NO WARRANTY or representation, either express or implied, +with respect to this software, its quality, accuracy, merchantability, or +fitness for a particular purpose. This software is provided "AS IS", and you, +its user, assume the entire risk as to its quality and accuracy. + +This software is copyright (C) 1991-2024, Thomas G. Lane, Guido Vollbeding. +All Rights Reserved except as specified below. + +Permission is hereby granted to use, copy, modify, and distribute this +software (or portions thereof) for any purpose, without fee, subject to these +conditions: +(1) If any part of the source code for this software is distributed, then this +README file must be included, with this copyright and no-warranty notice +unaltered; and any additions, deletions, or changes to the original files +must be clearly indicated in accompanying documentation. +(2) If only executable code is distributed, then the accompanying +documentation must state that "this software is based in part on the work of +the Independent JPEG Group". +(3) Permission for use of this software is granted only if the user accepts +full responsibility for any undesirable consequences; the authors accept +NO LIABILITY for damages of any kind. + +These conditions apply to any software derived from or based on the IJG code, +not just to the unmodified library. If you use our work, you ought to +acknowledge us. + +Permission is NOT granted for the use of any IJG author's name or company name +in advertising or publicity relating to this software or products derived from +it. This software may be referred to only as "the Independent JPEG Group's +software". + +We specifically permit and encourage the use of this software as the basis of +commercial products, provided that all warranty or liability claims are +assumed by the product vendor. +LLVM - https://github.com/llvm/llvm-project + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +---- LLVM Exceptions to the Apache 2.0 License ---- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. +LZMA SDK - https://7-zip.org/sdk.html +LZMA SDK is placed in the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or distribute the +original LZMA SDK code, either in source code form or as a compiled binary, +for any purpose, commercial or non-commercial, and by any means. +LZ4 - https://github.com/lz4/lz4 + LZ4 - Fast LZ compression algorithm + Copyright (C) 2011-2020, Yann Collet. + + BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following disclaimer + in the documentation and/or other materials provided with the + distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + You can contact the author at : + - LZ4 homepage : http://www.lz4.org + - LZ4 source repository : https://github.com/lz4/lz4 +PromptFont - +https://shinmera.github.io/promptfont/ +This Font Software is licensed under the SIL Open Font License, +Version 1.1. This license is copied below, and is also available +with a FAQ at http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. +rcheevos - https://github.com/RetroAchievements/rcheevos/ +MIT License + +Copyright (c) 2019 RetroAchievements.org + +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. +libpng - https://github.com/glennrp/libpng +Copyright (c) 2018-2023 Cosmin Truta + Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson + Copyright (c) 1996-1997 Andreas Dilger + Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + + PNG Reference Library License version 2 + --------------------------------------- + + * Copyright (c) 1995-2023 The PNG Reference Library Authors. + * Copyright (c) 2018-2023 Cosmin Truta. + * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson. + * Copyright (c) 1996-1997 Andreas Dilger. + * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + + The software is supplied "as is", without warranty of any kind, + express or implied, including, without limitation, the warranties + of merchantability, fitness for a particular purpose, title, and + non-infringement. In no event shall the Copyright owners, or + anyone distributing the software, be liable for any damages or + other liability, whether in contract, tort or otherwise, arising + from, out of, or in connection with the software, or the use or + other dealings in the software, even if advised of the possibility + of such damage. + + Permission is hereby granted to use, copy, modify, and distribute + this software, or portions hereof, for any purpose, without fee, + subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you + must not claim that you wrote the original software. If you + use this software in a product, an acknowledgment in the product + documentation would be appreciated, but is not required. + + 2. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + + 3. This Copyright notice may not be removed or altered from any + source or altered source distribution. +libwebp - https://github.com/webmproject/libwebp +Copyright (c) 2010, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +libzip - https://libzip.org/ +Copyright (C) 1999-2020 Dieter Baron and Thomas Klausner + +The authors can be contacted at + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. The names of the authors may not be used to endorse or promote + products derived from this software without specific prior + written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS +OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE +GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +simpleini - https://github.com/brofield/simpleini +The MIT License (MIT) + +Copyright (c) 2006-2013 Brodie Thiesfield + +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. +RapidJSON - https://rapidjson.org/ +Tencent is pleased to support the open source community by making +RapidJSON available. + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. +All rights reserved. + +If you have downloaded a copy of the RapidJSON binary from Tencent, please note +that the RapidJSON binary is licensed under the MIT License. If you have +downloaded a copy of the RapidJSON source code from Tencent, please note that +RapidJSON source code is licensed under the MIT License, except for the +third-party components listed below which are subject to different license +terms. Your integration of RapidJSON into your own projects may require +compliance with the MIT License, as well as the other licenses applicable +to the third-party components included within RapidJSON. + +A copy of the MIT License is included in this file. + +Other dependencies and licenses: + +Open Source Software Licensed Under the BSD License: +-------------------------------------------------------------------- + +The msinttypes r29 +Copyright (c) 2006-2013 Alexander Chemeris +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +* Neither the name of copyright holder nor the names of its contributors may be + used to endorse or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +Terms of the MIT License: +-------------------------------------------------------------------- + +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. +Rapid YAML - https://github.com/biojppm/rapidyaml +Copyright (c) 2018, Joao Paulo Magalhaes + +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. +SoundTouch audio processing library - https://github.com/rspeyer/soundtouch + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +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 this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authoried party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser 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 Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "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 +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY 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 +LIBRARY (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 LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS +SPIRV-Cross - https://github.com/KhronosGroup/SPIRV-Cross + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +StackWalker.cpp +Copyright (c) 2005-2013, Jochen Kalmbach +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. +Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. +Neither the name of Jochen Kalmbach nor the names of its contributors may be +used to endorse or promote products derived from this software without +specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +stb libraries - https://github.com/nothings/stb +These libraries are in the public domain. You can do anything you want with them. You have no legal obligation to do anything else, although I appreciate attribution. They are also licensed under the MIT open source license, if you have lawyers who are unhappy with public domain. Every source file includes an explicit dual-license for you to choose from. +vixl - https://git.linaro.org/arm/vixl.git +LICENCE +======= + +The software in this repository is covered by the following licence. + +// Copyright 2015, VIXL authors +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are met: +// +// * Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// * Neither the name of ARM Limited nor the names of its contributors may be +// used to endorse or promote products derived from this software without +// specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS CONTRIBUTORS "AS IS" AND +// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +xbyak - https://github.com/herumi/xbyak +Copyright (c) 2007 MITSUNARI Shigeo All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the copyright owner nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +xxhash - https://github.com/Cyan4973/xxHash +xxHash Library +Copyright (c) 2012-present, Yann Collet +All rights reserved. + +BSD 2-Clause License (https://www.opensource.org/licenses/bsd-license.php) + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, this + list of conditions and the following disclaimer in the documentation and/or + other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +zlib - https://github.com/madler/zlib + Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu +Zstandard - https://github.com/facebook/zstd +BSD License + +For Zstandard software + +Copyright (c) 2016-present, Facebook, Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name Facebook nor the names of its contributors may be used to + endorse or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Zydis - https://github.com/zyantific/zydis +The MIT License (MIT) + +Copyright (c) 2014-2021 Florian Bernd +Copyright (c) 2014-2021 Joel H ner + +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. +FFmpeg - https://github.com/FFmpeg/FFmpeg + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. https://fsf.org/ + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see https://www.gnu.org/licenses/. + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +https://www.gnu.org/licenses/. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +https://www.gnu.org/licenses/why-not-lgpl.html. + +--- MAME --- + +License + +The MAME project as a whole is made available under the terms of the GNU General Public License, version 2 or later (GPL-2.0+), since it contains code made available under multiple GPL-compatible licenses. A great majority of the source files (over 90% including core files) are made available under the terms of the 3-clause BSD License, and we would encourage new contributors to make their contributions available under the terms of this license. + +Please note that MAME is a registered trademark of Gregory Ember, and permission is required to use the "MAME" name, logo, or wordmark. + +Copyright (c) 1997-2024 MAMEdev and contributors + +This program is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License version 2, as provided in +docs/legal/GPL-2.0. + +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. + +Please see COPYING for more details. + +COPYING: + +MAME is a registered trademark of Gregory Ember. Other trademarks are +property of their respective owners. + +MAME as a whole is made available under the terms of the GNU General +Public License. Individual source files may be made available under +less restrictive licenses, as noted in their respective header +comments. + +Full license texts may be found in docs/legal in source and binary +distributions. + + +MAME +Copyright (c) 1997-2024 MAMEdev and contributors + +This program is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License version 2, as provided +in docs/legal/GPL-2.0. + +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. + + +This software is based in part on the work of the Independent JPEG Group. + + +The contents of the hash directory are dedicated to the public domain +as described in docs/legal/CC0. + +No Copyright + +The person who associated a work with this deed has dedicated the work +to the public domain by waiving all of his or her rights to the work +worldwide under copyright law, including all related and neighboring +rights, to the extent allowed by law. + +You can copy, modify, distribute and perform the work, even for +commercial purposes, all without asking permission. See Other +Information below. + +Other Information + + * In no way are the patent or trademark rights of any person affected + by CC0, nor are the rights that other persons may have in the work + or in how the work is used, such as publicity or privacy rights. + + * Unless expressly stated otherwise, the person who associated a work + with this deed makes no warranties about the work, and disclaims + liability for all uses of the work, to the fullest extent permitted + by applicable law. + + * When using or citing the work, you should not imply endorsement by + the author or the affirmer. + + +Asio C++ Library +Copyright (c) 2003-2024 Christopher M. Kohlhoff (chris at kohlhoff dot com) + +Permission is hereby granted, free of charge, to any person or +organization obtaining a copy of the software and accompanying +documentation covered by this license (the "Software") to use, +reproduce, display, distribute, execute, and transmit the Software, and +to prepare derivative works of the Software, and to permit third-parties +to whom the Software is furnished to do so, all subject to the +following: + +The copyright notices in the Software and this entire statement, +including the above license grant, this restriction and the following +disclaimer, must be included in all copies of the Software, in whole or +in part, and all derivative works of the Software, unless such copies or +derivative works are solely in the form of machine-executable object +code generated by a source language processor. + +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, TITLE AND +NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE +DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, +WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +Berkeley SoftFloat - software implementation of binary floating-point that +conforms to the IEEE Standard for Floating-Point Arithmetic +Copyright 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 The Regents of +the University of California + +FLAC - Free Lossless Audio Codec +Copyright (C) 2000-2009 Josh Coalson +Copyright (C) 2011-2023 Xiph.Org Foundation + +The msinttypes r29 +Copyright (c) 2006-2013 Alexander Chemeris + +Zstandard software +Copyright (c) Meta Platforms, Inc. and affiliates. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +bgfx, bimg and bx +Copyright (c) 2010-2019 Branimir Karadzic + +linenoise.c -- guerrilla line editing library +Copyright (c) 2010, Salvatore Sanfilippo +Copyright (c) 2010, Pieter Noordhuis +Copyright (c) 2011, Steve Bennett + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +Expat +Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and +Clark Cooper +Copyright (c) 2001-2019 Expat maintainers + +Lua - a powerful, fast, lightweight, embeddable scripting language +Copyright (c) 1994-2017 Lua.org, PUC-Rio + +LuaFileSystem - File System Library for Lua +Copyright (c) 2003-2015 Kepler Project + +LuaSQLite 3 - a Lua 5.1 to 5.3 wrapper for the SQLite3 library +Copyright (c) 2002-2016 Tiago Dionizio, Doug Currie + +lua-linenoise +Copyright (c) 2011-2015 Rob Hoelz + +lua_zlib - Lua 5.1 interface to zlib +Copyright (c) 2009 Brian Maher + +OpenGL Mathematics (GLM) +Copyright (c) 2005 -2016 G-Truc Creation + +PortAudio Portable Real-Time Audio Library +Copyright (c) 1999-2006 Ross Bencina and Phil Burk + +PortMidi Portable Real-Time MIDI Library +Copyright (c) 1999-2000 Ross Bencina and Phil Burk +Copyright (c) 2001-2009 Roger B. Dannenberg + +pugixml - a C++ XML processing library +Copyright (c) 2006-2019 Arseny Kapoulkine + +RapidJSON - A fast JSON parser/generator for C++ with both SAX/DOM style API +Copyright (c) 2015 THL A29 Limited, a Tencent company, and Milo Yip. + +Sol - a C++ library binding to Lua +Copyright (c) 2013-2020 Rapptz, ThePhD and contributors + +tap-windows.h +Copyright (C) 2002-2014 OpenVPN Technologies, Inc. + +utf8proc +Copyright (c) 2014-2021 Steven G. Johnson, Jiahao Chen, Tony Kelman, +Jonas Fonseca, and other contributors + +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. + + +LZMA SDK + +LZMA SDK is written and placed in the public domain by Igor Pavlov. + +Some code in LZMA SDK is based on public domain code from another +developers: + 1) PPMd var.H (2001): Dmitry Shkarin + 2) SHA-256: Wei Dai (Crypto++ library) + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute the original LZMA SDK code, either in source code form or as +a compiled binary, for any purpose, commercial or non-commercial, and by +any means. + +LZMA SDK code is compatible with open source licenses, for example, you +can include it to GNU GPL or GNU LGPL code. + + +AsmJit - a lightweight library for machine code generation. +Copyright (c) 2008-2021 The AsmJit Authors + +Nano SVG - Simple stupid SVG parser +Copyright (c) 2013-14 Mikko Mononen memon@inside.org + +Simple DirectMedia Layer +Copyright (C) 1997-2016 Sam Lantinga + +WDL - fft.cpp +Copyright (c) 2006 and later Cockos Incorporated +Copyright (c) 1999 D. J. Bernstein + +zlib data compression library +Copyright (C) 1995-2023 Jean-loup Gailly and Mark Adler + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must + not claim that you wrote the original software. If you use this + software in a product, an acknowledgment in the product + documentation would be appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source + distribution. + + +SQLite + +2001 September 15 + +The author disclaims copyright to this source code. In place of a legal +notice, here is a blessing: + + May you do good and not evil. + May you find forgiveness for yourself and forgive others. + May you share freely, never taking more than you give. + + + +--- PPSSPP --- + +PSPSDK BSD-compatible copyright notice (Some parts of the PSPSDK were used in this emulator (defines, constants, headers)) + +Copyright (c) 2005 adresd +Copyright (c) 2005 Marcus R. Brown +Copyright (c) 2005 James Forshaw +Copyright (c) 2005 John Kelley +Copyright (c) 2005 Jesper Svennevid +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. The names of the authors may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) 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 +this service 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 make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. 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. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + 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 +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 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, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision 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, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This 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. + +--- VITA3K --- + + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) 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 +this service 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 make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. 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. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + 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 +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 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, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision 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, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This 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. + + +--- Dolphin / Primehack --- + +NOTE: Dolphin Primehack are the same. + +Most of Dolphin's original source code is licensed under GPLv2+. Part of the +source code distributed in this repository is derived from other projects and +may have stronger or weaker licensing requirement. Overall, in aggregate, the +entirety of this repository is compatible with the GPLv3 license. + +Per-file licensing information is provided via SPDX tags [1]. The licenses +referenced in these tags can be found in the LICENSES/ directory within this +source repository. + +[1] https://spdx.dev/ + + + +Copyright (c) . All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Creative Commons Legal Code + +CC0 1.0 Universal + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED + HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer +exclusive Copyright and Related Rights (defined below) upon the creator +and subsequent owner(s) (each and all, an "owner") of an original work of +authorship and/or a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for +the purpose of contributing to a commons of creative, cultural and +scientific works ("Commons") that the public can reliably and without fear +of later claims of infringement build upon, modify, incorporate in other +works, reuse and redistribute as freely as possible in any form whatsoever +and for any purposes, including without limitation commercial purposes. +These owners may contribute to the Commons to promote the ideal of a free +culture and the further production of creative, cultural and scientific +works, or to gain reputation or greater distribution for their Work in +part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any +expectation of additional consideration or compensation, the person +associating CC0 with a Work (the "Affirmer"), to the extent that he or she +is an owner of Copyright and Related Rights in the Work, voluntarily +elects to apply CC0 to the Work and publicly distribute the Work under its +terms, with knowledge of his or her Copyright and Related Rights in the +Work and the meaning and intended legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be +protected by copyright and related or neighboring rights ("Copyright and +Related Rights"). Copyright and Related Rights include, but are not +limited to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, + communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); +iii. publicity and privacy rights pertaining to a person's image or + likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data + in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation + thereof, including any amended or successor version of such + directive); and +vii. other similar, equivalent or corresponding rights throughout the + world based on applicable law or treaty, and any national + implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention +of, applicable law, Affirmer hereby overtly, fully, permanently, +irrevocably and unconditionally waives, abandons, and surrenders all of +Affirmer's Copyright and Related Rights and associated claims and causes +of action, whether now known or unknown (including existing as well as +future claims and causes of action), in the Work (i) in all territories +worldwide, (ii) for the maximum duration provided by applicable law or +treaty (including future time extensions), (iii) in any current or future +medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional +purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each +member of the public at large and to the detriment of Affirmer's heirs and +successors, fully intending that such Waiver shall not be subject to +revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason +be judged legally invalid or ineffective under applicable law, then the +Waiver shall be preserved to the maximum extent permitted taking into +account Affirmer's express Statement of Purpose. In addition, to the +extent the Waiver is so judged Affirmer hereby grants to each affected +person a royalty-free, non transferable, non sublicensable, non exclusive, +irrevocable and unconditional license to exercise Affirmer's Copyright and +Related Rights in the Work (i) in all territories worldwide, (ii) for the +maximum duration provided by applicable law or treaty (including future +time extensions), (iii) in any current or future medium and for any number +of copies, and (iv) for any purpose whatsoever, including without +limitation commercial, advertising or promotional purposes (the +"License"). The License shall be deemed effective as of the date CC0 was +applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder +of the License, and in such case Affirmer hereby affirms that he or she +will not (i) exercise any of his or her remaining Copyright and Related +Rights in the Work or (ii) assert any associated claims and causes of +action with respect to the Work, in either case contrary to Affirmer's +express Statement of Purpose. + +4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or + warranties of any kind concerning the Work, express, implied, + statutory or otherwise, including without limitation warranties of + title, merchantability, fitness for a particular purpose, non + infringement, or the absence of latent or other defects, accuracy, or + the present or absence of errors, whether or not discoverable, all to + the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without + limitation any person's Copyright and Related Rights in the Work. + Further, Affirmer disclaims responsibility for obtaining any necessary + consents, permissions or other rights required for any use of the + Work. + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to + this CC0 or use of the Work. + +Creative Commons Legal Code + +CC0 1.0 Universal + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED + HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer +exclusive Copyright and Related Rights (defined below) upon the creator +and subsequent owner(s) (each and all, an "owner") of an original work of +authorship and/or a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for +the purpose of contributing to a commons of creative, cultural and +scientific works ("Commons") that the public can reliably and without fear +of later claims of infringement build upon, modify, incorporate in other +works, reuse and redistribute as freely as possible in any form whatsoever +and for any purposes, including without limitation commercial purposes. +These owners may contribute to the Commons to promote the ideal of a free +culture and the further production of creative, cultural and scientific +works, or to gain reputation or greater distribution for their Work in +part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any +expectation of additional consideration or compensation, the person +associating CC0 with a Work (the "Affirmer"), to the extent that he or she +is an owner of Copyright and Related Rights in the Work, voluntarily +elects to apply CC0 to the Work and publicly distribute the Work under its +terms, with knowledge of his or her Copyright and Related Rights in the +Work and the meaning and intended legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be +protected by copyright and related or neighboring rights ("Copyright and +Related Rights"). Copyright and Related Rights include, but are not +limited to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, + communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); +iii. publicity and privacy rights pertaining to a person's image or + likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data + in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation + thereof, including any amended or successor version of such + directive); and +vii. other similar, equivalent or corresponding rights throughout the + world based on applicable law or treaty, and any national + implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention +of, applicable law, Affirmer hereby overtly, fully, permanently, +irrevocably and unconditionally waives, abandons, and surrenders all of +Affirmer's Copyright and Related Rights and associated claims and causes +of action, whether now known or unknown (including existing as well as +future claims and causes of action), in the Work (i) in all territories +worldwide, (ii) for the maximum duration provided by applicable law or +treaty (including future time extensions), (iii) in any current or future +medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional +purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each +member of the public at large and to the detriment of Affirmer's heirs and +successors, fully intending that such Waiver shall not be subject to +revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason +be judged legally invalid or ineffective under applicable law, then the +Waiver shall be preserved to the maximum extent permitted taking into +account Affirmer's express Statement of Purpose. In addition, to the +extent the Waiver is so judged Affirmer hereby grants to each affected +person a royalty-free, non transferable, non sublicensable, non exclusive, +irrevocable and unconditional license to exercise Affirmer's Copyright and +Related Rights in the Work (i) in all territories worldwide, (ii) for the +maximum duration provided by applicable law or treaty (including future +time extensions), (iii) in any current or future medium and for any number +of copies, and (iv) for any purpose whatsoever, including without +limitation commercial, advertising or promotional purposes (the +"License"). The License shall be deemed effective as of the date CC0 was +applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder +of the License, and in such case Affirmer hereby affirms that he or she +will not (i) exercise any of his or her remaining Copyright and Related +Rights in the Work or (ii) assert any associated claims and causes of +action with respect to the Work, in either case contrary to Affirmer's +express Statement of Purpose. + +4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or + warranties of any kind concerning the Work, express, implied, + statutory or otherwise, including without limitation warranties of + title, merchantability, fitness for a particular purpose, non + infringement, or the absence of latent or other defects, accuracy, or + the present or absence of errors, whether or not discoverable, all to + the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without + limitation any person's Copyright and Related Rights in the Work. + Further, Affirmer disclaims responsibility for obtaining any necessary + consents, permissions or other rights required for any use of the + Work. + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to + this CC0 or use of the Work. + +MIT License + +Copyright (c) + +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. + +--- MelonDS --- + + 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. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + 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 +. + +--- CEMU --- + +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + + +--- Xenia --- + +Copyright (c) 2015, Ben Vanik. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of the project nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL BEN VANIK BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--- XEMU --- + +The QEMU distribution includes both the QEMU emulator and +various firmware files. These are separate programs that are +distributed together for our users' convenience, and they have +separate licenses https://github.com/xemu-project/xemu/tree/master/licenses. + +The following points clarify the license of the QEMU emulator: + +1) The QEMU emulator as a whole is released under the GNU General +Public License, version 2. + +2) Parts of the QEMU emulator have specific licenses which are compatible +with the GNU General Public License, version 2. Hence each source file +contains its own licensing information. Source files with no licensing +information are released under the GNU General Public License, version +2 or (at your option) any later version. + +As of July 2013, contributions under version 2 of the GNU General Public +License (and no later version) are only accepted for the following files +or directories: bsd-user/, linux-user/, hw/vfio/, hw/xen/xen_pt*. + +3) The Tiny Code Generator (TCG) is mostly under the BSD or MIT licenses; + but some parts may be GPLv2 or other licenses. Again, see the + specific licensing information in each source file. + +4) QEMU is a trademark of Fabrice Bellard. + +Fabrice Bellard and the QEMU team + + +--- OpenBOR --- + +Copyright (c) 2003, Roel van Mastbergen & Senile Team +Copyright (c) 2004, OpenBOR Team +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +Neither the name of the Senile Team, OpenBOR Team nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--- ES-DE --- + +Copyright (c) 2024 Northwestern Software AB +Copyright (c) 2020-2024 Leon Styhre +Copyright (c) 2014 Alec Lofquist + +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. + +Other Licences: +https://gitlab.com/es-de/emulationstation-de/-/tree/master/licenses + +--- RetroArch --- + +https://docs.libretro.com/development/licenses/ + +Opera Non-commercial +Cannonball Non-commercial +Dinothawr Non-commercial +FB Alpha Non-commercial +FB Alpha 2012 Non-commercial +FB Alpha 2012 CPS-1 Non-commercial +FB Alpha 2012 CPS-2 Non-commercial +FB Alpha 2012 CPS-3 Non-commercial +FB Alpha 2012 Neo Geo Non-commercial +fMSX Non-commercial +Genesis Plus GX Non-commercial +MAME 2000 MAME (Non-commercial) +MAME 2003 MAME (Non-commercial) +MAME 2003 Midway MAME (Non-commercial) +MAME 2003-Plus MAME (Non-commercial) +MAME 2009 MAME (Non-commercial) +MAME 2010 MAME (Non-commercial) +MAME 2014 MAME (Non-commercial) +MESS 2014 MAME (Non-commercial) +PicoDrive MAME (Non-commercial) +Snes9x Non-commercial +Snes9x 2002 Non-commercial +Snes9x 2005 Non-commercial +Snes9x 2005 Plus Non-commercial +Snes9x 2010 Non-commercial +UME 2014 MAME (Non-commercial) +Libretro License +Lakka Non-commercial +Core License +Dinothawr Non-commercial +FB Alpha Non-commercial +FB Alpha 2012 Non-commercial +FB Alpha 2012 CPS-1 Non-commercial +FB Alpha 2012 CPS-2 Non-commercial +FB Alpha 2012 CPS-3 Non-commercial +FB Alpha 2012 Neo Geo Non-commercial +fMSX Non-commercial +Genesis Plus GX Non-commercial +MAME 2000 MAME (Non-commercial) +MAME 2003 MAME (Non-commercial) +MAME 2003 Midway MAME (Non-commercial) +MAME 2003-Plus MAME (Non-commercial) +MAME 2009 MAME (Non-commercial) +MAME 2010 MAME (Non-commercial) +MAME 2014 MAME (Non-commercial) +MESS 2014 MAME (Non-commercial) +PicoDrive MAME (Non-commercial) +Snes9x Non-commercial +Snes9x 2002 Non-commercial +Snes9x 2005 Non-commercial +Snes9x 2005 Plus Non-commercial +Snes9x 2010 Non-commercial +UME 2014 MAME (Non-commercial) +Libretro¶ +LibRetro API MIT +RetroArch GPLv3 +libretro/docs MIT +libretro/retroarch-assets Attribution 4.0 International (CC BY 4.0) +Cores¶ +3D Engine GPLv3 +2048 Public Domain +Anarch CC0 +Ardens MIT +Atari800 GPLv2 +Beetle bsnes GPLv2 +Beetle Cygne GPLv2 +Beetle GBA GPLv2 +Beetle Lynx zlib, GPLv2 +Beetle NeoPop GPLv2 +Beetle PC-FX GPLv2 +Beetle PCE FAST GPLv2 +Beetle PSX GPLv2 +Beetle PSX HW GPLv2 +Beetle Saturn GPLv2 +Beetle SGX GPLv2 +Beetle VB GPLv2 +blueMSX GPLv2 +bnes GPLv3 +bsnes-mercury Accuracy GPLv3 +bsnes-mercury Balanced GPLv3 +bsnes-mercury Performance GPLv3 +bsnes Accuracy GPLv3 +bsnes Balanced GPLv3 +bsnes C++98 (v085) GPLv3 +bsnes Performance GPLv3 +Caprice32 GPLv2 +ChaiLove MIT +Citra GPLv2 +Citra Canary/Experimental GPLv2 +Craft MIT +CrocoDS MIT +DeSmuME 2015 GPLv2 +DeSmuME GPLv2 +Dolphin GPLv2 +DOSBox GPLv2 +DOSBox Pure GPLv2 +Dummy Core MIT +Dungeon Crawl Stone Soup GPLv2+ +EasyRPG GPLv3 +EightyOne GPLv3 +Elektronika - BK-0010/BK-0011 BSD +EmuSCV GPLv2 +Emux CHIP-8 GPLv2 +Emux GB GPLv2 +Emux NES GPLv2 +Emux SMS GPLv2 +ep128emu GPLv2 +FCEUmm GPLv2 +FFmpeg LGPLv2, GPLv2 +Flycast GPLv2 +FreeIntv GPLv3 +FreeJ2ME GPLv3 +Frodo GPLv2 +Fuse GPLv3 +Gambatte GPLv2 +Game Music Emu GPLv3 +Gearboy GPLv3 +Gearcoleco GPLv3 +Gearsystem GPLv3 +Geolith BSD-3-Clause, MIT +gpSP GPLv2 +GW zlib +Handy zlib +Hatari GPLv2 +higan Accuracy GPLv3 +Imageviewer MIT +Kronos GPLv2 +LowRES NX zlib +Lutro MIT +M2000 GPLv3 +MAME BSD-3-Clause & GNU GPLv2 +MAME 2016 BSD-3-Clause & GNU GPLv2 +melonDS GPLv3 +Mesen GPLv3 +Mesen-S GPLv3 +Meteor GPLv3 +mGBA MPLv2.0 +MicroW8 Unlicense +mpv GPLv3 +Mr.Boom MIT +Mupen64Plus GPLv3 +Mupen64Plus GLES3 GPLv3 +Neko Project II +Neko Project II Kai MIT +Nestopia UE GPLv2 +Numero GPLv2 +nSide Balanced GPLv3 +NXEngine GPLv3 +O2EM Artistic License +OpenLara BSD-2-Clause +Opera Non-commercial +P-UAE GPLv2 +ParaLLEl N64 GPLv3 +PCem GPLv2 +PCSX ReARMed GPLv2 +PCSX ReARMed [Interpreter] GPLv2 +PocketCDG MIT +PokeMini GPLv3 +PPSSPP GPLv2 +PrBoom GPLv2 +ProSystem GPLv2 +PX68k kero_src.txt +QuickNES GPLv2 +Redream (libretro fork) GPLv3 +REminiscence GPLv3 +RemoteJoy GPLv2 +Remote RetroPad MIT +RVVM GPLv3, MPLv2.0 +SameBoy MIT +SameDuck MIT +SAME_CDI GPLv2 +ScummVM GPLv2 +Stella GPLv2 +TempGBA GPLv2 +TGB Dual GPLv2 +The Powder Toy GPLv3 +Theodore GPLv3 +TyrQuake GPLv2 +Uzem GPLv3 +VaporSpec MIT +VBA-M GPLv2 +VBA Next GPLv2 +vecx GPLv3 +VeMUlator GPLv3 +VICE C64 GPLv2 +VICE C128 GPLv2 +VICE PLUS4 GPLv2 +VICE VIC20 GPLv2 +Video Processor BSD-2-Clause +Vircon32 BSD-3-Clause +Virtual Jaguar GPLv3 +VirtualXT zlib-acknowledgement +XRick GPLv3 +YabaSanshiro GPLv2 +Yabause GPLv2 + +--- GZDOOM --- + + 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. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + 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 +. + +--- SCUMMVM --- + + 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. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + 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 +. + +--- Solarus --- + + 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. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + 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 +. + +--- IKEMANGO --- + +MIT License + +Copyright (c) 2016 Suehiro +Copyright (c) 2018 K4thos +Copyright (c) 2018 ShinLucho +Copyright (c) 2018 NeatUnsou +Copyright (c) 2019 Windblade +Copyright (c) 2019 Dan +Copyright (c) 2019 Kidcy +Copyright (c) 2020 Wintermourn +Copyright (c) 2020 Shiyo Kakuge +Copyright (c) 2021 Kamekaze +Copyright (c) 2021 two4teezee +Copyright (c) 2021 Super +Copyright (c) 2022 Eiton +Copyright (c) 2022 Sam Hocevar +Copyright (c) 2022 GaryCXJk +Copyright (c) 2022 Lazin3ss +Copyright (c) 2022 potsmugen +Copyright (c) 2023 BwdYeti +Copyright (c) 2023 fantasma +Copyright (c) 2023 Wftk + +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. + +The MIT License applies to the Ikemen GO engine and the scripts in this repo. + +---------------------------------------------------------------------------- + +以下に定める条件に従い、本ソフトウェアおよび関連文書のファイル(以下「ソフトウェア」) +の複製を取得するすべての人に対し、ソフトウェアを無制限に扱うことを無償で許可します。 +これには、ソフトウェアの複製を使用、複写、変更、結合、掲載、頒布、サブライセンス、および +または販売する権利、およびソフトウェアを提供する相手に同じことを許可する権利も無制限に含まれます。 + +上記の著作権表示および本許諾表示を、ソフトウェアのすべての複製または重要な部分に記載するものとします。 + +ソフトウェアは「現状のまま」で、明示であるか暗黙であるかを問わず、何らの保証もなく提供されます。 +ここでいう保証とは、商品性、特定の目的への適合性、および権利非侵害についての保証も含みますが、 +それに限定されるものではありません。 作者または著作権者は、契約行為、不法行為、またはそれ以外であろうと、 +ソフトウェアに起因または関連し、あるいはソフトウェアの使用またはその他の扱いによって生じる一切の請求、損害、 +その他の義務について何らの責任も負わないものとします。 + +---------------------------------------------------------------------------- + +Work contributed to Ikemen GO by various artists is licensed under a Creative Commons Attribution 3.0 Unported License. +http://creativecommons.org/licenses/by/3.0/deed.en_US +The license applies to following assets: +- The "default-3x5" font by Gacel. +- The icon/logo of the engine by Cylia Margatroid. + +---------------------------------------------------------------------------- + +On release builds the engine is packed with more assets that could have different licences. +If you are using a release build check the "ScreenpackLicence.txt" file for more info. + +--- SAM Coupé emulator --- + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) 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 +this service 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 make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. 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. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + 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 +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 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, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision 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, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This 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. + +--- XRoar, a Dragon and Tandy 8-bit computer emulator --- + +Redistribution + +License: GNU GPL version 3 or later . +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. + +--- SDLTRS --- + +BSD 2-Clause License + +Copyright (C) 2006-2011, Mark Grebe +Copyright (C) 2018-2024, Jens Guenther +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + + +--- oricutron --- + +GNU GENERAL PUBLIC LICENSE + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) 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 this service 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 make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. 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. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. +b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. +c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + +a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, +b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, +c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), 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 distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the 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 a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE 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. + +END OF TERMS AND CONDITIONS + +--- Supermodel --- + + The source code is freely available under the terms of the GNU General Public License 3. + +--- EKA2L1 --- + + 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. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + 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 +. + +--- RAZE --- + +ZDoom, GZDoom Copyright (c) 1998-2022 ZDoom + GZDoom teams, and contributors + +Doom Source (c) 1997 id Software, Raven Software, and contributors + +EDuke32 and VoidSW Source (c) 2005-2020 EDuke32 teams, and contributors + +NBlood source (c) 2019-2020 Nuke.YKT + +PCExhumed source (c) 2019-2020 sirlemonhead, Nuke.YKT + +BuildGDX (c) 2020 + +Duke Nukem 3D Source (c) 1996-2003 3D Realms + +Shadow Warrior Source (c) 1997-2005 3D Realms + +"Build Engine & Tools" Copyright (c) 1993-1997 Ken Silverman Ken Silverman's official web site: http://www.advsys.net/ken See the included license file "BUILDLIC.TXT" for license info. + +Please see license files for individual contributor licenses + +Special thanks to Coraline of the 3DGE team for allowing us to use her README.md as a template for this one. +Non-Build code is licensed under the GPL v2 +https://www.gnu.org/licenses/old-licenses/gpl-2.0.html + + +BUILD SOURCE CODE LICENSE TERMS: 06/20/2000 + +[1] I give you permission to make modifications to my Build source and + distribute it, BUT: + +[2] Any derivative works based on my Build source may be distributed ONLY + through the INTERNET. + +[3] Distribution of any derivative works MUST be done completely FREE of + charge - no commercial exploitation whatsoever. + +[4] Anything you distribute which uses a part of my Build Engine source + code MUST include: + + [A] The following message somewhere in the archive: + + // "Build Engine & Tools" Copyright (c) 1993-1997 Ken Silverman + // Ken Silverman's official web site: "http://www.advsys.net/ken" + // See the included license file "BUILDLIC.TXT" for license info. + + [B] This text file "BUILDLIC.TXT" along with it. + + [C] Any source files that you modify must include this message as well: + + // This file has been modified from Ken Silverman's original release + +[5] The use of the Build Engine for commercial purposes will require an + appropriate license arrangement with me. Contact information is + on my web site. + +[6] I take no responsibility for damage to your system. + +[7] Technical support: Before contacting me with questions, please read + and do ALL of the following! + + [A] Look through ALL of my text files. There are 7 of them (including this + one). I like to think that I wrote them for a reason. You will find + many of your answers in the history section of BUILD.TXT and + BUILD2.TXT (they're located inside SRC.ZIP). + + [B] If that doesn't satisfy you, then try going to: + + "http://www.advsys.net/ken/buildsrc" + + where I will maintain a Build Source Code FAQ (or perhaps I might + just provide a link to a good FAQ). + + [C] I am willing to respond to questions, but ONLY if they come at a rate + that I can handle. + + PLEASE TRY TO AVOID ASKING DUPLICATE QUESTIONS! + + As my line of defense, I will post my current policy about + answering Build source questions (right below the E-mail address + on my web site.) You can check there to see if I'm getting + overloaded with questions or not. + + If I'm too busy, it might say something like this: + + I'm too busy to answer Build source questions right now. + Sorry, but don't expect a reply from me any time soon. + + If I'm open for Build source questions, please state your question + clearly and don't include any unsolicited attachments unless + they're really small (like less than 50k). Assume that I have + a 28.8k modem. Also, don't leave out important details just + to make your question appear shorter - making me guess what + you're asking doesn't save me time! + +-Ken S. (official web site: http://www.advsys.net/ken) + +--- linapple --- + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) 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 +this service 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 make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. 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. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + 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 +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 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, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision 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, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This 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. + +--- gsplus --- + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) 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 +this service 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 make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. 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. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + END OF TERMS AND CONDITIONS + +--- shadPS4 --- + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) 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 +this service 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 make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. 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. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + 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 +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 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, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision 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, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This 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. + +--- Lime3DS --- + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) 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 +this service 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 make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. 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. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + 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 +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 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, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision 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, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This 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. + + +The icons used in this project have the following licenses: + +Icon Name | License | Origin/Author +--- | --- | --- +checked.png | CC BY-ND 3.0 | https://icons8.com +connected.png | CC BY-ND 3.0 | https://icons8.com +connected_notification.png | CC BY-ND 3.0 | https://icons8.com +disconnected.png | CC BY-ND 3.0 | https://icons8.com +failed.png | CC BY-ND 3.0 | https://icons8.com +lock.png | CC BY-ND 3.0 | https://icons8.com +plus_folder.png | CC BY-ND 3.0 | https://icons8.com +bad_folder.png | CC BY-ND 3.0 | https://icons8.com +chip.png | CC BY-ND 3.0 | https://icons8.com +folder.png | CC BY-ND 3.0 | https://icons8.com +plus.png (Default, Dark) | CC0 1.0 | Designed by BreadFish64 from the Citra team +plus.png (Colorful, Colorful Dark) | CC BY-ND 3.0 | https://icons8.com +sd_card.png | CC BY-ND 3.0 | https://icons8.com +star.png | CC BY-ND 3.0 | https://icons8.com + + +--- PortMaster --- + +MIT License + +Copyright (c) 2021 christianhaitian + +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. + +--- steam-rom-manager --- + + 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 +. + + +--- ART AND ASSESTS --- + + +--- Kenney.nl --- + +RetroDECK Team owns a seperate donation license. + +Licenses: CC0 & CC1. + + +--- Pixel UI Theme for Godot --- + +RetroDECK Team owns a license. + + +--- Pixel Sans 13 --- + +Licenses: Creative Commons + + +--- Pixelitos --- + +(We also got a personal blessing from ItzSelenux to use it) + +MIT License + +Copyright (c) 2022 ItzSelenux + +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. + + +--- Mini Banner --- + +Pixel Art is made by the group: Weestuarty, DerSchlachter (LaunchBox), Dan Patrick. + +Permission by representive Weestuarty to use in RetroDECK. + +--- Sanke design for Chinese new year --- + +Designed by Freepik +https://support.freepik.com/s/article/Attribution-How-when-and-where + +--- Dungeon Crawl Stone Soup --- + +CC0 + +--- Steam Deck & Steam Deck Logo --- + +The Steam Deck logo and Steam Deck device is a registered trademark of Valve Corporation. This project is in no way officially affiliated with Valve. + +--- Other Trademarks in Documentation and Wiki --- + +All trademarks, logos, controller images and brand names are the property of their respective owners. All company, product and service names used in this project are for identification purposes only. Use of these names, trademarks and brands does not imply endorsement. diff --git a/rd-submodules/boilr/cargo-lock.json b/rd-submodules/boilr/cargo-lock.json deleted file mode 100644 index 24933d74..00000000 --- a/rd-submodules/boilr/cargo-lock.json +++ /dev/null @@ -1,5325 +0,0 @@ -[ - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ab_glyph/ab_glyph-0.2.21.crate", - "sha256": "5110f1c78cf582855d895ecd0746b653db010cec6d9f5575293f27934d980a39", - "dest": "cargo/vendor/ab_glyph-0.2.21" - }, - { - "type": "inline", - "contents": "{\"package\": \"5110f1c78cf582855d895ecd0746b653db010cec6d9f5575293f27934d980a39\", \"files\": {}}", - "dest": "cargo/vendor/ab_glyph-0.2.21", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ab_glyph_rasterizer/ab_glyph_rasterizer-0.1.8.crate", - "sha256": "c71b1793ee61086797f5c80b6efa2b8ffa6d5dd703f118545808a7f2e27f7046", - "dest": "cargo/vendor/ab_glyph_rasterizer-0.1.8" - }, - { - "type": "inline", - "contents": "{\"package\": \"c71b1793ee61086797f5c80b6efa2b8ffa6d5dd703f118545808a7f2e27f7046\", \"files\": {}}", - "dest": "cargo/vendor/ab_glyph_rasterizer-0.1.8", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/accesskit/accesskit-0.11.0.crate", - "sha256": "02c98a5d094590335462354da402d754fe2cb78f0e6ce5024611c28ed539c1de", - "dest": "cargo/vendor/accesskit-0.11.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"02c98a5d094590335462354da402d754fe2cb78f0e6ce5024611c28ed539c1de\", \"files\": {}}", - "dest": "cargo/vendor/accesskit-0.11.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/accesskit_consumer/accesskit_consumer-0.15.0.crate", - "sha256": "ca541e0fdb600916d196a940228df99b86d804fd2e6ef13894d7814f2799db43", - "dest": "cargo/vendor/accesskit_consumer-0.15.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"ca541e0fdb600916d196a940228df99b86d804fd2e6ef13894d7814f2799db43\", \"files\": {}}", - "dest": "cargo/vendor/accesskit_consumer-0.15.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/accesskit_macos/accesskit_macos-0.7.0.crate", - "sha256": "cfea17e5bb5dcbfcf5b256ab2f5889a3e6f6582de78b9db9b6689adad3b002f3", - "dest": "cargo/vendor/accesskit_macos-0.7.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"cfea17e5bb5dcbfcf5b256ab2f5889a3e6f6582de78b9db9b6689adad3b002f3\", \"files\": {}}", - "dest": "cargo/vendor/accesskit_macos-0.7.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/accesskit_unix/accesskit_unix-0.5.0.crate", - "sha256": "b4d1517421278cc8e67422d0786a18cf4291093ebe49eadf1cf989ff80e57f90", - "dest": "cargo/vendor/accesskit_unix-0.5.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"b4d1517421278cc8e67422d0786a18cf4291093ebe49eadf1cf989ff80e57f90\", \"files\": {}}", - "dest": "cargo/vendor/accesskit_unix-0.5.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/accesskit_windows/accesskit_windows-0.14.0.crate", - "sha256": "e11c7f177739f23bd19bb856e4a64fdd96eb8638ec0a6a6dde9a7019a9e91c53", - "dest": "cargo/vendor/accesskit_windows-0.14.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"e11c7f177739f23bd19bb856e4a64fdd96eb8638ec0a6a6dde9a7019a9e91c53\", \"files\": {}}", - "dest": "cargo/vendor/accesskit_windows-0.14.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/accesskit_winit/accesskit_winit-0.14.0.crate", - "sha256": "3f741b54fba827e49a73d55fdd43e8d3d5133aa7710a48581013c7802f232b83", - "dest": "cargo/vendor/accesskit_winit-0.14.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"3f741b54fba827e49a73d55fdd43e8d3d5133aa7710a48581013c7802f232b83\", \"files\": {}}", - "dest": "cargo/vendor/accesskit_winit-0.14.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/addr2line/addr2line-0.19.0.crate", - "sha256": "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97", - "dest": "cargo/vendor/addr2line-0.19.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97\", \"files\": {}}", - "dest": "cargo/vendor/addr2line-0.19.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/adler/adler-1.0.2.crate", - "sha256": "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe", - "dest": "cargo/vendor/adler-1.0.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe\", \"files\": {}}", - "dest": "cargo/vendor/adler-1.0.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ahash/ahash-0.7.6.crate", - "sha256": "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47", - "dest": "cargo/vendor/ahash-0.7.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47\", \"files\": {}}", - "dest": "cargo/vendor/ahash-0.7.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ahash/ahash-0.8.3.crate", - "sha256": "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f", - "dest": "cargo/vendor/ahash-0.8.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f\", \"files\": {}}", - "dest": "cargo/vendor/ahash-0.8.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/aho-corasick/aho-corasick-1.0.1.crate", - "sha256": "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04", - "dest": "cargo/vendor/aho-corasick-1.0.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04\", \"files\": {}}", - "dest": "cargo/vendor/aho-corasick-1.0.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/android-activity/android-activity-0.4.1.crate", - "sha256": "7c77a0045eda8b888c76ea473c2b0515ba6f471d318f8927c5c72240937035a6", - "dest": "cargo/vendor/android-activity-0.4.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"7c77a0045eda8b888c76ea473c2b0515ba6f471d318f8927c5c72240937035a6\", \"files\": {}}", - "dest": "cargo/vendor/android-activity-0.4.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/android-properties/android-properties-0.2.2.crate", - "sha256": "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04", - "dest": "cargo/vendor/android-properties-0.2.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04\", \"files\": {}}", - "dest": "cargo/vendor/android-properties-0.2.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/arboard/arboard-3.2.0.crate", - "sha256": "d6041616acea41d67c4a984709ddab1587fd0b10efe5cc563fee954d2f011854", - "dest": "cargo/vendor/arboard-3.2.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"d6041616acea41d67c4a984709ddab1587fd0b10efe5cc563fee954d2f011854\", \"files\": {}}", - "dest": "cargo/vendor/arboard-3.2.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/arrayref/arrayref-0.3.7.crate", - "sha256": "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545", - "dest": "cargo/vendor/arrayref-0.3.7" - }, - { - "type": "inline", - "contents": "{\"package\": \"6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545\", \"files\": {}}", - "dest": "cargo/vendor/arrayref-0.3.7", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/arrayvec/arrayvec-0.7.2.crate", - "sha256": "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6", - "dest": "cargo/vendor/arrayvec-0.7.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6\", \"files\": {}}", - "dest": "cargo/vendor/arrayvec-0.7.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ascii/ascii-1.1.0.crate", - "sha256": "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16", - "dest": "cargo/vendor/ascii-1.1.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16\", \"files\": {}}", - "dest": "cargo/vendor/ascii-1.1.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/async-broadcast/async-broadcast-0.5.1.crate", - "sha256": "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b", - "dest": "cargo/vendor/async-broadcast-0.5.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b\", \"files\": {}}", - "dest": "cargo/vendor/async-broadcast-0.5.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/async-channel/async-channel-1.8.0.crate", - "sha256": "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833", - "dest": "cargo/vendor/async-channel-1.8.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833\", \"files\": {}}", - "dest": "cargo/vendor/async-channel-1.8.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/async-executor/async-executor-1.5.1.crate", - "sha256": "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb", - "dest": "cargo/vendor/async-executor-1.5.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb\", \"files\": {}}", - "dest": "cargo/vendor/async-executor-1.5.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/async-io/async-io-1.13.0.crate", - "sha256": "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af", - "dest": "cargo/vendor/async-io-1.13.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af\", \"files\": {}}", - "dest": "cargo/vendor/async-io-1.13.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/async-lock/async-lock-2.7.0.crate", - "sha256": "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7", - "dest": "cargo/vendor/async-lock-2.7.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7\", \"files\": {}}", - "dest": "cargo/vendor/async-lock-2.7.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/async-recursion/async-recursion-1.0.4.crate", - "sha256": "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba", - "dest": "cargo/vendor/async-recursion-1.0.4" - }, - { - "type": "inline", - "contents": "{\"package\": \"0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba\", \"files\": {}}", - "dest": "cargo/vendor/async-recursion-1.0.4", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/async-task/async-task-4.4.0.crate", - "sha256": "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae", - "dest": "cargo/vendor/async-task-4.4.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae\", \"files\": {}}", - "dest": "cargo/vendor/async-task-4.4.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/async-trait/async-trait-0.1.68.crate", - "sha256": "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842", - "dest": "cargo/vendor/async-trait-0.1.68" - }, - { - "type": "inline", - "contents": "{\"package\": \"b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842\", \"files\": {}}", - "dest": "cargo/vendor/async-trait-0.1.68", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/atomic_refcell/atomic_refcell-0.1.10.crate", - "sha256": "79d6dc922a2792b006573f60b2648076355daeae5ce9cb59507e5908c9625d31", - "dest": "cargo/vendor/atomic_refcell-0.1.10" - }, - { - "type": "inline", - "contents": "{\"package\": \"79d6dc922a2792b006573f60b2648076355daeae5ce9cb59507e5908c9625d31\", \"files\": {}}", - "dest": "cargo/vendor/atomic_refcell-0.1.10", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/atspi/atspi-0.10.1.crate", - "sha256": "674e7a3376837b2e7d12d34d58ac47073c491dc3bf6f71a7adaf687d4d817faa", - "dest": "cargo/vendor/atspi-0.10.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"674e7a3376837b2e7d12d34d58ac47073c491dc3bf6f71a7adaf687d4d817faa\", \"files\": {}}", - "dest": "cargo/vendor/atspi-0.10.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/atspi-macros/atspi-macros-0.2.0.crate", - "sha256": "97fb4870a32c0eaa17e35bca0e6b16020635157121fb7d45593d242c295bc768", - "dest": "cargo/vendor/atspi-macros-0.2.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"97fb4870a32c0eaa17e35bca0e6b16020635157121fb7d45593d242c295bc768\", \"files\": {}}", - "dest": "cargo/vendor/atspi-macros-0.2.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/autocfg/autocfg-1.1.0.crate", - "sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa", - "dest": "cargo/vendor/autocfg-1.1.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa\", \"files\": {}}", - "dest": "cargo/vendor/autocfg-1.1.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/backtrace/backtrace-0.3.67.crate", - "sha256": "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca", - "dest": "cargo/vendor/backtrace-0.3.67" - }, - { - "type": "inline", - "contents": "{\"package\": \"233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca\", \"files\": {}}", - "dest": "cargo/vendor/backtrace-0.3.67", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/base64/base64-0.13.1.crate", - "sha256": "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8", - "dest": "cargo/vendor/base64-0.13.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8\", \"files\": {}}", - "dest": "cargo/vendor/base64-0.13.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/base64/base64-0.21.0.crate", - "sha256": "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a", - "dest": "cargo/vendor/base64-0.21.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a\", \"files\": {}}", - "dest": "cargo/vendor/base64-0.21.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/bit_field/bit_field-0.10.2.crate", - "sha256": "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61", - "dest": "cargo/vendor/bit_field-0.10.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61\", \"files\": {}}", - "dest": "cargo/vendor/bit_field-0.10.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/bitflags/bitflags-1.3.2.crate", - "sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a", - "dest": "cargo/vendor/bitflags-1.3.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a\", \"files\": {}}", - "dest": "cargo/vendor/bitflags-1.3.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/block/block-0.1.6.crate", - "sha256": "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a", - "dest": "cargo/vendor/block-0.1.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a\", \"files\": {}}", - "dest": "cargo/vendor/block-0.1.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/block-buffer/block-buffer-0.10.4.crate", - "sha256": "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71", - "dest": "cargo/vendor/block-buffer-0.10.4" - }, - { - "type": "inline", - "contents": "{\"package\": \"3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71\", \"files\": {}}", - "dest": "cargo/vendor/block-buffer-0.10.4", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/block-sys/block-sys-0.1.0-beta.1.crate", - "sha256": "0fa55741ee90902547802152aaf3f8e5248aab7e21468089560d4c8840561146", - "dest": "cargo/vendor/block-sys-0.1.0-beta.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"0fa55741ee90902547802152aaf3f8e5248aab7e21468089560d4c8840561146\", \"files\": {}}", - "dest": "cargo/vendor/block-sys-0.1.0-beta.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/block2/block2-0.2.0-alpha.6.crate", - "sha256": "8dd9e63c1744f755c2f60332b88de39d341e5e86239014ad839bd71c106dec42", - "dest": "cargo/vendor/block2-0.2.0-alpha.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"8dd9e63c1744f755c2f60332b88de39d341e5e86239014ad839bd71c106dec42\", \"files\": {}}", - "dest": "cargo/vendor/block2-0.2.0-alpha.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/build_const/build_const-0.2.2.crate", - "sha256": "b4ae4235e6dac0694637c763029ecea1a2ec9e4e06ec2729bd21ba4d9c863eb7", - "dest": "cargo/vendor/build_const-0.2.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"b4ae4235e6dac0694637c763029ecea1a2ec9e4e06ec2729bd21ba4d9c863eb7\", \"files\": {}}", - "dest": "cargo/vendor/build_const-0.2.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/bumpalo/bumpalo-3.12.2.crate", - "sha256": "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b", - "dest": "cargo/vendor/bumpalo-3.12.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b\", \"files\": {}}", - "dest": "cargo/vendor/bumpalo-3.12.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/bytecount/bytecount-0.6.3.crate", - "sha256": "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c", - "dest": "cargo/vendor/bytecount-0.6.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c\", \"files\": {}}", - "dest": "cargo/vendor/bytecount-0.6.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/bytemuck/bytemuck-1.13.1.crate", - "sha256": "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea", - "dest": "cargo/vendor/bytemuck-1.13.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea\", \"files\": {}}", - "dest": "cargo/vendor/bytemuck-1.13.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/bytemuck_derive/bytemuck_derive-1.4.1.crate", - "sha256": "fdde5c9cd29ebd706ce1b35600920a33550e402fc998a2e53ad3b42c3c47a192", - "dest": "cargo/vendor/bytemuck_derive-1.4.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"fdde5c9cd29ebd706ce1b35600920a33550e402fc998a2e53ad3b42c3c47a192\", \"files\": {}}", - "dest": "cargo/vendor/bytemuck_derive-1.4.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/byteorder/byteorder-1.4.3.crate", - "sha256": "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610", - "dest": "cargo/vendor/byteorder-1.4.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610\", \"files\": {}}", - "dest": "cargo/vendor/byteorder-1.4.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/bytes/bytes-1.4.0.crate", - "sha256": "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be", - "dest": "cargo/vendor/bytes-1.4.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be\", \"files\": {}}", - "dest": "cargo/vendor/bytes-1.4.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/calloop/calloop-0.10.5.crate", - "sha256": "1a59225be45a478d772ce015d9743e49e92798ece9e34eda9a6aa2a6a7f40192", - "dest": "cargo/vendor/calloop-0.10.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"1a59225be45a478d772ce015d9743e49e92798ece9e34eda9a6aa2a6a7f40192\", \"files\": {}}", - "dest": "cargo/vendor/calloop-0.10.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/cc/cc-1.0.79.crate", - "sha256": "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f", - "dest": "cargo/vendor/cc-1.0.79" - }, - { - "type": "inline", - "contents": "{\"package\": \"50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f\", \"files\": {}}", - "dest": "cargo/vendor/cc-1.0.79", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/cesu8/cesu8-1.1.0.crate", - "sha256": "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c", - "dest": "cargo/vendor/cesu8-1.1.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c\", \"files\": {}}", - "dest": "cargo/vendor/cesu8-1.1.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/cfg-if/cfg-if-1.0.0.crate", - "sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd", - "dest": "cargo/vendor/cfg-if-1.0.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd\", \"files\": {}}", - "dest": "cargo/vendor/cfg-if-1.0.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/cfg_aliases/cfg_aliases-0.1.1.crate", - "sha256": "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e", - "dest": "cargo/vendor/cfg_aliases-0.1.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e\", \"files\": {}}", - "dest": "cargo/vendor/cfg_aliases-0.1.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/cgl/cgl-0.3.2.crate", - "sha256": "0ced0551234e87afee12411d535648dd89d2e7f34c78b753395567aff3d447ff", - "dest": "cargo/vendor/cgl-0.3.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"0ced0551234e87afee12411d535648dd89d2e7f34c78b753395567aff3d447ff\", \"files\": {}}", - "dest": "cargo/vendor/cgl-0.3.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/clipboard-win/clipboard-win-3.1.1.crate", - "sha256": "9fdf5e01086b6be750428ba4a40619f847eb2e95756eee84b18e06e5f0b50342", - "dest": "cargo/vendor/clipboard-win-3.1.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"9fdf5e01086b6be750428ba4a40619f847eb2e95756eee84b18e06e5f0b50342\", \"files\": {}}", - "dest": "cargo/vendor/clipboard-win-3.1.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/clipboard-win/clipboard-win-4.5.0.crate", - "sha256": "7191c27c2357d9b7ef96baac1773290d4ca63b24205b82a3fd8a0637afcf0362", - "dest": "cargo/vendor/clipboard-win-4.5.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"7191c27c2357d9b7ef96baac1773290d4ca63b24205b82a3fd8a0637afcf0362\", \"files\": {}}", - "dest": "cargo/vendor/clipboard-win-4.5.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/cocoa/cocoa-0.24.1.crate", - "sha256": "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a", - "dest": "cargo/vendor/cocoa-0.24.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a\", \"files\": {}}", - "dest": "cargo/vendor/cocoa-0.24.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/cocoa-foundation/cocoa-foundation-0.1.1.crate", - "sha256": "931d3837c286f56e3c58423ce4eba12d08db2374461a785c86f672b08b5650d6", - "dest": "cargo/vendor/cocoa-foundation-0.1.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"931d3837c286f56e3c58423ce4eba12d08db2374461a785c86f672b08b5650d6\", \"files\": {}}", - "dest": "cargo/vendor/cocoa-foundation-0.1.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/color-eyre/color-eyre-0.6.2.crate", - "sha256": "5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204", - "dest": "cargo/vendor/color-eyre-0.6.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204\", \"files\": {}}", - "dest": "cargo/vendor/color-eyre-0.6.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/color-spantrace/color-spantrace-0.2.0.crate", - "sha256": "1ba75b3d9449ecdccb27ecbc479fdc0b87fa2dd43d2f8298f9bf0e59aacc8dce", - "dest": "cargo/vendor/color-spantrace-0.2.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"1ba75b3d9449ecdccb27ecbc479fdc0b87fa2dd43d2f8298f9bf0e59aacc8dce\", \"files\": {}}", - "dest": "cargo/vendor/color-spantrace-0.2.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/color_quant/color_quant-1.1.0.crate", - "sha256": "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b", - "dest": "cargo/vendor/color_quant-1.1.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b\", \"files\": {}}", - "dest": "cargo/vendor/color_quant-1.1.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/combine/combine-4.6.6.crate", - "sha256": "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4", - "dest": "cargo/vendor/combine-4.6.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4\", \"files\": {}}", - "dest": "cargo/vendor/combine-4.6.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/concurrent-queue/concurrent-queue-2.2.0.crate", - "sha256": "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c", - "dest": "cargo/vendor/concurrent-queue-2.2.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c\", \"files\": {}}", - "dest": "cargo/vendor/concurrent-queue-2.2.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/config/config-0.13.3.crate", - "sha256": "d379af7f68bfc21714c6c7dea883544201741d2ce8274bb12fa54f89507f52a7", - "dest": "cargo/vendor/config-0.13.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"d379af7f68bfc21714c6c7dea883544201741d2ce8274bb12fa54f89507f52a7\", \"files\": {}}", - "dest": "cargo/vendor/config-0.13.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/copypasta/copypasta-0.8.2.crate", - "sha256": "133fc8675ee3a4ec9aa513584deda9aa0faeda3586b87f7f0f2ba082c66fb172", - "dest": "cargo/vendor/copypasta-0.8.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"133fc8675ee3a4ec9aa513584deda9aa0faeda3586b87f7f0f2ba082c66fb172\", \"files\": {}}", - "dest": "cargo/vendor/copypasta-0.8.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/core-foundation/core-foundation-0.9.3.crate", - "sha256": "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146", - "dest": "cargo/vendor/core-foundation-0.9.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146\", \"files\": {}}", - "dest": "cargo/vendor/core-foundation-0.9.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/core-foundation-sys/core-foundation-sys-0.8.4.crate", - "sha256": "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa", - "dest": "cargo/vendor/core-foundation-sys-0.8.4" - }, - { - "type": "inline", - "contents": "{\"package\": \"e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa\", \"files\": {}}", - "dest": "cargo/vendor/core-foundation-sys-0.8.4", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/core-graphics/core-graphics-0.22.3.crate", - "sha256": "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb", - "dest": "cargo/vendor/core-graphics-0.22.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb\", \"files\": {}}", - "dest": "cargo/vendor/core-graphics-0.22.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/core-graphics-types/core-graphics-types-0.1.1.crate", - "sha256": "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b", - "dest": "cargo/vendor/core-graphics-types-0.1.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b\", \"files\": {}}", - "dest": "cargo/vendor/core-graphics-types-0.1.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/cpufeatures/cpufeatures-0.2.7.crate", - "sha256": "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58", - "dest": "cargo/vendor/cpufeatures-0.2.7" - }, - { - "type": "inline", - "contents": "{\"package\": \"3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58\", \"files\": {}}", - "dest": "cargo/vendor/cpufeatures-0.2.7", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/crc/crc-1.8.1.crate", - "sha256": "d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb", - "dest": "cargo/vendor/crc-1.8.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb\", \"files\": {}}", - "dest": "cargo/vendor/crc-1.8.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/crc32fast/crc32fast-1.3.2.crate", - "sha256": "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d", - "dest": "cargo/vendor/crc32fast-1.3.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d\", \"files\": {}}", - "dest": "cargo/vendor/crc32fast-1.3.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/crossbeam-channel/crossbeam-channel-0.5.8.crate", - "sha256": "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200", - "dest": "cargo/vendor/crossbeam-channel-0.5.8" - }, - { - "type": "inline", - "contents": "{\"package\": \"a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200\", \"files\": {}}", - "dest": "cargo/vendor/crossbeam-channel-0.5.8", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/crossbeam-deque/crossbeam-deque-0.8.3.crate", - "sha256": "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef", - "dest": "cargo/vendor/crossbeam-deque-0.8.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef\", \"files\": {}}", - "dest": "cargo/vendor/crossbeam-deque-0.8.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/crossbeam-epoch/crossbeam-epoch-0.9.14.crate", - "sha256": "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695", - "dest": "cargo/vendor/crossbeam-epoch-0.9.14" - }, - { - "type": "inline", - "contents": "{\"package\": \"46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695\", \"files\": {}}", - "dest": "cargo/vendor/crossbeam-epoch-0.9.14", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/crossbeam-utils/crossbeam-utils-0.8.15.crate", - "sha256": "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b", - "dest": "cargo/vendor/crossbeam-utils-0.8.15" - }, - { - "type": "inline", - "contents": "{\"package\": \"3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b\", \"files\": {}}", - "dest": "cargo/vendor/crossbeam-utils-0.8.15", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/crunchy/crunchy-0.2.2.crate", - "sha256": "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7", - "dest": "cargo/vendor/crunchy-0.2.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7\", \"files\": {}}", - "dest": "cargo/vendor/crunchy-0.2.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/crypto-common/crypto-common-0.1.6.crate", - "sha256": "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3", - "dest": "cargo/vendor/crypto-common-0.1.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3\", \"files\": {}}", - "dest": "cargo/vendor/crypto-common-0.1.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/dashmap/dashmap-5.4.0.crate", - "sha256": "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc", - "dest": "cargo/vendor/dashmap-5.4.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc\", \"files\": {}}", - "dest": "cargo/vendor/dashmap-5.4.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/derivative/derivative-2.2.0.crate", - "sha256": "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b", - "dest": "cargo/vendor/derivative-2.2.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b\", \"files\": {}}", - "dest": "cargo/vendor/derivative-2.2.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/digest/digest-0.10.6.crate", - "sha256": "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f", - "dest": "cargo/vendor/digest-0.10.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f\", \"files\": {}}", - "dest": "cargo/vendor/digest-0.10.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/dirs/dirs-4.0.0.crate", - "sha256": "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059", - "dest": "cargo/vendor/dirs-4.0.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059\", \"files\": {}}", - "dest": "cargo/vendor/dirs-4.0.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/dirs-sys/dirs-sys-0.3.7.crate", - "sha256": "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6", - "dest": "cargo/vendor/dirs-sys-0.3.7" - }, - { - "type": "inline", - "contents": "{\"package\": \"1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6\", \"files\": {}}", - "dest": "cargo/vendor/dirs-sys-0.3.7", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/dispatch/dispatch-0.2.0.crate", - "sha256": "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b", - "dest": "cargo/vendor/dispatch-0.2.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b\", \"files\": {}}", - "dest": "cargo/vendor/dispatch-0.2.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/dlib/dlib-0.5.0.crate", - "sha256": "ac1b7517328c04c2aa68422fc60a41b92208182142ed04a25879c26c8f878794", - "dest": "cargo/vendor/dlib-0.5.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"ac1b7517328c04c2aa68422fc60a41b92208182142ed04a25879c26c8f878794\", \"files\": {}}", - "dest": "cargo/vendor/dlib-0.5.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/dlv-list/dlv-list-0.3.0.crate", - "sha256": "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257", - "dest": "cargo/vendor/dlv-list-0.3.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257\", \"files\": {}}", - "dest": "cargo/vendor/dlv-list-0.3.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/downcast-rs/downcast-rs-1.2.0.crate", - "sha256": "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650", - "dest": "cargo/vendor/downcast-rs-1.2.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650\", \"files\": {}}", - "dest": "cargo/vendor/downcast-rs-1.2.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/dyn-clone/dyn-clone-1.0.11.crate", - "sha256": "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30", - "dest": "cargo/vendor/dyn-clone-1.0.11" - }, - { - "type": "inline", - "contents": "{\"package\": \"68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30\", \"files\": {}}", - "dest": "cargo/vendor/dyn-clone-1.0.11", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ecolor/ecolor-0.22.0.crate", - "sha256": "2e479a7fa3f23d4e794f8b2f8b3568dd4e47886ad1b12c9c095e141cb591eb63", - "dest": "cargo/vendor/ecolor-0.22.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"2e479a7fa3f23d4e794f8b2f8b3568dd4e47886ad1b12c9c095e141cb591eb63\", \"files\": {}}", - "dest": "cargo/vendor/ecolor-0.22.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/eframe/eframe-0.22.0.crate", - "sha256": "bf4596583a2c680c55b6feaa748f74890c4f9cb9c7cb69d6117110444cb65b2f", - "dest": "cargo/vendor/eframe-0.22.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"bf4596583a2c680c55b6feaa748f74890c4f9cb9c7cb69d6117110444cb65b2f\", \"files\": {}}", - "dest": "cargo/vendor/eframe-0.22.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/egui/egui-0.22.0.crate", - "sha256": "a3aef8ec3ae1b772f340170c65bf27d5b8c28f543a0116c844d2ac08d01123e7", - "dest": "cargo/vendor/egui-0.22.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"a3aef8ec3ae1b772f340170c65bf27d5b8c28f543a0116c844d2ac08d01123e7\", \"files\": {}}", - "dest": "cargo/vendor/egui-0.22.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/egui-winit/egui-winit-0.22.0.crate", - "sha256": "4a49155fd4a0a4fb21224407a91de0030847972ef90fc64edb63621caea61cb2", - "dest": "cargo/vendor/egui-winit-0.22.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"4a49155fd4a0a4fb21224407a91de0030847972ef90fc64edb63621caea61cb2\", \"files\": {}}", - "dest": "cargo/vendor/egui-winit-0.22.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/egui_glow/egui_glow-0.22.0.crate", - "sha256": "1f8c2752cdf1b0ef5fcda59a898cacabad974d4f5880e92a420b2c917022da64", - "dest": "cargo/vendor/egui_glow-0.22.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"1f8c2752cdf1b0ef5fcda59a898cacabad974d4f5880e92a420b2c917022da64\", \"files\": {}}", - "dest": "cargo/vendor/egui_glow-0.22.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/either/either-1.8.1.crate", - "sha256": "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91", - "dest": "cargo/vendor/either-1.8.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91\", \"files\": {}}", - "dest": "cargo/vendor/either-1.8.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/emath/emath-0.22.0.crate", - "sha256": "3857d743a6e0741cdd60b622a74c7a36ea75f5f8f11b793b41d905d2c9721a4b", - "dest": "cargo/vendor/emath-0.22.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"3857d743a6e0741cdd60b622a74c7a36ea75f5f8f11b793b41d905d2c9721a4b\", \"files\": {}}", - "dest": "cargo/vendor/emath-0.22.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/encoding_rs/encoding_rs-0.8.32.crate", - "sha256": "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394", - "dest": "cargo/vendor/encoding_rs-0.8.32" - }, - { - "type": "inline", - "contents": "{\"package\": \"071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394\", \"files\": {}}", - "dest": "cargo/vendor/encoding_rs-0.8.32", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/enumflags2/enumflags2-0.7.7.crate", - "sha256": "c041f5090df68b32bcd905365fd51769c8b9d553fe87fde0b683534f10c01bd2", - "dest": "cargo/vendor/enumflags2-0.7.7" - }, - { - "type": "inline", - "contents": "{\"package\": \"c041f5090df68b32bcd905365fd51769c8b9d553fe87fde0b683534f10c01bd2\", \"files\": {}}", - "dest": "cargo/vendor/enumflags2-0.7.7", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/enumflags2_derive/enumflags2_derive-0.7.7.crate", - "sha256": "5e9a1f9f7d83e59740248a6e14ecf93929ade55027844dfcea78beafccc15745", - "dest": "cargo/vendor/enumflags2_derive-0.7.7" - }, - { - "type": "inline", - "contents": "{\"package\": \"5e9a1f9f7d83e59740248a6e14ecf93929ade55027844dfcea78beafccc15745\", \"files\": {}}", - "dest": "cargo/vendor/enumflags2_derive-0.7.7", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/epaint/epaint-0.22.0.crate", - "sha256": "09333964d4d57f40a85338ba3ca5ed4716070ab184dcfed966b35491c5c64f3b", - "dest": "cargo/vendor/epaint-0.22.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"09333964d4d57f40a85338ba3ca5ed4716070ab184dcfed966b35491c5c64f3b\", \"files\": {}}", - "dest": "cargo/vendor/epaint-0.22.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/equivalent/equivalent-1.0.1.crate", - "sha256": "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5", - "dest": "cargo/vendor/equivalent-1.0.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5\", \"files\": {}}", - "dest": "cargo/vendor/equivalent-1.0.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/errno/errno-0.2.8.crate", - "sha256": "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1", - "dest": "cargo/vendor/errno-0.2.8" - }, - { - "type": "inline", - "contents": "{\"package\": \"f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1\", \"files\": {}}", - "dest": "cargo/vendor/errno-0.2.8", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/errno/errno-0.3.1.crate", - "sha256": "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a", - "dest": "cargo/vendor/errno-0.3.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a\", \"files\": {}}", - "dest": "cargo/vendor/errno-0.3.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/errno-dragonfly/errno-dragonfly-0.1.2.crate", - "sha256": "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf", - "dest": "cargo/vendor/errno-dragonfly-0.1.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf\", \"files\": {}}", - "dest": "cargo/vendor/errno-dragonfly-0.1.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/error-code/error-code-2.3.1.crate", - "sha256": "64f18991e7bf11e7ffee451b5318b5c1a73c52d0d0ada6e5a3017c8c1ced6a21", - "dest": "cargo/vendor/error-code-2.3.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"64f18991e7bf11e7ffee451b5318b5c1a73c52d0d0ada6e5a3017c8c1ced6a21\", \"files\": {}}", - "dest": "cargo/vendor/error-code-2.3.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/event-listener/event-listener-2.5.3.crate", - "sha256": "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0", - "dest": "cargo/vendor/event-listener-2.5.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0\", \"files\": {}}", - "dest": "cargo/vendor/event-listener-2.5.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/exr/exr-1.6.3.crate", - "sha256": "bdd2162b720141a91a054640662d3edce3d50a944a50ffca5313cd951abb35b4", - "dest": "cargo/vendor/exr-1.6.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"bdd2162b720141a91a054640662d3edce3d50a944a50ffca5313cd951abb35b4\", \"files\": {}}", - "dest": "cargo/vendor/exr-1.6.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/eyre/eyre-0.6.8.crate", - "sha256": "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb", - "dest": "cargo/vendor/eyre-0.6.8" - }, - { - "type": "inline", - "contents": "{\"package\": \"4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb\", \"files\": {}}", - "dest": "cargo/vendor/eyre-0.6.8", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/fastrand/fastrand-1.9.0.crate", - "sha256": "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be", - "dest": "cargo/vendor/fastrand-1.9.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be\", \"files\": {}}", - "dest": "cargo/vendor/fastrand-1.9.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/fdeflate/fdeflate-0.3.0.crate", - "sha256": "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10", - "dest": "cargo/vendor/fdeflate-0.3.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10\", \"files\": {}}", - "dest": "cargo/vendor/fdeflate-0.3.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/flate2/flate2-1.0.26.crate", - "sha256": "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743", - "dest": "cargo/vendor/flate2-1.0.26" - }, - { - "type": "inline", - "contents": "{\"package\": \"3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743\", \"files\": {}}", - "dest": "cargo/vendor/flate2-1.0.26", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/flume/flume-0.10.14.crate", - "sha256": "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577", - "dest": "cargo/vendor/flume-0.10.14" - }, - { - "type": "inline", - "contents": "{\"package\": \"1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577\", \"files\": {}}", - "dest": "cargo/vendor/flume-0.10.14", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/fnv/fnv-1.0.7.crate", - "sha256": "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1", - "dest": "cargo/vendor/fnv-1.0.7" - }, - { - "type": "inline", - "contents": "{\"package\": \"3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1\", \"files\": {}}", - "dest": "cargo/vendor/fnv-1.0.7", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/foreign-types/foreign-types-0.3.2.crate", - "sha256": "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1", - "dest": "cargo/vendor/foreign-types-0.3.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1\", \"files\": {}}", - "dest": "cargo/vendor/foreign-types-0.3.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/foreign-types-shared/foreign-types-shared-0.1.1.crate", - "sha256": "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b", - "dest": "cargo/vendor/foreign-types-shared-0.1.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b\", \"files\": {}}", - "dest": "cargo/vendor/foreign-types-shared-0.1.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/form_urlencoded/form_urlencoded-1.1.0.crate", - "sha256": "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8", - "dest": "cargo/vendor/form_urlencoded-1.1.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8\", \"files\": {}}", - "dest": "cargo/vendor/form_urlencoded-1.1.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/fs2/fs2-0.4.3.crate", - "sha256": "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213", - "dest": "cargo/vendor/fs2-0.4.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213\", \"files\": {}}", - "dest": "cargo/vendor/fs2-0.4.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/futures/futures-0.3.28.crate", - "sha256": "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40", - "dest": "cargo/vendor/futures-0.3.28" - }, - { - "type": "inline", - "contents": "{\"package\": \"23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40\", \"files\": {}}", - "dest": "cargo/vendor/futures-0.3.28", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/futures-channel/futures-channel-0.3.28.crate", - "sha256": "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2", - "dest": "cargo/vendor/futures-channel-0.3.28" - }, - { - "type": "inline", - "contents": "{\"package\": \"955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2\", \"files\": {}}", - "dest": "cargo/vendor/futures-channel-0.3.28", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/futures-core/futures-core-0.3.28.crate", - "sha256": "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c", - "dest": "cargo/vendor/futures-core-0.3.28" - }, - { - "type": "inline", - "contents": "{\"package\": \"4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c\", \"files\": {}}", - "dest": "cargo/vendor/futures-core-0.3.28", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/futures-executor/futures-executor-0.3.28.crate", - "sha256": "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0", - "dest": "cargo/vendor/futures-executor-0.3.28" - }, - { - "type": "inline", - "contents": "{\"package\": \"ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0\", \"files\": {}}", - "dest": "cargo/vendor/futures-executor-0.3.28", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/futures-io/futures-io-0.3.28.crate", - "sha256": "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964", - "dest": "cargo/vendor/futures-io-0.3.28" - }, - { - "type": "inline", - "contents": "{\"package\": \"4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964\", \"files\": {}}", - "dest": "cargo/vendor/futures-io-0.3.28", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/futures-lite/futures-lite-1.13.0.crate", - "sha256": "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce", - "dest": "cargo/vendor/futures-lite-1.13.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce\", \"files\": {}}", - "dest": "cargo/vendor/futures-lite-1.13.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/futures-macro/futures-macro-0.3.28.crate", - "sha256": "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72", - "dest": "cargo/vendor/futures-macro-0.3.28" - }, - { - "type": "inline", - "contents": "{\"package\": \"89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72\", \"files\": {}}", - "dest": "cargo/vendor/futures-macro-0.3.28", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/futures-sink/futures-sink-0.3.28.crate", - "sha256": "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e", - "dest": "cargo/vendor/futures-sink-0.3.28" - }, - { - "type": "inline", - "contents": "{\"package\": \"f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e\", \"files\": {}}", - "dest": "cargo/vendor/futures-sink-0.3.28", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/futures-task/futures-task-0.3.28.crate", - "sha256": "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65", - "dest": "cargo/vendor/futures-task-0.3.28" - }, - { - "type": "inline", - "contents": "{\"package\": \"76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65\", \"files\": {}}", - "dest": "cargo/vendor/futures-task-0.3.28", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/futures-util/futures-util-0.3.28.crate", - "sha256": "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533", - "dest": "cargo/vendor/futures-util-0.3.28" - }, - { - "type": "inline", - "contents": "{\"package\": \"26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533\", \"files\": {}}", - "dest": "cargo/vendor/futures-util-0.3.28", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/generic-array/generic-array-0.14.7.crate", - "sha256": "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a", - "dest": "cargo/vendor/generic-array-0.14.7" - }, - { - "type": "inline", - "contents": "{\"package\": \"85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a\", \"files\": {}}", - "dest": "cargo/vendor/generic-array-0.14.7", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/gethostname/gethostname-0.2.3.crate", - "sha256": "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e", - "dest": "cargo/vendor/gethostname-0.2.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e\", \"files\": {}}", - "dest": "cargo/vendor/gethostname-0.2.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/getrandom/getrandom-0.2.9.crate", - "sha256": "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4", - "dest": "cargo/vendor/getrandom-0.2.9" - }, - { - "type": "inline", - "contents": "{\"package\": \"c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4\", \"files\": {}}", - "dest": "cargo/vendor/getrandom-0.2.9", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/gif/gif-0.12.0.crate", - "sha256": "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045", - "dest": "cargo/vendor/gif-0.12.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045\", \"files\": {}}", - "dest": "cargo/vendor/gif-0.12.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/gimli/gimli-0.27.2.crate", - "sha256": "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4", - "dest": "cargo/vendor/gimli-0.27.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4\", \"files\": {}}", - "dest": "cargo/vendor/gimli-0.27.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/gl_generator/gl_generator-0.14.0.crate", - "sha256": "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d", - "dest": "cargo/vendor/gl_generator-0.14.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d\", \"files\": {}}", - "dest": "cargo/vendor/gl_generator-0.14.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/glow/glow-0.12.1.crate", - "sha256": "4e007a07a24de5ecae94160f141029e9a347282cfe25d1d58d85d845cf3130f1", - "dest": "cargo/vendor/glow-0.12.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"4e007a07a24de5ecae94160f141029e9a347282cfe25d1d58d85d845cf3130f1\", \"files\": {}}", - "dest": "cargo/vendor/glow-0.12.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/glutin/glutin-0.30.8.crate", - "sha256": "62f9b771a65f0a1e3ddb6aa16f867d87dc73c922411c255e6c4ab7f6d45c7327", - "dest": "cargo/vendor/glutin-0.30.8" - }, - { - "type": "inline", - "contents": "{\"package\": \"62f9b771a65f0a1e3ddb6aa16f867d87dc73c922411c255e6c4ab7f6d45c7327\", \"files\": {}}", - "dest": "cargo/vendor/glutin-0.30.8", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/glutin-winit/glutin-winit-0.3.0.crate", - "sha256": "629a873fc04062830bfe8f97c03773bcd7b371e23bcc465d0a61448cd1588fa4", - "dest": "cargo/vendor/glutin-winit-0.3.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"629a873fc04062830bfe8f97c03773bcd7b371e23bcc465d0a61448cd1588fa4\", \"files\": {}}", - "dest": "cargo/vendor/glutin-winit-0.3.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/glutin_egl_sys/glutin_egl_sys-0.5.0.crate", - "sha256": "1b3bcbddc51573b977fc6dca5d93867e4f29682cdbaf5d13e48f4fa4346d4d87", - "dest": "cargo/vendor/glutin_egl_sys-0.5.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"1b3bcbddc51573b977fc6dca5d93867e4f29682cdbaf5d13e48f4fa4346d4d87\", \"files\": {}}", - "dest": "cargo/vendor/glutin_egl_sys-0.5.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/glutin_glx_sys/glutin_glx_sys-0.4.0.crate", - "sha256": "1b53cb5fe568964aa066a3ba91eac5ecbac869fb0842cd0dc9e412434f1a1494", - "dest": "cargo/vendor/glutin_glx_sys-0.4.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"1b53cb5fe568964aa066a3ba91eac5ecbac869fb0842cd0dc9e412434f1a1494\", \"files\": {}}", - "dest": "cargo/vendor/glutin_glx_sys-0.4.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/glutin_wgl_sys/glutin_wgl_sys-0.4.0.crate", - "sha256": "ef89398e90033fc6bc65e9bd42fd29bbbfd483bda5b56dc5562f455550618165", - "dest": "cargo/vendor/glutin_wgl_sys-0.4.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"ef89398e90033fc6bc65e9bd42fd29bbbfd483bda5b56dc5562f455550618165\", \"files\": {}}", - "dest": "cargo/vendor/glutin_wgl_sys-0.4.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/h2/h2-0.3.19.crate", - "sha256": "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782", - "dest": "cargo/vendor/h2-0.3.19" - }, - { - "type": "inline", - "contents": "{\"package\": \"d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782\", \"files\": {}}", - "dest": "cargo/vendor/h2-0.3.19", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/half/half-2.2.1.crate", - "sha256": "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0", - "dest": "cargo/vendor/half-2.2.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0\", \"files\": {}}", - "dest": "cargo/vendor/half-2.2.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/hashbrown/hashbrown-0.12.3.crate", - "sha256": "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888", - "dest": "cargo/vendor/hashbrown-0.12.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888\", \"files\": {}}", - "dest": "cargo/vendor/hashbrown-0.12.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/hashbrown/hashbrown-0.14.0.crate", - "sha256": "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a", - "dest": "cargo/vendor/hashbrown-0.14.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a\", \"files\": {}}", - "dest": "cargo/vendor/hashbrown-0.14.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/hermit-abi/hermit-abi-0.2.6.crate", - "sha256": "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7", - "dest": "cargo/vendor/hermit-abi-0.2.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7\", \"files\": {}}", - "dest": "cargo/vendor/hermit-abi-0.2.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/hermit-abi/hermit-abi-0.3.1.crate", - "sha256": "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286", - "dest": "cargo/vendor/hermit-abi-0.3.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286\", \"files\": {}}", - "dest": "cargo/vendor/hermit-abi-0.3.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/hex/hex-0.4.3.crate", - "sha256": "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70", - "dest": "cargo/vendor/hex-0.4.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70\", \"files\": {}}", - "dest": "cargo/vendor/hex-0.4.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/http/http-0.2.9.crate", - "sha256": "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482", - "dest": "cargo/vendor/http-0.2.9" - }, - { - "type": "inline", - "contents": "{\"package\": \"bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482\", \"files\": {}}", - "dest": "cargo/vendor/http-0.2.9", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/http-body/http-body-0.4.5.crate", - "sha256": "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1", - "dest": "cargo/vendor/http-body-0.4.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1\", \"files\": {}}", - "dest": "cargo/vendor/http-body-0.4.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/httparse/httparse-1.8.0.crate", - "sha256": "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904", - "dest": "cargo/vendor/httparse-1.8.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904\", \"files\": {}}", - "dest": "cargo/vendor/httparse-1.8.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/httpdate/httpdate-1.0.2.crate", - "sha256": "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421", - "dest": "cargo/vendor/httpdate-1.0.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421\", \"files\": {}}", - "dest": "cargo/vendor/httpdate-1.0.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/hyper/hyper-0.14.26.crate", - "sha256": "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4", - "dest": "cargo/vendor/hyper-0.14.26" - }, - { - "type": "inline", - "contents": "{\"package\": \"ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4\", \"files\": {}}", - "dest": "cargo/vendor/hyper-0.14.26", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/hyper-tls/hyper-tls-0.5.0.crate", - "sha256": "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905", - "dest": "cargo/vendor/hyper-tls-0.5.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905\", \"files\": {}}", - "dest": "cargo/vendor/hyper-tls-0.5.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/idna/idna-0.3.0.crate", - "sha256": "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6", - "dest": "cargo/vendor/idna-0.3.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6\", \"files\": {}}", - "dest": "cargo/vendor/idna-0.3.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/image/image-0.24.6.crate", - "sha256": "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a", - "dest": "cargo/vendor/image-0.24.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a\", \"files\": {}}", - "dest": "cargo/vendor/image-0.24.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/indenter/indenter-0.3.3.crate", - "sha256": "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683", - "dest": "cargo/vendor/indenter-0.3.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683\", \"files\": {}}", - "dest": "cargo/vendor/indenter-0.3.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/indexmap/indexmap-1.9.3.crate", - "sha256": "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99", - "dest": "cargo/vendor/indexmap-1.9.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99\", \"files\": {}}", - "dest": "cargo/vendor/indexmap-1.9.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/indexmap/indexmap-2.0.0.crate", - "sha256": "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d", - "dest": "cargo/vendor/indexmap-2.0.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d\", \"files\": {}}", - "dest": "cargo/vendor/indexmap-2.0.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/instant/instant-0.1.12.crate", - "sha256": "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c", - "dest": "cargo/vendor/instant-0.1.12" - }, - { - "type": "inline", - "contents": "{\"package\": \"7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c\", \"files\": {}}", - "dest": "cargo/vendor/instant-0.1.12", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/integer-encoding/integer-encoding-3.0.4.crate", - "sha256": "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02", - "dest": "cargo/vendor/integer-encoding-3.0.4" - }, - { - "type": "inline", - "contents": "{\"package\": \"8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02\", \"files\": {}}", - "dest": "cargo/vendor/integer-encoding-3.0.4", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/io-lifetimes/io-lifetimes-1.0.10.crate", - "sha256": "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220", - "dest": "cargo/vendor/io-lifetimes-1.0.10" - }, - { - "type": "inline", - "contents": "{\"package\": \"9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220\", \"files\": {}}", - "dest": "cargo/vendor/io-lifetimes-1.0.10", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ipnet/ipnet-2.7.2.crate", - "sha256": "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f", - "dest": "cargo/vendor/ipnet-2.7.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f\", \"files\": {}}", - "dest": "cargo/vendor/ipnet-2.7.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/is_executable/is_executable-1.0.1.crate", - "sha256": "fa9acdc6d67b75e626ad644734e8bc6df893d9cd2a834129065d3dd6158ea9c8", - "dest": "cargo/vendor/is_executable-1.0.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"fa9acdc6d67b75e626ad644734e8bc6df893d9cd2a834129065d3dd6158ea9c8\", \"files\": {}}", - "dest": "cargo/vendor/is_executable-1.0.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/itoa/itoa-1.0.6.crate", - "sha256": "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6", - "dest": "cargo/vendor/itoa-1.0.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6\", \"files\": {}}", - "dest": "cargo/vendor/itoa-1.0.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/jni/jni-0.21.1.crate", - "sha256": "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97", - "dest": "cargo/vendor/jni-0.21.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97\", \"files\": {}}", - "dest": "cargo/vendor/jni-0.21.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/jni-sys/jni-sys-0.3.0.crate", - "sha256": "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130", - "dest": "cargo/vendor/jni-sys-0.3.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130\", \"files\": {}}", - "dest": "cargo/vendor/jni-sys-0.3.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/jobserver/jobserver-0.1.26.crate", - "sha256": "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2", - "dest": "cargo/vendor/jobserver-0.1.26" - }, - { - "type": "inline", - "contents": "{\"package\": \"936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2\", \"files\": {}}", - "dest": "cargo/vendor/jobserver-0.1.26", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/jpeg-decoder/jpeg-decoder-0.3.0.crate", - "sha256": "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e", - "dest": "cargo/vendor/jpeg-decoder-0.3.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e\", \"files\": {}}", - "dest": "cargo/vendor/jpeg-decoder-0.3.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/js-sys/js-sys-0.3.62.crate", - "sha256": "68c16e1bfd491478ab155fd8b4896b86f9ede344949b641e61501e07c2b8b4d5", - "dest": "cargo/vendor/js-sys-0.3.62" - }, - { - "type": "inline", - "contents": "{\"package\": \"68c16e1bfd491478ab155fd8b4896b86f9ede344949b641e61501e07c2b8b4d5\", \"files\": {}}", - "dest": "cargo/vendor/js-sys-0.3.62", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/json5/json5-0.4.1.crate", - "sha256": "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1", - "dest": "cargo/vendor/json5-0.4.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1\", \"files\": {}}", - "dest": "cargo/vendor/json5-0.4.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/khronos_api/khronos_api-3.1.0.crate", - "sha256": "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc", - "dest": "cargo/vendor/khronos_api-3.1.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc\", \"files\": {}}", - "dest": "cargo/vendor/khronos_api-3.1.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/lazy-bytes-cast/lazy-bytes-cast-5.0.1.crate", - "sha256": "10257499f089cd156ad82d0a9cd57d9501fa2c989068992a97eb3c27836f206b", - "dest": "cargo/vendor/lazy-bytes-cast-5.0.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"10257499f089cd156ad82d0a9cd57d9501fa2c989068992a97eb3c27836f206b\", \"files\": {}}", - "dest": "cargo/vendor/lazy-bytes-cast-5.0.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/lazy_static/lazy_static-1.4.0.crate", - "sha256": "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646", - "dest": "cargo/vendor/lazy_static-1.4.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646\", \"files\": {}}", - "dest": "cargo/vendor/lazy_static-1.4.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/lebe/lebe-0.5.2.crate", - "sha256": "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8", - "dest": "cargo/vendor/lebe-0.5.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8\", \"files\": {}}", - "dest": "cargo/vendor/lebe-0.5.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/libc/libc-0.2.144.crate", - "sha256": "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1", - "dest": "cargo/vendor/libc-0.2.144" - }, - { - "type": "inline", - "contents": "{\"package\": \"2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1\", \"files\": {}}", - "dest": "cargo/vendor/libc-0.2.144", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/libloading/libloading-0.7.4.crate", - "sha256": "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f", - "dest": "cargo/vendor/libloading-0.7.4" - }, - { - "type": "inline", - "contents": "{\"package\": \"b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f\", \"files\": {}}", - "dest": "cargo/vendor/libloading-0.7.4", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/linked-hash-map/linked-hash-map-0.5.6.crate", - "sha256": "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f", - "dest": "cargo/vendor/linked-hash-map-0.5.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f\", \"files\": {}}", - "dest": "cargo/vendor/linked-hash-map-0.5.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/linux-raw-sys/linux-raw-sys-0.3.7.crate", - "sha256": "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f", - "dest": "cargo/vendor/linux-raw-sys-0.3.7" - }, - { - "type": "inline", - "contents": "{\"package\": \"ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f\", \"files\": {}}", - "dest": "cargo/vendor/linux-raw-sys-0.3.7", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/lock_api/lock_api-0.4.9.crate", - "sha256": "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df", - "dest": "cargo/vendor/lock_api-0.4.9" - }, - { - "type": "inline", - "contents": "{\"package\": \"435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df\", \"files\": {}}", - "dest": "cargo/vendor/lock_api-0.4.9", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/log/log-0.4.17.crate", - "sha256": "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e", - "dest": "cargo/vendor/log-0.4.17" - }, - { - "type": "inline", - "contents": "{\"package\": \"abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e\", \"files\": {}}", - "dest": "cargo/vendor/log-0.4.17", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/malloc_buf/malloc_buf-0.0.6.crate", - "sha256": "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb", - "dest": "cargo/vendor/malloc_buf-0.0.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb\", \"files\": {}}", - "dest": "cargo/vendor/malloc_buf-0.0.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/memchr/memchr-2.5.0.crate", - "sha256": "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d", - "dest": "cargo/vendor/memchr-2.5.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d\", \"files\": {}}", - "dest": "cargo/vendor/memchr-2.5.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/memmap2/memmap2-0.5.10.crate", - "sha256": "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327", - "dest": "cargo/vendor/memmap2-0.5.10" - }, - { - "type": "inline", - "contents": "{\"package\": \"83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327\", \"files\": {}}", - "dest": "cargo/vendor/memmap2-0.5.10", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/memoffset/memoffset-0.6.5.crate", - "sha256": "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce", - "dest": "cargo/vendor/memoffset-0.6.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce\", \"files\": {}}", - "dest": "cargo/vendor/memoffset-0.6.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/memoffset/memoffset-0.8.0.crate", - "sha256": "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1", - "dest": "cargo/vendor/memoffset-0.8.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1\", \"files\": {}}", - "dest": "cargo/vendor/memoffset-0.8.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/mime/mime-0.3.17.crate", - "sha256": "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a", - "dest": "cargo/vendor/mime-0.3.17" - }, - { - "type": "inline", - "contents": "{\"package\": \"6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a\", \"files\": {}}", - "dest": "cargo/vendor/mime-0.3.17", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/minimal-lexical/minimal-lexical-0.2.1.crate", - "sha256": "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a", - "dest": "cargo/vendor/minimal-lexical-0.2.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a\", \"files\": {}}", - "dest": "cargo/vendor/minimal-lexical-0.2.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/miniz_oxide/miniz_oxide-0.6.2.crate", - "sha256": "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa", - "dest": "cargo/vendor/miniz_oxide-0.6.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa\", \"files\": {}}", - "dest": "cargo/vendor/miniz_oxide-0.6.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/miniz_oxide/miniz_oxide-0.7.1.crate", - "sha256": "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7", - "dest": "cargo/vendor/miniz_oxide-0.7.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7\", \"files\": {}}", - "dest": "cargo/vendor/miniz_oxide-0.7.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/mio/mio-0.8.6.crate", - "sha256": "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9", - "dest": "cargo/vendor/mio-0.8.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9\", \"files\": {}}", - "dest": "cargo/vendor/mio-0.8.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/nanorand/nanorand-0.7.0.crate", - "sha256": "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3", - "dest": "cargo/vendor/nanorand-0.7.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3\", \"files\": {}}", - "dest": "cargo/vendor/nanorand-0.7.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/native-tls/native-tls-0.2.11.crate", - "sha256": "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e", - "dest": "cargo/vendor/native-tls-0.2.11" - }, - { - "type": "inline", - "contents": "{\"package\": \"07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e\", \"files\": {}}", - "dest": "cargo/vendor/native-tls-0.2.11", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ndk/ndk-0.7.0.crate", - "sha256": "451422b7e4718271c8b5b3aadf5adedba43dc76312454b387e98fae0fc951aa0", - "dest": "cargo/vendor/ndk-0.7.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"451422b7e4718271c8b5b3aadf5adedba43dc76312454b387e98fae0fc951aa0\", \"files\": {}}", - "dest": "cargo/vendor/ndk-0.7.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ndk-context/ndk-context-0.1.1.crate", - "sha256": "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b", - "dest": "cargo/vendor/ndk-context-0.1.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b\", \"files\": {}}", - "dest": "cargo/vendor/ndk-context-0.1.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ndk-sys/ndk-sys-0.4.1+23.1.7779620.crate", - "sha256": "3cf2aae958bd232cac5069850591667ad422d263686d75b52a065f9badeee5a3", - "dest": "cargo/vendor/ndk-sys-0.4.1+23.1.7779620" - }, - { - "type": "inline", - "contents": "{\"package\": \"3cf2aae958bd232cac5069850591667ad422d263686d75b52a065f9badeee5a3\", \"files\": {}}", - "dest": "cargo/vendor/ndk-sys-0.4.1+23.1.7779620", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/nix/nix-0.24.3.crate", - "sha256": "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069", - "dest": "cargo/vendor/nix-0.24.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069\", \"files\": {}}", - "dest": "cargo/vendor/nix-0.24.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/nix/nix-0.25.1.crate", - "sha256": "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4", - "dest": "cargo/vendor/nix-0.25.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4\", \"files\": {}}", - "dest": "cargo/vendor/nix-0.25.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/nohash-hasher/nohash-hasher-0.2.0.crate", - "sha256": "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451", - "dest": "cargo/vendor/nohash-hasher-0.2.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451\", \"files\": {}}", - "dest": "cargo/vendor/nohash-hasher-0.2.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/nom/nom-7.1.3.crate", - "sha256": "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a", - "dest": "cargo/vendor/nom-7.1.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a\", \"files\": {}}", - "dest": "cargo/vendor/nom-7.1.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/nom_locate/nom_locate-4.1.0.crate", - "sha256": "b1e299bf5ea7b212e811e71174c5d1a5d065c4c0ad0c8691ecb1f97e3e66025e", - "dest": "cargo/vendor/nom_locate-4.1.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"b1e299bf5ea7b212e811e71174c5d1a5d065c4c0ad0c8691ecb1f97e3e66025e\", \"files\": {}}", - "dest": "cargo/vendor/nom_locate-4.1.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ntapi/ntapi-0.4.1.crate", - "sha256": "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4", - "dest": "cargo/vendor/ntapi-0.4.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4\", \"files\": {}}", - "dest": "cargo/vendor/ntapi-0.4.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/num-integer/num-integer-0.1.45.crate", - "sha256": "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9", - "dest": "cargo/vendor/num-integer-0.1.45" - }, - { - "type": "inline", - "contents": "{\"package\": \"225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9\", \"files\": {}}", - "dest": "cargo/vendor/num-integer-0.1.45", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/num-rational/num-rational-0.4.1.crate", - "sha256": "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0", - "dest": "cargo/vendor/num-rational-0.4.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0\", \"files\": {}}", - "dest": "cargo/vendor/num-rational-0.4.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/num-traits/num-traits-0.2.15.crate", - "sha256": "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd", - "dest": "cargo/vendor/num-traits-0.2.15" - }, - { - "type": "inline", - "contents": "{\"package\": \"578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd\", \"files\": {}}", - "dest": "cargo/vendor/num-traits-0.2.15", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/num_cpus/num_cpus-1.15.0.crate", - "sha256": "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b", - "dest": "cargo/vendor/num_cpus-1.15.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b\", \"files\": {}}", - "dest": "cargo/vendor/num_cpus-1.15.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/num_enum/num_enum-0.5.11.crate", - "sha256": "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9", - "dest": "cargo/vendor/num_enum-0.5.11" - }, - { - "type": "inline", - "contents": "{\"package\": \"1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9\", \"files\": {}}", - "dest": "cargo/vendor/num_enum-0.5.11", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/num_enum_derive/num_enum_derive-0.5.11.crate", - "sha256": "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799", - "dest": "cargo/vendor/num_enum_derive-0.5.11" - }, - { - "type": "inline", - "contents": "{\"package\": \"dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799\", \"files\": {}}", - "dest": "cargo/vendor/num_enum_derive-0.5.11", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/objc/objc-0.2.7.crate", - "sha256": "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1", - "dest": "cargo/vendor/objc-0.2.7" - }, - { - "type": "inline", - "contents": "{\"package\": \"915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1\", \"files\": {}}", - "dest": "cargo/vendor/objc-0.2.7", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/objc-foundation/objc-foundation-0.1.1.crate", - "sha256": "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9", - "dest": "cargo/vendor/objc-foundation-0.1.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9\", \"files\": {}}", - "dest": "cargo/vendor/objc-foundation-0.1.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/objc-sys/objc-sys-0.2.0-beta.2.crate", - "sha256": "df3b9834c1e95694a05a828b59f55fa2afec6288359cda67146126b3f90a55d7", - "dest": "cargo/vendor/objc-sys-0.2.0-beta.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"df3b9834c1e95694a05a828b59f55fa2afec6288359cda67146126b3f90a55d7\", \"files\": {}}", - "dest": "cargo/vendor/objc-sys-0.2.0-beta.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/objc2/objc2-0.3.0-beta.3.crate", - "sha256": "fe31e5425d3d0b89a15982c024392815da40689aceb34bad364d58732bcfd649", - "dest": "cargo/vendor/objc2-0.3.0-beta.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"fe31e5425d3d0b89a15982c024392815da40689aceb34bad364d58732bcfd649\", \"files\": {}}", - "dest": "cargo/vendor/objc2-0.3.0-beta.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/objc2-encode/objc2-encode-2.0.0-pre.2.crate", - "sha256": "abfcac41015b00a120608fdaa6938c44cb983fee294351cc4bac7638b4e50512", - "dest": "cargo/vendor/objc2-encode-2.0.0-pre.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"abfcac41015b00a120608fdaa6938c44cb983fee294351cc4bac7638b4e50512\", \"files\": {}}", - "dest": "cargo/vendor/objc2-encode-2.0.0-pre.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/objc_id/objc_id-0.1.1.crate", - "sha256": "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b", - "dest": "cargo/vendor/objc_id-0.1.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b\", \"files\": {}}", - "dest": "cargo/vendor/objc_id-0.1.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/object/object-0.30.3.crate", - "sha256": "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439", - "dest": "cargo/vendor/object-0.30.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439\", \"files\": {}}", - "dest": "cargo/vendor/object-0.30.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/once_cell/once_cell-1.17.1.crate", - "sha256": "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3", - "dest": "cargo/vendor/once_cell-1.17.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3\", \"files\": {}}", - "dest": "cargo/vendor/once_cell-1.17.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/openssl/openssl-0.10.55.crate", - "sha256": "345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d", - "dest": "cargo/vendor/openssl-0.10.55" - }, - { - "type": "inline", - "contents": "{\"package\": \"345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d\", \"files\": {}}", - "dest": "cargo/vendor/openssl-0.10.55", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/openssl-macros/openssl-macros-0.1.1.crate", - "sha256": "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c", - "dest": "cargo/vendor/openssl-macros-0.1.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c\", \"files\": {}}", - "dest": "cargo/vendor/openssl-macros-0.1.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/openssl-probe/openssl-probe-0.1.5.crate", - "sha256": "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf", - "dest": "cargo/vendor/openssl-probe-0.1.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf\", \"files\": {}}", - "dest": "cargo/vendor/openssl-probe-0.1.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/openssl-src/openssl-src-111.25.3+1.1.1t.crate", - "sha256": "924757a6a226bf60da5f7dd0311a34d2b52283dd82ddeb103208ddc66362f80c", - "dest": "cargo/vendor/openssl-src-111.25.3+1.1.1t" - }, - { - "type": "inline", - "contents": "{\"package\": \"924757a6a226bf60da5f7dd0311a34d2b52283dd82ddeb103208ddc66362f80c\", \"files\": {}}", - "dest": "cargo/vendor/openssl-src-111.25.3+1.1.1t", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/openssl-sys/openssl-sys-0.9.90.crate", - "sha256": "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6", - "dest": "cargo/vendor/openssl-sys-0.9.90" - }, - { - "type": "inline", - "contents": "{\"package\": \"374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6\", \"files\": {}}", - "dest": "cargo/vendor/openssl-sys-0.9.90", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/orbclient/orbclient-0.3.45.crate", - "sha256": "221d488cd70617f1bd599ed8ceb659df2147d9393717954d82a0f5e8032a6ab1", - "dest": "cargo/vendor/orbclient-0.3.45" - }, - { - "type": "inline", - "contents": "{\"package\": \"221d488cd70617f1bd599ed8ceb659df2147d9393717954d82a0f5e8032a6ab1\", \"files\": {}}", - "dest": "cargo/vendor/orbclient-0.3.45", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ordered-multimap/ordered-multimap-0.4.3.crate", - "sha256": "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a", - "dest": "cargo/vendor/ordered-multimap-0.4.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a\", \"files\": {}}", - "dest": "cargo/vendor/ordered-multimap-0.4.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ordered-stream/ordered-stream-0.2.0.crate", - "sha256": "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50", - "dest": "cargo/vendor/ordered-stream-0.2.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50\", \"files\": {}}", - "dest": "cargo/vendor/ordered-stream-0.2.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/owned_ttf_parser/owned_ttf_parser-0.19.0.crate", - "sha256": "706de7e2214113d63a8238d1910463cfce781129a6f263d13fdb09ff64355ba4", - "dest": "cargo/vendor/owned_ttf_parser-0.19.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"706de7e2214113d63a8238d1910463cfce781129a6f263d13fdb09ff64355ba4\", \"files\": {}}", - "dest": "cargo/vendor/owned_ttf_parser-0.19.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/owo-colors/owo-colors-3.5.0.crate", - "sha256": "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f", - "dest": "cargo/vendor/owo-colors-3.5.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f\", \"files\": {}}", - "dest": "cargo/vendor/owo-colors-3.5.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/parking/parking-2.1.0.crate", - "sha256": "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e", - "dest": "cargo/vendor/parking-2.1.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e\", \"files\": {}}", - "dest": "cargo/vendor/parking-2.1.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/parking_lot/parking_lot-0.12.1.crate", - "sha256": "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f", - "dest": "cargo/vendor/parking_lot-0.12.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f\", \"files\": {}}", - "dest": "cargo/vendor/parking_lot-0.12.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/parking_lot_core/parking_lot_core-0.9.7.crate", - "sha256": "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521", - "dest": "cargo/vendor/parking_lot_core-0.9.7" - }, - { - "type": "inline", - "contents": "{\"package\": \"9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521\", \"files\": {}}", - "dest": "cargo/vendor/parking_lot_core-0.9.7", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/paste/paste-1.0.12.crate", - "sha256": "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79", - "dest": "cargo/vendor/paste-1.0.12" - }, - { - "type": "inline", - "contents": "{\"package\": \"9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79\", \"files\": {}}", - "dest": "cargo/vendor/paste-1.0.12", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/pathdiff/pathdiff-0.2.1.crate", - "sha256": "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd", - "dest": "cargo/vendor/pathdiff-0.2.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd\", \"files\": {}}", - "dest": "cargo/vendor/pathdiff-0.2.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/percent-encoding/percent-encoding-2.2.0.crate", - "sha256": "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e", - "dest": "cargo/vendor/percent-encoding-2.2.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e\", \"files\": {}}", - "dest": "cargo/vendor/percent-encoding-2.2.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/pest/pest-2.6.0.crate", - "sha256": "e68e84bfb01f0507134eac1e9b410a12ba379d064eab48c50ba4ce329a527b70", - "dest": "cargo/vendor/pest-2.6.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"e68e84bfb01f0507134eac1e9b410a12ba379d064eab48c50ba4ce329a527b70\", \"files\": {}}", - "dest": "cargo/vendor/pest-2.6.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/pest_derive/pest_derive-2.6.0.crate", - "sha256": "6b79d4c71c865a25a4322296122e3924d30bc8ee0834c8bfc8b95f7f054afbfb", - "dest": "cargo/vendor/pest_derive-2.6.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"6b79d4c71c865a25a4322296122e3924d30bc8ee0834c8bfc8b95f7f054afbfb\", \"files\": {}}", - "dest": "cargo/vendor/pest_derive-2.6.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/pest_generator/pest_generator-2.6.0.crate", - "sha256": "6c435bf1076437b851ebc8edc3a18442796b30f1728ffea6262d59bbe28b077e", - "dest": "cargo/vendor/pest_generator-2.6.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"6c435bf1076437b851ebc8edc3a18442796b30f1728ffea6262d59bbe28b077e\", \"files\": {}}", - "dest": "cargo/vendor/pest_generator-2.6.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/pest_meta/pest_meta-2.6.0.crate", - "sha256": "745a452f8eb71e39ffd8ee32b3c5f51d03845f99786fa9b68db6ff509c505411", - "dest": "cargo/vendor/pest_meta-2.6.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"745a452f8eb71e39ffd8ee32b3c5f51d03845f99786fa9b68db6ff509c505411\", \"files\": {}}", - "dest": "cargo/vendor/pest_meta-2.6.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/pin-project/pin-project-1.1.0.crate", - "sha256": "c95a7476719eab1e366eaf73d0260af3021184f18177925b07f54b30089ceead", - "dest": "cargo/vendor/pin-project-1.1.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"c95a7476719eab1e366eaf73d0260af3021184f18177925b07f54b30089ceead\", \"files\": {}}", - "dest": "cargo/vendor/pin-project-1.1.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/pin-project-internal/pin-project-internal-1.1.0.crate", - "sha256": "39407670928234ebc5e6e580247dd567ad73a3578460c5990f9503df207e8f07", - "dest": "cargo/vendor/pin-project-internal-1.1.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"39407670928234ebc5e6e580247dd567ad73a3578460c5990f9503df207e8f07\", \"files\": {}}", - "dest": "cargo/vendor/pin-project-internal-1.1.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/pin-project-lite/pin-project-lite-0.2.9.crate", - "sha256": "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116", - "dest": "cargo/vendor/pin-project-lite-0.2.9" - }, - { - "type": "inline", - "contents": "{\"package\": \"e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116\", \"files\": {}}", - "dest": "cargo/vendor/pin-project-lite-0.2.9", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/pin-utils/pin-utils-0.1.0.crate", - "sha256": "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184", - "dest": "cargo/vendor/pin-utils-0.1.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184\", \"files\": {}}", - "dest": "cargo/vendor/pin-utils-0.1.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/pkg-config/pkg-config-0.3.27.crate", - "sha256": "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964", - "dest": "cargo/vendor/pkg-config-0.3.27" - }, - { - "type": "inline", - "contents": "{\"package\": \"26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964\", \"files\": {}}", - "dest": "cargo/vendor/pkg-config-0.3.27", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/png/png-0.17.8.crate", - "sha256": "aaeebc51f9e7d2c150d3f3bfeb667f2aa985db5ef1e3d212847bdedb488beeaa", - "dest": "cargo/vendor/png-0.17.8" - }, - { - "type": "inline", - "contents": "{\"package\": \"aaeebc51f9e7d2c150d3f3bfeb667f2aa985db5ef1e3d212847bdedb488beeaa\", \"files\": {}}", - "dest": "cargo/vendor/png-0.17.8", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/polling/polling-2.8.0.crate", - "sha256": "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce", - "dest": "cargo/vendor/polling-2.8.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce\", \"files\": {}}", - "dest": "cargo/vendor/polling-2.8.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ppv-lite86/ppv-lite86-0.2.17.crate", - "sha256": "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de", - "dest": "cargo/vendor/ppv-lite86-0.2.17" - }, - { - "type": "inline", - "contents": "{\"package\": \"5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de\", \"files\": {}}", - "dest": "cargo/vendor/ppv-lite86-0.2.17", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/proc-macro-crate/proc-macro-crate-1.3.1.crate", - "sha256": "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919", - "dest": "cargo/vendor/proc-macro-crate-1.3.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919\", \"files\": {}}", - "dest": "cargo/vendor/proc-macro-crate-1.3.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/proc-macro2/proc-macro2-1.0.57.crate", - "sha256": "c4ec6d5fe0b140acb27c9a0444118cf55bfbb4e0b259739429abb4521dd67c16", - "dest": "cargo/vendor/proc-macro2-1.0.57" - }, - { - "type": "inline", - "contents": "{\"package\": \"c4ec6d5fe0b140acb27c9a0444118cf55bfbb4e0b259739429abb4521dd67c16\", \"files\": {}}", - "dest": "cargo/vendor/proc-macro2-1.0.57", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/qoi/qoi-0.4.1.crate", - "sha256": "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001", - "dest": "cargo/vendor/qoi-0.4.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001\", \"files\": {}}", - "dest": "cargo/vendor/qoi-0.4.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/quote/quote-1.0.27.crate", - "sha256": "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500", - "dest": "cargo/vendor/quote-1.0.27" - }, - { - "type": "inline", - "contents": "{\"package\": \"8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500\", \"files\": {}}", - "dest": "cargo/vendor/quote-1.0.27", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/rand/rand-0.8.5.crate", - "sha256": "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404", - "dest": "cargo/vendor/rand-0.8.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404\", \"files\": {}}", - "dest": "cargo/vendor/rand-0.8.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/rand_chacha/rand_chacha-0.3.1.crate", - "sha256": "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88", - "dest": "cargo/vendor/rand_chacha-0.3.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88\", \"files\": {}}", - "dest": "cargo/vendor/rand_chacha-0.3.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/rand_core/rand_core-0.6.4.crate", - "sha256": "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c", - "dest": "cargo/vendor/rand_core-0.6.4" - }, - { - "type": "inline", - "contents": "{\"package\": \"ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c\", \"files\": {}}", - "dest": "cargo/vendor/rand_core-0.6.4", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/raw-window-handle/raw-window-handle-0.5.2.crate", - "sha256": "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9", - "dest": "cargo/vendor/raw-window-handle-0.5.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9\", \"files\": {}}", - "dest": "cargo/vendor/raw-window-handle-0.5.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/rayon/rayon-1.7.0.crate", - "sha256": "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b", - "dest": "cargo/vendor/rayon-1.7.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b\", \"files\": {}}", - "dest": "cargo/vendor/rayon-1.7.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/rayon-core/rayon-core-1.11.0.crate", - "sha256": "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d", - "dest": "cargo/vendor/rayon-core-1.11.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d\", \"files\": {}}", - "dest": "cargo/vendor/rayon-core-1.11.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/redox_syscall/redox_syscall-0.2.16.crate", - "sha256": "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a", - "dest": "cargo/vendor/redox_syscall-0.2.16" - }, - { - "type": "inline", - "contents": "{\"package\": \"fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a\", \"files\": {}}", - "dest": "cargo/vendor/redox_syscall-0.2.16", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/redox_syscall/redox_syscall-0.3.5.crate", - "sha256": "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29", - "dest": "cargo/vendor/redox_syscall-0.3.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29\", \"files\": {}}", - "dest": "cargo/vendor/redox_syscall-0.3.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/redox_users/redox_users-0.4.3.crate", - "sha256": "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b", - "dest": "cargo/vendor/redox_users-0.4.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b\", \"files\": {}}", - "dest": "cargo/vendor/redox_users-0.4.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/regex/regex-1.8.3.crate", - "sha256": "81ca098a9821bd52d6b24fd8b10bd081f47d39c22778cafaa75a2857a62c6390", - "dest": "cargo/vendor/regex-1.8.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"81ca098a9821bd52d6b24fd8b10bd081f47d39c22778cafaa75a2857a62c6390\", \"files\": {}}", - "dest": "cargo/vendor/regex-1.8.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/regex-syntax/regex-syntax-0.7.2.crate", - "sha256": "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78", - "dest": "cargo/vendor/regex-syntax-0.7.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78\", \"files\": {}}", - "dest": "cargo/vendor/regex-syntax-0.7.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/reqwest/reqwest-0.11.17.crate", - "sha256": "13293b639a097af28fc8a90f22add145a9c954e49d77da06263d58cf44d5fb91", - "dest": "cargo/vendor/reqwest-0.11.17" - }, - { - "type": "inline", - "contents": "{\"package\": \"13293b639a097af28fc8a90f22add145a9c954e49d77da06263d58cf44d5fb91\", \"files\": {}}", - "dest": "cargo/vendor/reqwest-0.11.17", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ron/ron-0.7.1.crate", - "sha256": "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a", - "dest": "cargo/vendor/ron-0.7.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a\", \"files\": {}}", - "dest": "cargo/vendor/ron-0.7.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/roxmltree/roxmltree-0.18.0.crate", - "sha256": "d8f595a457b6b8c6cda66a48503e92ee8d19342f905948f29c383200ec9eb1d8", - "dest": "cargo/vendor/roxmltree-0.18.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"d8f595a457b6b8c6cda66a48503e92ee8d19342f905948f29c383200ec9eb1d8\", \"files\": {}}", - "dest": "cargo/vendor/roxmltree-0.18.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/rust-ini/rust-ini-0.18.0.crate", - "sha256": "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df", - "dest": "cargo/vendor/rust-ini-0.18.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df\", \"files\": {}}", - "dest": "cargo/vendor/rust-ini-0.18.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/rustc-demangle/rustc-demangle-0.1.23.crate", - "sha256": "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76", - "dest": "cargo/vendor/rustc-demangle-0.1.23" - }, - { - "type": "inline", - "contents": "{\"package\": \"d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76\", \"files\": {}}", - "dest": "cargo/vendor/rustc-demangle-0.1.23", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/rustix/rustix-0.37.19.crate", - "sha256": "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d", - "dest": "cargo/vendor/rustix-0.37.19" - }, - { - "type": "inline", - "contents": "{\"package\": \"acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d\", \"files\": {}}", - "dest": "cargo/vendor/rustix-0.37.19", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/rusty-leveldb/rusty-leveldb-3.0.0.crate", - "sha256": "3453f8c92d48f99810f59095444eda0622ae8485ac899ad97a574fd7cb9aa9c4", - "dest": "cargo/vendor/rusty-leveldb-3.0.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"3453f8c92d48f99810f59095444eda0622ae8485ac899ad97a574fd7cb9aa9c4\", \"files\": {}}", - "dest": "cargo/vendor/rusty-leveldb-3.0.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ryu/ryu-1.0.13.crate", - "sha256": "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041", - "dest": "cargo/vendor/ryu-1.0.13" - }, - { - "type": "inline", - "contents": "{\"package\": \"f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041\", \"files\": {}}", - "dest": "cargo/vendor/ryu-1.0.13", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/same-file/same-file-1.0.6.crate", - "sha256": "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502", - "dest": "cargo/vendor/same-file-1.0.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502\", \"files\": {}}", - "dest": "cargo/vendor/same-file-1.0.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/schannel/schannel-0.1.21.crate", - "sha256": "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3", - "dest": "cargo/vendor/schannel-0.1.21" - }, - { - "type": "inline", - "contents": "{\"package\": \"713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3\", \"files\": {}}", - "dest": "cargo/vendor/schannel-0.1.21", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/scoped-tls/scoped-tls-1.0.1.crate", - "sha256": "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294", - "dest": "cargo/vendor/scoped-tls-1.0.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294\", \"files\": {}}", - "dest": "cargo/vendor/scoped-tls-1.0.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/scopeguard/scopeguard-1.1.0.crate", - "sha256": "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd", - "dest": "cargo/vendor/scopeguard-1.1.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd\", \"files\": {}}", - "dest": "cargo/vendor/scopeguard-1.1.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/sctk-adwaita/sctk-adwaita-0.5.4.crate", - "sha256": "cda4e97be1fd174ccc2aae81c8b694e803fa99b34e8fd0f057a9d70698e3ed09", - "dest": "cargo/vendor/sctk-adwaita-0.5.4" - }, - { - "type": "inline", - "contents": "{\"package\": \"cda4e97be1fd174ccc2aae81c8b694e803fa99b34e8fd0f057a9d70698e3ed09\", \"files\": {}}", - "dest": "cargo/vendor/sctk-adwaita-0.5.4", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/security-framework/security-framework-2.9.0.crate", - "sha256": "ca2855b3715770894e67cbfa3df957790aa0c9edc3bf06efa1a84d77fa0839d1", - "dest": "cargo/vendor/security-framework-2.9.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"ca2855b3715770894e67cbfa3df957790aa0c9edc3bf06efa1a84d77fa0839d1\", \"files\": {}}", - "dest": "cargo/vendor/security-framework-2.9.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/security-framework-sys/security-framework-sys-2.9.0.crate", - "sha256": "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7", - "dest": "cargo/vendor/security-framework-sys-2.9.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7\", \"files\": {}}", - "dest": "cargo/vendor/security-framework-sys-2.9.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/serde/serde-1.0.163.crate", - "sha256": "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2", - "dest": "cargo/vendor/serde-1.0.163" - }, - { - "type": "inline", - "contents": "{\"package\": \"2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2\", \"files\": {}}", - "dest": "cargo/vendor/serde-1.0.163", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/serde_derive/serde_derive-1.0.163.crate", - "sha256": "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e", - "dest": "cargo/vendor/serde_derive-1.0.163" - }, - { - "type": "inline", - "contents": "{\"package\": \"8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e\", \"files\": {}}", - "dest": "cargo/vendor/serde_derive-1.0.163", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/serde_json/serde_json-1.0.96.crate", - "sha256": "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1", - "dest": "cargo/vendor/serde_json-1.0.96" - }, - { - "type": "inline", - "contents": "{\"package\": \"057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1\", \"files\": {}}", - "dest": "cargo/vendor/serde_json-1.0.96", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/serde_repr/serde_repr-0.1.12.crate", - "sha256": "bcec881020c684085e55a25f7fd888954d56609ef363479dc5a1305eb0d40cab", - "dest": "cargo/vendor/serde_repr-0.1.12" - }, - { - "type": "inline", - "contents": "{\"package\": \"bcec881020c684085e55a25f7fd888954d56609ef363479dc5a1305eb0d40cab\", \"files\": {}}", - "dest": "cargo/vendor/serde_repr-0.1.12", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/serde_spanned/serde_spanned-0.6.3.crate", - "sha256": "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186", - "dest": "cargo/vendor/serde_spanned-0.6.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186\", \"files\": {}}", - "dest": "cargo/vendor/serde_spanned-0.6.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/serde_urlencoded/serde_urlencoded-0.7.1.crate", - "sha256": "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd", - "dest": "cargo/vendor/serde_urlencoded-0.7.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd\", \"files\": {}}", - "dest": "cargo/vendor/serde_urlencoded-0.7.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/sha1/sha1-0.10.5.crate", - "sha256": "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3", - "dest": "cargo/vendor/sha1-0.10.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3\", \"files\": {}}", - "dest": "cargo/vendor/sha1-0.10.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/sha2/sha2-0.10.6.crate", - "sha256": "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0", - "dest": "cargo/vendor/sha2-0.10.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0\", \"files\": {}}", - "dest": "cargo/vendor/sha2-0.10.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/sharded-slab/sharded-slab-0.1.4.crate", - "sha256": "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31", - "dest": "cargo/vendor/sharded-slab-0.1.4" - }, - { - "type": "inline", - "contents": "{\"package\": \"900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31\", \"files\": {}}", - "dest": "cargo/vendor/sharded-slab-0.1.4", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/signal-hook-registry/signal-hook-registry-1.4.1.crate", - "sha256": "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1", - "dest": "cargo/vendor/signal-hook-registry-1.4.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1\", \"files\": {}}", - "dest": "cargo/vendor/signal-hook-registry-1.4.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/simd-adler32/simd-adler32-0.3.5.crate", - "sha256": "238abfbb77c1915110ad968465608b68e869e0772622c9656714e73e5a1a522f", - "dest": "cargo/vendor/simd-adler32-0.3.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"238abfbb77c1915110ad968465608b68e869e0772622c9656714e73e5a1a522f\", \"files\": {}}", - "dest": "cargo/vendor/simd-adler32-0.3.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/slab/slab-0.4.8.crate", - "sha256": "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d", - "dest": "cargo/vendor/slab-0.4.8" - }, - { - "type": "inline", - "contents": "{\"package\": \"6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d\", \"files\": {}}", - "dest": "cargo/vendor/slab-0.4.8", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/slotmap/slotmap-1.0.6.crate", - "sha256": "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342", - "dest": "cargo/vendor/slotmap-1.0.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342\", \"files\": {}}", - "dest": "cargo/vendor/slotmap-1.0.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/smallvec/smallvec-1.10.0.crate", - "sha256": "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0", - "dest": "cargo/vendor/smallvec-1.10.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0\", \"files\": {}}", - "dest": "cargo/vendor/smallvec-1.10.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/smithay-client-toolkit/smithay-client-toolkit-0.16.0.crate", - "sha256": "f307c47d32d2715eb2e0ece5589057820e0e5e70d07c247d1063e844e107f454", - "dest": "cargo/vendor/smithay-client-toolkit-0.16.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"f307c47d32d2715eb2e0ece5589057820e0e5e70d07c247d1063e844e107f454\", \"files\": {}}", - "dest": "cargo/vendor/smithay-client-toolkit-0.16.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/smithay-clipboard/smithay-clipboard-0.6.6.crate", - "sha256": "0a345c870a1fae0b1b779085e81b51e614767c239e93503588e54c5b17f4b0e8", - "dest": "cargo/vendor/smithay-clipboard-0.6.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"0a345c870a1fae0b1b779085e81b51e614767c239e93503588e54c5b17f4b0e8\", \"files\": {}}", - "dest": "cargo/vendor/smithay-clipboard-0.6.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/snap/snap-1.1.0.crate", - "sha256": "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831", - "dest": "cargo/vendor/snap-1.1.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831\", \"files\": {}}", - "dest": "cargo/vendor/snap-1.1.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/socket2/socket2-0.4.9.crate", - "sha256": "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662", - "dest": "cargo/vendor/socket2-0.4.9" - }, - { - "type": "inline", - "contents": "{\"package\": \"64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662\", \"files\": {}}", - "dest": "cargo/vendor/socket2-0.4.9", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/spin/spin-0.9.8.crate", - "sha256": "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67", - "dest": "cargo/vendor/spin-0.9.8" - }, - { - "type": "inline", - "contents": "{\"package\": \"6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67\", \"files\": {}}", - "dest": "cargo/vendor/spin-0.9.8", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/sqlite/sqlite-0.31.1.crate", - "sha256": "05439db7afa0ce0b38f6d1b4c691f368adde108df021e15e900fec6a1af92488", - "dest": "cargo/vendor/sqlite-0.31.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"05439db7afa0ce0b38f6d1b4c691f368adde108df021e15e900fec6a1af92488\", \"files\": {}}", - "dest": "cargo/vendor/sqlite-0.31.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/sqlite3-src/sqlite3-src-0.5.1.crate", - "sha256": "bfc95a51a1ee38839599371685b9d4a926abb51791f0bc3bf8c3bb7867e6e454", - "dest": "cargo/vendor/sqlite3-src-0.5.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"bfc95a51a1ee38839599371685b9d4a926abb51791f0bc3bf8c3bb7867e6e454\", \"files\": {}}", - "dest": "cargo/vendor/sqlite3-src-0.5.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/sqlite3-sys/sqlite3-sys-0.15.2.crate", - "sha256": "f2752c669433e40ebb08fde824146f50d9628aa0b66a3b7fc6be34db82a8063b", - "dest": "cargo/vendor/sqlite3-sys-0.15.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"f2752c669433e40ebb08fde824146f50d9628aa0b66a3b7fc6be34db82a8063b\", \"files\": {}}", - "dest": "cargo/vendor/sqlite3-sys-0.15.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/static_assertions/static_assertions-1.1.0.crate", - "sha256": "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f", - "dest": "cargo/vendor/static_assertions-1.1.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f\", \"files\": {}}", - "dest": "cargo/vendor/static_assertions-1.1.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/steam_shortcuts_util/steam_shortcuts_util-1.1.8.crate", - "sha256": "d0543ebdb23a93b196aceebc53f70cc5a573bb74248a974b3f5fa3883e6a89b6", - "dest": "cargo/vendor/steam_shortcuts_util-1.1.8" - }, - { - "type": "inline", - "contents": "{\"package\": \"d0543ebdb23a93b196aceebc53f70cc5a573bb74248a974b3f5fa3883e6a89b6\", \"files\": {}}", - "dest": "cargo/vendor/steam_shortcuts_util-1.1.8", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/steamgriddb_api/steamgriddb_api-0.3.1.crate", - "sha256": "0ebdad6dcf0d589f17c3aa0cef88bd819d0ac5a11e4b63da67ca0e30c562bf29", - "dest": "cargo/vendor/steamgriddb_api-0.3.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"0ebdad6dcf0d589f17c3aa0cef88bd819d0ac5a11e4b63da67ca0e30c562bf29\", \"files\": {}}", - "dest": "cargo/vendor/steamgriddb_api-0.3.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/str-buf/str-buf-1.0.6.crate", - "sha256": "9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0", - "dest": "cargo/vendor/str-buf-1.0.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0\", \"files\": {}}", - "dest": "cargo/vendor/str-buf-1.0.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/strict-num/strict-num-0.1.1.crate", - "sha256": "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731", - "dest": "cargo/vendor/strict-num-0.1.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731\", \"files\": {}}", - "dest": "cargo/vendor/strict-num-0.1.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/syn/syn-1.0.109.crate", - "sha256": "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237", - "dest": "cargo/vendor/syn-1.0.109" - }, - { - "type": "inline", - "contents": "{\"package\": \"72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237\", \"files\": {}}", - "dest": "cargo/vendor/syn-1.0.109", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/syn/syn-2.0.16.crate", - "sha256": "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01", - "dest": "cargo/vendor/syn-2.0.16" - }, - { - "type": "inline", - "contents": "{\"package\": \"a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01\", \"files\": {}}", - "dest": "cargo/vendor/syn-2.0.16", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/sysinfo/sysinfo-0.29.0.crate", - "sha256": "02f1dc6930a439cc5d154221b5387d153f8183529b07c19aca24ea31e0a167e1", - "dest": "cargo/vendor/sysinfo-0.29.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"02f1dc6930a439cc5d154221b5387d153f8183529b07c19aca24ea31e0a167e1\", \"files\": {}}", - "dest": "cargo/vendor/sysinfo-0.29.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/tempfile/tempfile-3.5.0.crate", - "sha256": "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998", - "dest": "cargo/vendor/tempfile-3.5.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998\", \"files\": {}}", - "dest": "cargo/vendor/tempfile-3.5.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/thiserror/thiserror-1.0.40.crate", - "sha256": "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac", - "dest": "cargo/vendor/thiserror-1.0.40" - }, - { - "type": "inline", - "contents": "{\"package\": \"978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac\", \"files\": {}}", - "dest": "cargo/vendor/thiserror-1.0.40", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/thiserror-impl/thiserror-impl-1.0.40.crate", - "sha256": "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f", - "dest": "cargo/vendor/thiserror-impl-1.0.40" - }, - { - "type": "inline", - "contents": "{\"package\": \"f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f\", \"files\": {}}", - "dest": "cargo/vendor/thiserror-impl-1.0.40", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/thread_local/thread_local-1.1.7.crate", - "sha256": "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152", - "dest": "cargo/vendor/thread_local-1.1.7" - }, - { - "type": "inline", - "contents": "{\"package\": \"3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152\", \"files\": {}}", - "dest": "cargo/vendor/thread_local-1.1.7", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/tiff/tiff-0.8.1.crate", - "sha256": "7449334f9ff2baf290d55d73983a7d6fa15e01198faef72af07e2a8db851e471", - "dest": "cargo/vendor/tiff-0.8.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"7449334f9ff2baf290d55d73983a7d6fa15e01198faef72af07e2a8db851e471\", \"files\": {}}", - "dest": "cargo/vendor/tiff-0.8.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/time/time-0.3.21.crate", - "sha256": "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc", - "dest": "cargo/vendor/time-0.3.21" - }, - { - "type": "inline", - "contents": "{\"package\": \"8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc\", \"files\": {}}", - "dest": "cargo/vendor/time-0.3.21", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/time-core/time-core-0.1.1.crate", - "sha256": "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb", - "dest": "cargo/vendor/time-core-0.1.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb\", \"files\": {}}", - "dest": "cargo/vendor/time-core-0.1.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/time-macros/time-macros-0.2.9.crate", - "sha256": "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b", - "dest": "cargo/vendor/time-macros-0.2.9" - }, - { - "type": "inline", - "contents": "{\"package\": \"372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b\", \"files\": {}}", - "dest": "cargo/vendor/time-macros-0.2.9", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/tiny-skia/tiny-skia-0.8.4.crate", - "sha256": "df8493a203431061e901613751931f047d1971337153f96d0e5e363d6dbf6a67", - "dest": "cargo/vendor/tiny-skia-0.8.4" - }, - { - "type": "inline", - "contents": "{\"package\": \"df8493a203431061e901613751931f047d1971337153f96d0e5e363d6dbf6a67\", \"files\": {}}", - "dest": "cargo/vendor/tiny-skia-0.8.4", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/tiny-skia-path/tiny-skia-path-0.8.4.crate", - "sha256": "adbfb5d3f3dd57a0e11d12f4f13d4ebbbc1b5c15b7ab0a156d030b21da5f677c", - "dest": "cargo/vendor/tiny-skia-path-0.8.4" - }, - { - "type": "inline", - "contents": "{\"package\": \"adbfb5d3f3dd57a0e11d12f4f13d4ebbbc1b5c15b7ab0a156d030b21da5f677c\", \"files\": {}}", - "dest": "cargo/vendor/tiny-skia-path-0.8.4", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/tinyvec/tinyvec-1.6.0.crate", - "sha256": "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50", - "dest": "cargo/vendor/tinyvec-1.6.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50\", \"files\": {}}", - "dest": "cargo/vendor/tinyvec-1.6.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/tinyvec_macros/tinyvec_macros-0.1.1.crate", - "sha256": "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20", - "dest": "cargo/vendor/tinyvec_macros-0.1.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20\", \"files\": {}}", - "dest": "cargo/vendor/tinyvec_macros-0.1.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/tokio/tokio-1.28.1.crate", - "sha256": "0aa32867d44e6f2ce3385e89dceb990188b8bb0fb25b0cf576647a6f98ac5105", - "dest": "cargo/vendor/tokio-1.28.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"0aa32867d44e6f2ce3385e89dceb990188b8bb0fb25b0cf576647a6f98ac5105\", \"files\": {}}", - "dest": "cargo/vendor/tokio-1.28.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/tokio-macros/tokio-macros-2.1.0.crate", - "sha256": "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e", - "dest": "cargo/vendor/tokio-macros-2.1.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e\", \"files\": {}}", - "dest": "cargo/vendor/tokio-macros-2.1.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/tokio-native-tls/tokio-native-tls-0.3.1.crate", - "sha256": "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2", - "dest": "cargo/vendor/tokio-native-tls-0.3.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2\", \"files\": {}}", - "dest": "cargo/vendor/tokio-native-tls-0.3.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/tokio-util/tokio-util-0.7.8.crate", - "sha256": "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d", - "dest": "cargo/vendor/tokio-util-0.7.8" - }, - { - "type": "inline", - "contents": "{\"package\": \"806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d\", \"files\": {}}", - "dest": "cargo/vendor/tokio-util-0.7.8", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/toml/toml-0.5.11.crate", - "sha256": "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234", - "dest": "cargo/vendor/toml-0.5.11" - }, - { - "type": "inline", - "contents": "{\"package\": \"f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234\", \"files\": {}}", - "dest": "cargo/vendor/toml-0.5.11", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/toml/toml-0.8.0.crate", - "sha256": "c226a7bba6d859b63c92c4b4fe69c5b6b72d0cb897dbc8e6012298e6154cb56e", - "dest": "cargo/vendor/toml-0.8.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"c226a7bba6d859b63c92c4b4fe69c5b6b72d0cb897dbc8e6012298e6154cb56e\", \"files\": {}}", - "dest": "cargo/vendor/toml-0.8.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/toml_datetime/toml_datetime-0.6.3.crate", - "sha256": "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b", - "dest": "cargo/vendor/toml_datetime-0.6.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b\", \"files\": {}}", - "dest": "cargo/vendor/toml_datetime-0.6.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/toml_edit/toml_edit-0.19.8.crate", - "sha256": "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13", - "dest": "cargo/vendor/toml_edit-0.19.8" - }, - { - "type": "inline", - "contents": "{\"package\": \"239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13\", \"files\": {}}", - "dest": "cargo/vendor/toml_edit-0.19.8", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/toml_edit/toml_edit-0.20.0.crate", - "sha256": "8ff63e60a958cefbb518ae1fd6566af80d9d4be430a33f3723dfc47d1d411d95", - "dest": "cargo/vendor/toml_edit-0.20.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"8ff63e60a958cefbb518ae1fd6566af80d9d4be430a33f3723dfc47d1d411d95\", \"files\": {}}", - "dest": "cargo/vendor/toml_edit-0.20.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/tower-service/tower-service-0.3.2.crate", - "sha256": "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52", - "dest": "cargo/vendor/tower-service-0.3.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52\", \"files\": {}}", - "dest": "cargo/vendor/tower-service-0.3.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/tracing/tracing-0.1.37.crate", - "sha256": "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8", - "dest": "cargo/vendor/tracing-0.1.37" - }, - { - "type": "inline", - "contents": "{\"package\": \"8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8\", \"files\": {}}", - "dest": "cargo/vendor/tracing-0.1.37", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/tracing-attributes/tracing-attributes-0.1.24.crate", - "sha256": "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74", - "dest": "cargo/vendor/tracing-attributes-0.1.24" - }, - { - "type": "inline", - "contents": "{\"package\": \"0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74\", \"files\": {}}", - "dest": "cargo/vendor/tracing-attributes-0.1.24", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/tracing-core/tracing-core-0.1.31.crate", - "sha256": "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a", - "dest": "cargo/vendor/tracing-core-0.1.31" - }, - { - "type": "inline", - "contents": "{\"package\": \"0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a\", \"files\": {}}", - "dest": "cargo/vendor/tracing-core-0.1.31", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/tracing-error/tracing-error-0.2.0.crate", - "sha256": "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e", - "dest": "cargo/vendor/tracing-error-0.2.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e\", \"files\": {}}", - "dest": "cargo/vendor/tracing-error-0.2.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/tracing-subscriber/tracing-subscriber-0.3.17.crate", - "sha256": "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77", - "dest": "cargo/vendor/tracing-subscriber-0.3.17" - }, - { - "type": "inline", - "contents": "{\"package\": \"30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77\", \"files\": {}}", - "dest": "cargo/vendor/tracing-subscriber-0.3.17", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/try-lock/try-lock-0.2.4.crate", - "sha256": "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed", - "dest": "cargo/vendor/try-lock-0.2.4" - }, - { - "type": "inline", - "contents": "{\"package\": \"3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed\", \"files\": {}}", - "dest": "cargo/vendor/try-lock-0.2.4", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ttf-parser/ttf-parser-0.19.0.crate", - "sha256": "44dcf002ae3b32cd25400d6df128c5babec3927cd1eb7ce813cfff20eb6c3746", - "dest": "cargo/vendor/ttf-parser-0.19.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"44dcf002ae3b32cd25400d6df128c5babec3927cd1eb7ce813cfff20eb6c3746\", \"files\": {}}", - "dest": "cargo/vendor/ttf-parser-0.19.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/typenum/typenum-1.16.0.crate", - "sha256": "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba", - "dest": "cargo/vendor/typenum-1.16.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba\", \"files\": {}}", - "dest": "cargo/vendor/typenum-1.16.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/ucd-trie/ucd-trie-0.1.5.crate", - "sha256": "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81", - "dest": "cargo/vendor/ucd-trie-0.1.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81\", \"files\": {}}", - "dest": "cargo/vendor/ucd-trie-0.1.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/uds_windows/uds_windows-1.0.2.crate", - "sha256": "ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d", - "dest": "cargo/vendor/uds_windows-1.0.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d\", \"files\": {}}", - "dest": "cargo/vendor/uds_windows-1.0.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/unicode-bidi/unicode-bidi-0.3.13.crate", - "sha256": "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460", - "dest": "cargo/vendor/unicode-bidi-0.3.13" - }, - { - "type": "inline", - "contents": "{\"package\": \"92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460\", \"files\": {}}", - "dest": "cargo/vendor/unicode-bidi-0.3.13", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/unicode-ident/unicode-ident-1.0.8.crate", - "sha256": "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4", - "dest": "cargo/vendor/unicode-ident-1.0.8" - }, - { - "type": "inline", - "contents": "{\"package\": \"e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4\", \"files\": {}}", - "dest": "cargo/vendor/unicode-ident-1.0.8", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/unicode-normalization/unicode-normalization-0.1.22.crate", - "sha256": "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921", - "dest": "cargo/vendor/unicode-normalization-0.1.22" - }, - { - "type": "inline", - "contents": "{\"package\": \"5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921\", \"files\": {}}", - "dest": "cargo/vendor/unicode-normalization-0.1.22", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/url/url-2.3.1.crate", - "sha256": "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643", - "dest": "cargo/vendor/url-2.3.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643\", \"files\": {}}", - "dest": "cargo/vendor/url-2.3.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/urlencoding/urlencoding-2.1.2.crate", - "sha256": "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9", - "dest": "cargo/vendor/urlencoding-2.1.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9\", \"files\": {}}", - "dest": "cargo/vendor/urlencoding-2.1.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/valuable/valuable-0.1.0.crate", - "sha256": "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d", - "dest": "cargo/vendor/valuable-0.1.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d\", \"files\": {}}", - "dest": "cargo/vendor/valuable-0.1.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/vcpkg/vcpkg-0.2.15.crate", - "sha256": "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426", - "dest": "cargo/vendor/vcpkg-0.2.15" - }, - { - "type": "inline", - "contents": "{\"package\": \"accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426\", \"files\": {}}", - "dest": "cargo/vendor/vcpkg-0.2.15", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/vec_map/vec_map-0.8.2.crate", - "sha256": "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191", - "dest": "cargo/vendor/vec_map-0.8.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191\", \"files\": {}}", - "dest": "cargo/vendor/vec_map-0.8.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/version_check/version_check-0.9.4.crate", - "sha256": "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f", - "dest": "cargo/vendor/version_check-0.9.4" - }, - { - "type": "inline", - "contents": "{\"package\": \"49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f\", \"files\": {}}", - "dest": "cargo/vendor/version_check-0.9.4", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/waker-fn/waker-fn-1.1.0.crate", - "sha256": "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca", - "dest": "cargo/vendor/waker-fn-1.1.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca\", \"files\": {}}", - "dest": "cargo/vendor/waker-fn-1.1.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/walkdir/walkdir-2.3.3.crate", - "sha256": "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698", - "dest": "cargo/vendor/walkdir-2.3.3" - }, - { - "type": "inline", - "contents": "{\"package\": \"36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698\", \"files\": {}}", - "dest": "cargo/vendor/walkdir-2.3.3", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/want/want-0.3.0.crate", - "sha256": "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0", - "dest": "cargo/vendor/want-0.3.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0\", \"files\": {}}", - "dest": "cargo/vendor/want-0.3.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/wasi/wasi-0.11.0+wasi-snapshot-preview1.crate", - "sha256": "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423", - "dest": "cargo/vendor/wasi-0.11.0+wasi-snapshot-preview1" - }, - { - "type": "inline", - "contents": "{\"package\": \"9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423\", \"files\": {}}", - "dest": "cargo/vendor/wasi-0.11.0+wasi-snapshot-preview1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/wasm-bindgen/wasm-bindgen-0.2.86.crate", - "sha256": "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73", - "dest": "cargo/vendor/wasm-bindgen-0.2.86" - }, - { - "type": "inline", - "contents": "{\"package\": \"5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73\", \"files\": {}}", - "dest": "cargo/vendor/wasm-bindgen-0.2.86", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/wasm-bindgen-backend/wasm-bindgen-backend-0.2.86.crate", - "sha256": "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb", - "dest": "cargo/vendor/wasm-bindgen-backend-0.2.86" - }, - { - "type": "inline", - "contents": "{\"package\": \"19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb\", \"files\": {}}", - "dest": "cargo/vendor/wasm-bindgen-backend-0.2.86", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/wasm-bindgen-futures/wasm-bindgen-futures-0.4.35.crate", - "sha256": "083abe15c5d88556b77bdf7aef403625be9e327ad37c62c4e4129af740168163", - "dest": "cargo/vendor/wasm-bindgen-futures-0.4.35" - }, - { - "type": "inline", - "contents": "{\"package\": \"083abe15c5d88556b77bdf7aef403625be9e327ad37c62c4e4129af740168163\", \"files\": {}}", - "dest": "cargo/vendor/wasm-bindgen-futures-0.4.35", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/wasm-bindgen-macro/wasm-bindgen-macro-0.2.86.crate", - "sha256": "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258", - "dest": "cargo/vendor/wasm-bindgen-macro-0.2.86" - }, - { - "type": "inline", - "contents": "{\"package\": \"14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258\", \"files\": {}}", - "dest": "cargo/vendor/wasm-bindgen-macro-0.2.86", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/wasm-bindgen-macro-support-0.2.86.crate", - "sha256": "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8", - "dest": "cargo/vendor/wasm-bindgen-macro-support-0.2.86" - }, - { - "type": "inline", - "contents": "{\"package\": \"e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8\", \"files\": {}}", - "dest": "cargo/vendor/wasm-bindgen-macro-support-0.2.86", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/wasm-bindgen-shared/wasm-bindgen-shared-0.2.86.crate", - "sha256": "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93", - "dest": "cargo/vendor/wasm-bindgen-shared-0.2.86" - }, - { - "type": "inline", - "contents": "{\"package\": \"ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93\", \"files\": {}}", - "dest": "cargo/vendor/wasm-bindgen-shared-0.2.86", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/wayland-client/wayland-client-0.29.5.crate", - "sha256": "3f3b068c05a039c9f755f881dc50f01732214f5685e379829759088967c46715", - "dest": "cargo/vendor/wayland-client-0.29.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"3f3b068c05a039c9f755f881dc50f01732214f5685e379829759088967c46715\", \"files\": {}}", - "dest": "cargo/vendor/wayland-client-0.29.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/wayland-commons/wayland-commons-0.29.5.crate", - "sha256": "8691f134d584a33a6606d9d717b95c4fa20065605f798a3f350d78dced02a902", - "dest": "cargo/vendor/wayland-commons-0.29.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"8691f134d584a33a6606d9d717b95c4fa20065605f798a3f350d78dced02a902\", \"files\": {}}", - "dest": "cargo/vendor/wayland-commons-0.29.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/wayland-cursor/wayland-cursor-0.29.5.crate", - "sha256": "6865c6b66f13d6257bef1cd40cbfe8ef2f150fb8ebbdb1e8e873455931377661", - "dest": "cargo/vendor/wayland-cursor-0.29.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"6865c6b66f13d6257bef1cd40cbfe8ef2f150fb8ebbdb1e8e873455931377661\", \"files\": {}}", - "dest": "cargo/vendor/wayland-cursor-0.29.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/wayland-protocols/wayland-protocols-0.29.5.crate", - "sha256": "b950621f9354b322ee817a23474e479b34be96c2e909c14f7bc0100e9a970bc6", - "dest": "cargo/vendor/wayland-protocols-0.29.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"b950621f9354b322ee817a23474e479b34be96c2e909c14f7bc0100e9a970bc6\", \"files\": {}}", - "dest": "cargo/vendor/wayland-protocols-0.29.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/wayland-scanner/wayland-scanner-0.29.5.crate", - "sha256": "8f4303d8fa22ab852f789e75a967f0a2cdc430a607751c0499bada3e451cbd53", - "dest": "cargo/vendor/wayland-scanner-0.29.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"8f4303d8fa22ab852f789e75a967f0a2cdc430a607751c0499bada3e451cbd53\", \"files\": {}}", - "dest": "cargo/vendor/wayland-scanner-0.29.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/wayland-sys/wayland-sys-0.29.5.crate", - "sha256": "be12ce1a3c39ec7dba25594b97b42cb3195d54953ddb9d3d95a7c3902bc6e9d4", - "dest": "cargo/vendor/wayland-sys-0.29.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"be12ce1a3c39ec7dba25594b97b42cb3195d54953ddb9d3d95a7c3902bc6e9d4\", \"files\": {}}", - "dest": "cargo/vendor/wayland-sys-0.29.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/wayland-sys/wayland-sys-0.30.1.crate", - "sha256": "96b2a02ac608e07132978689a6f9bf4214949c85998c247abadd4f4129b1aa06", - "dest": "cargo/vendor/wayland-sys-0.30.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"96b2a02ac608e07132978689a6f9bf4214949c85998c247abadd4f4129b1aa06\", \"files\": {}}", - "dest": "cargo/vendor/wayland-sys-0.30.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/web-sys/web-sys-0.3.62.crate", - "sha256": "16b5f940c7edfdc6d12126d98c9ef4d1b3d470011c47c76a6581df47ad9ba721", - "dest": "cargo/vendor/web-sys-0.3.62" - }, - { - "type": "inline", - "contents": "{\"package\": \"16b5f940c7edfdc6d12126d98c9ef4d1b3d470011c47c76a6581df47ad9ba721\", \"files\": {}}", - "dest": "cargo/vendor/web-sys-0.3.62", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/webbrowser/webbrowser-0.8.9.crate", - "sha256": "b692165700260bbd40fbc5ff23766c03e339fbaca907aeea5cb77bf0a553ca83", - "dest": "cargo/vendor/webbrowser-0.8.9" - }, - { - "type": "inline", - "contents": "{\"package\": \"b692165700260bbd40fbc5ff23766c03e339fbaca907aeea5cb77bf0a553ca83\", \"files\": {}}", - "dest": "cargo/vendor/webbrowser-0.8.9", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/weezl/weezl-0.1.7.crate", - "sha256": "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb", - "dest": "cargo/vendor/weezl-0.1.7" - }, - { - "type": "inline", - "contents": "{\"package\": \"9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb\", \"files\": {}}", - "dest": "cargo/vendor/weezl-0.1.7", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/winapi/winapi-0.3.9.crate", - "sha256": "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419", - "dest": "cargo/vendor/winapi-0.3.9" - }, - { - "type": "inline", - "contents": "{\"package\": \"5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419\", \"files\": {}}", - "dest": "cargo/vendor/winapi-0.3.9", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/winapi-i686-pc-windows-gnu/winapi-i686-pc-windows-gnu-0.4.0.crate", - "sha256": "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6", - "dest": "cargo/vendor/winapi-i686-pc-windows-gnu-0.4.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6\", \"files\": {}}", - "dest": "cargo/vendor/winapi-i686-pc-windows-gnu-0.4.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/winapi-util/winapi-util-0.1.5.crate", - "sha256": "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178", - "dest": "cargo/vendor/winapi-util-0.1.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178\", \"files\": {}}", - "dest": "cargo/vendor/winapi-util-0.1.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/winapi-wsapoll/winapi-wsapoll-0.1.1.crate", - "sha256": "44c17110f57155602a80dca10be03852116403c9ff3cd25b079d666f2aa3df6e", - "dest": "cargo/vendor/winapi-wsapoll-0.1.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"44c17110f57155602a80dca10be03852116403c9ff3cd25b079d666f2aa3df6e\", \"files\": {}}", - "dest": "cargo/vendor/winapi-wsapoll-0.1.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/winapi-x86_64-pc-windows-gnu-0.4.0.crate", - "sha256": "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f", - "dest": "cargo/vendor/winapi-x86_64-pc-windows-gnu-0.4.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f\", \"files\": {}}", - "dest": "cargo/vendor/winapi-x86_64-pc-windows-gnu-0.4.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows/windows-0.44.0.crate", - "sha256": "9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b", - "dest": "cargo/vendor/windows-0.44.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b\", \"files\": {}}", - "dest": "cargo/vendor/windows-0.44.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows-implement/windows-implement-0.44.0.crate", - "sha256": "6ce87ca8e3417b02dc2a8a22769306658670ec92d78f1bd420d6310a67c245c6", - "dest": "cargo/vendor/windows-implement-0.44.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"6ce87ca8e3417b02dc2a8a22769306658670ec92d78f1bd420d6310a67c245c6\", \"files\": {}}", - "dest": "cargo/vendor/windows-implement-0.44.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows-interface/windows-interface-0.44.0.crate", - "sha256": "853f69a591ecd4f810d29f17e902d40e349fb05b0b11fff63b08b826bfe39c7f", - "dest": "cargo/vendor/windows-interface-0.44.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"853f69a591ecd4f810d29f17e902d40e349fb05b0b11fff63b08b826bfe39c7f\", \"files\": {}}", - "dest": "cargo/vendor/windows-interface-0.44.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows-sys/windows-sys-0.42.0.crate", - "sha256": "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7", - "dest": "cargo/vendor/windows-sys-0.42.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7\", \"files\": {}}", - "dest": "cargo/vendor/windows-sys-0.42.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows-sys/windows-sys-0.45.0.crate", - "sha256": "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0", - "dest": "cargo/vendor/windows-sys-0.45.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0\", \"files\": {}}", - "dest": "cargo/vendor/windows-sys-0.45.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows-sys/windows-sys-0.48.0.crate", - "sha256": "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9", - "dest": "cargo/vendor/windows-sys-0.48.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9\", \"files\": {}}", - "dest": "cargo/vendor/windows-sys-0.48.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows-targets/windows-targets-0.42.2.crate", - "sha256": "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071", - "dest": "cargo/vendor/windows-targets-0.42.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071\", \"files\": {}}", - "dest": "cargo/vendor/windows-targets-0.42.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows-targets/windows-targets-0.48.0.crate", - "sha256": "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5", - "dest": "cargo/vendor/windows-targets-0.48.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5\", \"files\": {}}", - "dest": "cargo/vendor/windows-targets-0.48.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/windows_aarch64_gnullvm-0.42.2.crate", - "sha256": "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8", - "dest": "cargo/vendor/windows_aarch64_gnullvm-0.42.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8\", \"files\": {}}", - "dest": "cargo/vendor/windows_aarch64_gnullvm-0.42.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/windows_aarch64_gnullvm-0.48.0.crate", - "sha256": "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc", - "dest": "cargo/vendor/windows_aarch64_gnullvm-0.48.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc\", \"files\": {}}", - "dest": "cargo/vendor/windows_aarch64_gnullvm-0.48.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows_aarch64_msvc/windows_aarch64_msvc-0.42.2.crate", - "sha256": "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43", - "dest": "cargo/vendor/windows_aarch64_msvc-0.42.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43\", \"files\": {}}", - "dest": "cargo/vendor/windows_aarch64_msvc-0.42.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows_aarch64_msvc/windows_aarch64_msvc-0.48.0.crate", - "sha256": "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3", - "dest": "cargo/vendor/windows_aarch64_msvc-0.48.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3\", \"files\": {}}", - "dest": "cargo/vendor/windows_aarch64_msvc-0.48.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows_i686_gnu/windows_i686_gnu-0.42.2.crate", - "sha256": "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f", - "dest": "cargo/vendor/windows_i686_gnu-0.42.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f\", \"files\": {}}", - "dest": "cargo/vendor/windows_i686_gnu-0.42.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows_i686_gnu/windows_i686_gnu-0.48.0.crate", - "sha256": "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241", - "dest": "cargo/vendor/windows_i686_gnu-0.48.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241\", \"files\": {}}", - "dest": "cargo/vendor/windows_i686_gnu-0.48.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows_i686_msvc/windows_i686_msvc-0.42.2.crate", - "sha256": "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060", - "dest": "cargo/vendor/windows_i686_msvc-0.42.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060\", \"files\": {}}", - "dest": "cargo/vendor/windows_i686_msvc-0.42.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows_i686_msvc/windows_i686_msvc-0.48.0.crate", - "sha256": "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00", - "dest": "cargo/vendor/windows_i686_msvc-0.48.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00\", \"files\": {}}", - "dest": "cargo/vendor/windows_i686_msvc-0.48.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows_x86_64_gnu/windows_x86_64_gnu-0.42.2.crate", - "sha256": "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36", - "dest": "cargo/vendor/windows_x86_64_gnu-0.42.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36\", \"files\": {}}", - "dest": "cargo/vendor/windows_x86_64_gnu-0.42.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows_x86_64_gnu/windows_x86_64_gnu-0.48.0.crate", - "sha256": "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1", - "dest": "cargo/vendor/windows_x86_64_gnu-0.48.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1\", \"files\": {}}", - "dest": "cargo/vendor/windows_x86_64_gnu-0.48.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/windows_x86_64_gnullvm-0.42.2.crate", - "sha256": "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3", - "dest": "cargo/vendor/windows_x86_64_gnullvm-0.42.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3\", \"files\": {}}", - "dest": "cargo/vendor/windows_x86_64_gnullvm-0.42.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/windows_x86_64_gnullvm-0.48.0.crate", - "sha256": "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953", - "dest": "cargo/vendor/windows_x86_64_gnullvm-0.48.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953\", \"files\": {}}", - "dest": "cargo/vendor/windows_x86_64_gnullvm-0.48.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows_x86_64_msvc/windows_x86_64_msvc-0.42.2.crate", - "sha256": "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0", - "dest": "cargo/vendor/windows_x86_64_msvc-0.42.2" - }, - { - "type": "inline", - "contents": "{\"package\": \"9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0\", \"files\": {}}", - "dest": "cargo/vendor/windows_x86_64_msvc-0.42.2", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/windows_x86_64_msvc/windows_x86_64_msvc-0.48.0.crate", - "sha256": "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a", - "dest": "cargo/vendor/windows_x86_64_msvc-0.48.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a\", \"files\": {}}", - "dest": "cargo/vendor/windows_x86_64_msvc-0.48.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/winit/winit-0.28.6.crate", - "sha256": "866db3f712fffba75d31bf0cdecf357c8aeafd158c5b7ab51dba2a2b2d47f196", - "dest": "cargo/vendor/winit-0.28.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"866db3f712fffba75d31bf0cdecf357c8aeafd158c5b7ab51dba2a2b2d47f196\", \"files\": {}}", - "dest": "cargo/vendor/winit-0.28.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/winnow/winnow-0.4.6.crate", - "sha256": "61de7bac303dc551fe038e2b3cef0f571087a47571ea6e79a87692ac99b99699", - "dest": "cargo/vendor/winnow-0.4.6" - }, - { - "type": "inline", - "contents": "{\"package\": \"61de7bac303dc551fe038e2b3cef0f571087a47571ea6e79a87692ac99b99699\", \"files\": {}}", - "dest": "cargo/vendor/winnow-0.4.6", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/winnow/winnow-0.5.15.crate", - "sha256": "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc", - "dest": "cargo/vendor/winnow-0.5.15" - }, - { - "type": "inline", - "contents": "{\"package\": \"7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc\", \"files\": {}}", - "dest": "cargo/vendor/winnow-0.5.15", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/winreg/winreg-0.10.1.crate", - "sha256": "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d", - "dest": "cargo/vendor/winreg-0.10.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d\", \"files\": {}}", - "dest": "cargo/vendor/winreg-0.10.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/winreg/winreg-0.51.0.crate", - "sha256": "937f3df7948156640f46aacef17a70db0de5917bda9c92b0f751f3a955b588fc", - "dest": "cargo/vendor/winreg-0.51.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"937f3df7948156640f46aacef17a70db0de5917bda9c92b0f751f3a955b588fc\", \"files\": {}}", - "dest": "cargo/vendor/winreg-0.51.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/winres/winres-0.1.12.crate", - "sha256": "b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c", - "dest": "cargo/vendor/winres-0.1.12" - }, - { - "type": "inline", - "contents": "{\"package\": \"b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c\", \"files\": {}}", - "dest": "cargo/vendor/winres-0.1.12", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/x11-clipboard/x11-clipboard-0.7.1.crate", - "sha256": "980b9aa9226c3b7de8e2adb11bf20124327c054e0e5812d2aac0b5b5a87e7464", - "dest": "cargo/vendor/x11-clipboard-0.7.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"980b9aa9226c3b7de8e2adb11bf20124327c054e0e5812d2aac0b5b5a87e7464\", \"files\": {}}", - "dest": "cargo/vendor/x11-clipboard-0.7.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/x11-dl/x11-dl-2.21.0.crate", - "sha256": "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f", - "dest": "cargo/vendor/x11-dl-2.21.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f\", \"files\": {}}", - "dest": "cargo/vendor/x11-dl-2.21.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/x11rb/x11rb-0.10.1.crate", - "sha256": "592b4883219f345e712b3209c62654ebda0bb50887f330cbd018d0f654bfd507", - "dest": "cargo/vendor/x11rb-0.10.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"592b4883219f345e712b3209c62654ebda0bb50887f330cbd018d0f654bfd507\", \"files\": {}}", - "dest": "cargo/vendor/x11rb-0.10.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/x11rb-protocol/x11rb-protocol-0.10.0.crate", - "sha256": "56b245751c0ac9db0e006dc812031482784e434630205a93c73cfefcaabeac67", - "dest": "cargo/vendor/x11rb-protocol-0.10.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"56b245751c0ac9db0e006dc812031482784e434630205a93c73cfefcaabeac67\", \"files\": {}}", - "dest": "cargo/vendor/x11rb-protocol-0.10.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/xcursor/xcursor-0.3.4.crate", - "sha256": "463705a63313cd4301184381c5e8042f0a7e9b4bb63653f216311d4ae74690b7", - "dest": "cargo/vendor/xcursor-0.3.4" - }, - { - "type": "inline", - "contents": "{\"package\": \"463705a63313cd4301184381c5e8042f0a7e9b4bb63653f216311d4ae74690b7\", \"files\": {}}", - "dest": "cargo/vendor/xcursor-0.3.4", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/xml-rs/xml-rs-0.8.14.crate", - "sha256": "52839dc911083a8ef63efa4d039d1f58b5e409f923e44c80828f206f66e5541c", - "dest": "cargo/vendor/xml-rs-0.8.14" - }, - { - "type": "inline", - "contents": "{\"package\": \"52839dc911083a8ef63efa4d039d1f58b5e409f923e44c80828f206f66e5541c\", \"files\": {}}", - "dest": "cargo/vendor/xml-rs-0.8.14", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/xmlparser/xmlparser-0.13.5.crate", - "sha256": "4d25c75bf9ea12c4040a97f829154768bbbce366287e2dc044af160cd79a13fd", - "dest": "cargo/vendor/xmlparser-0.13.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"4d25c75bf9ea12c4040a97f829154768bbbce366287e2dc044af160cd79a13fd\", \"files\": {}}", - "dest": "cargo/vendor/xmlparser-0.13.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/yaml-rust/yaml-rust-0.4.5.crate", - "sha256": "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85", - "dest": "cargo/vendor/yaml-rust-0.4.5" - }, - { - "type": "inline", - "contents": "{\"package\": \"56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85\", \"files\": {}}", - "dest": "cargo/vendor/yaml-rust-0.4.5", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/zbus/zbus-3.10.0.crate", - "sha256": "f770930448dd412a4a7131dd968a8e6df0064db4d7916fbbd2d6c3f26b566938", - "dest": "cargo/vendor/zbus-3.10.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"f770930448dd412a4a7131dd968a8e6df0064db4d7916fbbd2d6c3f26b566938\", \"files\": {}}", - "dest": "cargo/vendor/zbus-3.10.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/zbus_macros/zbus_macros-3.10.0.crate", - "sha256": "4832059b438689017db7340580ebabba07f114eab91bf990c6e55052408b40d8", - "dest": "cargo/vendor/zbus_macros-3.10.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"4832059b438689017db7340580ebabba07f114eab91bf990c6e55052408b40d8\", \"files\": {}}", - "dest": "cargo/vendor/zbus_macros-3.10.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/zbus_names/zbus_names-2.5.1.crate", - "sha256": "82441e6033be0a741157a72951a3e4957d519698f3a824439cc131c5ba77ac2a", - "dest": "cargo/vendor/zbus_names-2.5.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"82441e6033be0a741157a72951a3e4957d519698f3a824439cc131c5ba77ac2a\", \"files\": {}}", - "dest": "cargo/vendor/zbus_names-2.5.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/zune-inflate/zune-inflate-0.2.54.crate", - "sha256": "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02", - "dest": "cargo/vendor/zune-inflate-0.2.54" - }, - { - "type": "inline", - "contents": "{\"package\": \"73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02\", \"files\": {}}", - "dest": "cargo/vendor/zune-inflate-0.2.54", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/zvariant/zvariant-3.14.0.crate", - "sha256": "622cc473f10cef1b0d73b7b34a266be30ebdcfaea40ec297dd8cbda088f9f93c", - "dest": "cargo/vendor/zvariant-3.14.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"622cc473f10cef1b0d73b7b34a266be30ebdcfaea40ec297dd8cbda088f9f93c\", \"files\": {}}", - "dest": "cargo/vendor/zvariant-3.14.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/zvariant_derive/zvariant_derive-3.14.0.crate", - "sha256": "5d9c1b57352c25b778257c661f3c4744b7cefb7fc09dd46909a153cce7773da2", - "dest": "cargo/vendor/zvariant_derive-3.14.0" - }, - { - "type": "inline", - "contents": "{\"package\": \"5d9c1b57352c25b778257c661f3c4744b7cefb7fc09dd46909a153cce7773da2\", \"files\": {}}", - "dest": "cargo/vendor/zvariant_derive-3.14.0", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "archive", - "archive-type": "tar-gzip", - "url": "https://static.crates.io/crates/zvariant_utils/zvariant_utils-1.0.1.crate", - "sha256": "7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200", - "dest": "cargo/vendor/zvariant_utils-1.0.1" - }, - { - "type": "inline", - "contents": "{\"package\": \"7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200\", \"files\": {}}", - "dest": "cargo/vendor/zvariant_utils-1.0.1", - "dest-filename": ".cargo-checksum.json" - }, - { - "type": "inline", - "contents": "[source.vendored-sources]\ndirectory = \"cargo/vendor\"\n\n[source.crates-io]\nreplace-with = \"vendored-sources\"\n", - "dest": "cargo", - "dest-filename": "config" - } -] \ No newline at end of file diff --git a/rd-submodules/dolphin/detectflatpak.patch b/rd-submodules/dolphin/detectflatpak.patch deleted file mode 100644 index 80930684..00000000 --- a/rd-submodules/dolphin/detectflatpak.patch +++ /dev/null @@ -1,33 +0,0 @@ -From f2d3b349d8487cf0ee50b36ba024ac513d36f826 Mon Sep 17 00:00:00 2001 -From: Carles Pastor -Date: Sat, 20 Aug 2022 13:35:32 +0200 -Subject: [PATCH] Detect we are running inside a flatpak sandbox - ---- - Source/Core/UICommon/UICommon.cpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/Source/Core/UICommon/UICommon.cpp b/Source/Core/UICommon/UICommon.cpp -index 8d9dc2abb8..8a9d39a3d5 100644 ---- a/Source/Core/UICommon/UICommon.cpp -+++ b/Source/Core/UICommon/UICommon.cpp -@@ -348,7 +348,7 @@ void SetUserDirectory(std::string custom_path) - // -> Use GetExeDirectory()/User - // 2. $DOLPHIN_EMU_USERPATH is set - // -> Use $DOLPHIN_EMU_USERPATH -- // 3. ~/.dolphin-emu directory exists -+ // 3. ~/.dolphin-emu directory exists, and we're not in flatpak - // -> Use ~/.dolphin-emu - // 4. Default - // -> Use XDG basedir, see -@@ -381,7 +381,7 @@ void SetUserDirectory(std::string custom_path) - { - user_path = home_path + "." DOLPHIN_DATA_DIR DIR_SEP; - -- if (!File::Exists(user_path)) -+ if (File::Exists("/.flatpak-info") || !File::Exists(user_path)) - { - const char* data_home = getenv("XDG_DATA_HOME"); - std::string data_path = --- -2.37.1 diff --git a/rd-submodules/dolphin/nodirtyversion.patch b/rd-submodules/dolphin/nodirtyversion.patch deleted file mode 100644 index 2dacc209..00000000 --- a/rd-submodules/dolphin/nodirtyversion.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/CMake/ScmRevGen.cmake b/CMake/ScmRevGen.cmake -index aacf7491ce..503791cda8 100644 ---- a/CMake/ScmRevGen.cmake -+++ b/CMake/ScmRevGen.cmake -@@ -7,7 +7,7 @@ if(GIT_FOUND) - OUTPUT_VARIABLE DOLPHIN_WC_REVISION - OUTPUT_STRIP_TRAILING_WHITESPACE) - # defines DOLPHIN_WC_DESCRIBE -- execute_process(WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} COMMAND ${GIT_EXECUTABLE} describe --always --long --dirty -+ execute_process(WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} COMMAND ${GIT_EXECUTABLE} describe --always --long - OUTPUT_VARIABLE DOLPHIN_WC_DESCRIBE - OUTPUT_STRIP_TRAILING_WHITESPACE) - \ No newline at end of file diff --git a/rd-submodules/melonds/hotkeys.patch b/rd-submodules/melonds/hotkeys.patch deleted file mode 100644 index 8a90570c..00000000 --- a/rd-submodules/melonds/hotkeys.patch +++ /dev/null @@ -1,18 +0,0 @@ -diff -au1r melonDS/src/frontend/qt_sdl/main.cpp melonDS/src/frontend/qt_sdl/main.cpp ---- melonDS/src/frontend/qt_sdl/main.cpp 2023-05-06 17:27:24.822375255 +0200 -+++ melonDS/src/frontend/qt_sdl/main.cpp 2023-05-06 17:47:19.587498189 +0200 -@@ -1467,3 +1467,3 @@ - actSaveState[0] = submenu->addAction("File..."); -- actSaveState[0]->setShortcut(QKeySequence(Qt::ShiftModifier | Qt::Key_F9)); -+ actSaveState[0]->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_S)); - actSaveState[0]->setData(QVariant(0)); -@@ -1483,3 +1483,3 @@ - actLoadState[0] = submenu->addAction("File..."); -- actLoadState[0]->setShortcut(QKeySequence(Qt::Key_F9)); -+ actLoadState[0]->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_A)); - actLoadState[0]->setData(QVariant(0)); -@@ -1489,3 +1489,3 @@ - actUndoStateLoad = menu->addAction("Undo state load"); -- actUndoStateLoad->setShortcut(QKeySequence(Qt::Key_F12)); -+ actUndoStateLoad->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_8)); - connect(actUndoStateLoad, &QAction::triggered, this, &MainWindow::onUndoStateLoad); diff --git a/rd-submodules/primehack/detectflatpak.patch b/rd-submodules/primehack/detectflatpak.patch deleted file mode 100644 index 9c744da5..00000000 --- a/rd-submodules/primehack/detectflatpak.patch +++ /dev/null @@ -1,33 +0,0 @@ -From f2d3b349d8487cf0ee50b36ba024ac513d36f826 Mon Sep 17 00:00:00 2001 -From: Carles Pastor -Date: Sat, 20 Aug 2022 13:35:32 +0200 -Subject: [PATCH] Detect we are running inside a flatpak sandbox - ---- - Source/Core/UICommon/UICommon.cpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/Source/Core/UICommon/UICommon.cpp b/Source/Core/UICommon/UICommon.cpp -index 8d9dc2abb8..8a9d39a3d5 100644 ---- a/Source/Core/UICommon/UICommon.cpp -+++ b/Source/Core/UICommon/UICommon.cpp -@@ -348,7 +348,7 @@ void SetUserDirectory(std::string custom_path) - // -> Use GetExeDirectory()/User - // 2. $DOLPHIN_EMU_USERPATH is set - // -> Use $DOLPHIN_EMU_USERPATH -- // 3. ~/.dolphin-emu directory exists -+ // 3. ~/.dolphin-emu directory exists, and we're not in flatpak - // -> Use ~/.dolphin-emu - // 4. Default - // -> Use XDG basedir, see -@@ -381,7 +381,7 @@ void SetUserDirectory(std::string custom_path) - { - user_path = home_path + "." DOLPHIN_DATA_DIR DIR_SEP; - -- if (!File::Exists(user_path)) -+ if (File::Exists("/.flatpak-info") || !File::Exists(user_path)) - { - const char* data_home = getenv("XDG_DATA_HOME"); - std::string data_path = --- -2.37.1 \ No newline at end of file diff --git a/rd-submodules/primehack/nodirtyversion.patch b/rd-submodules/primehack/nodirtyversion.patch deleted file mode 100644 index 8d8482e3..00000000 --- a/rd-submodules/primehack/nodirtyversion.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/CMake/ScmRevGen.cmake b/CMake/ScmRevGen.cmake -index aacf7491ce..503791cda8 100644 ---- a/CMake/ScmRevGen.cmake -+++ b/CMake/ScmRevGen.cmake -@@ -7,7 +7,7 @@ if(GIT_FOUND) - OUTPUT_VARIABLE DOLPHIN_WC_REVISION - OUTPUT_STRIP_TRAILING_WHITESPACE) - # defines DOLPHIN_WC_DESCRIBE -- execute_process(WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} COMMAND ${GIT_EXECUTABLE} describe --always --long --dirty -+ execute_process(WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} COMMAND ${GIT_EXECUTABLE} describe --always --long - OUTPUT_VARIABLE DOLPHIN_WC_DESCRIBE - OUTPUT_STRIP_TRAILING_WHITESPACE) \ No newline at end of file diff --git a/rd-submodules/retroarch b/rd-submodules/retroarch deleted file mode 160000 index eec4bcca..00000000 --- a/rd-submodules/retroarch +++ /dev/null @@ -1 +0,0 @@ -Subproject commit eec4bcca8c9e514467fb62cca4a7b2d12c6a2328 diff --git a/rd-submodules/ryujinx b/rd-submodules/ryujinx deleted file mode 160000 index 41761a7d..00000000 --- a/rd-submodules/ryujinx +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 41761a7dc36ec8520bdaca796d9d0b1219b66a07 diff --git a/rd-submodules/ryujinx/.gitignore b/rd-submodules/ryujinx/.gitignore new file mode 100644 index 00000000..caeec172 --- /dev/null +++ b/rd-submodules/ryujinx/.gitignore @@ -0,0 +1 @@ +.flatpak-builder diff --git a/rd-submodules/ryujinx/.gitmodules b/rd-submodules/ryujinx/.gitmodules new file mode 100644 index 00000000..7b747ad6 --- /dev/null +++ b/rd-submodules/ryujinx/.gitmodules @@ -0,0 +1,3 @@ +[submodule "flatpak-builder-tools"] + path = flatpak-builder-tools + url = https://github.com/flatpak/flatpak-builder-tools.git diff --git a/rd-submodules/ryujinx/flathub.json b/rd-submodules/ryujinx/flathub.json new file mode 100644 index 00000000..c75b742a --- /dev/null +++ b/rd-submodules/ryujinx/flathub.json @@ -0,0 +1,3 @@ +{ + "only-arches": ["x86_64"] +} diff --git a/rd-submodules/ryujinx/org.ryujinx.Ryujinx.appdata.xml b/rd-submodules/ryujinx/org.ryujinx.Ryujinx.appdata.xml new file mode 100644 index 00000000..4c2a8463 --- /dev/null +++ b/rd-submodules/ryujinx/org.ryujinx.Ryujinx.appdata.xml @@ -0,0 +1,1058 @@ + + + org.ryujinx.Ryujinx + CC0-1.0 + MIT + Ryujinx + Ryujinx team + A Nintendo Switch Emulator + + Emulator + Game + + +

                                                            Ryujinx is an open-source Nintendo Switch emulator written in C#

                                                            +

                                                            This emulator aims at providing excellent accuracy and performance, a user-friendly interface, and consistent builds.

                                                            +
                                                            + org.ryujinx.Ryujinx.desktop + + Ryujinx + application/x-nx-nca + application/x-nx-nro + application/x-nx-nso + application/x-nx-nsp + application/x-nx-xci + + https://ryujinx.org/ + https://github.com/Ryujinx/Ryujinx/issues + https://github.com/Ryujinx/Ryujinx/wiki/Frequently-Asked-Questions + https://www.patreon.com/ryujinx + https://github.com/Ryujinx/Ryujinx/wiki/Ryujinx-Setup-%26-Configuration-Guide + + + Main screen + https://raw.githubusercontent.com/Ryujinx/Ryujinx-Website/main/public/assets/images/shell.png + + + The Legend of Zelda: Breath of the Wild running in fullscreen on Ryujinx + https://raw.githubusercontent.com/flathub/org.ryujinx.Ryujinx/master/screenshots/01.jpg + + + Metroid Dread running in fullscreen on Ryujinx + https://raw.githubusercontent.com/flathub/org.ryujinx.Ryujinx/master/screenshots/02.jpg + + + Pokémon Legends: Arceus in fullscreen on Ryujinx + https://raw.githubusercontent.com/flathub/org.ryujinx.Ryujinx/master/screenshots/03.jpg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Linux + 8192 + + + keyboard + pointing + gamepad + tablet + + + gamepad + + + + HiDpiIcon + ModernToolkit + +
                                                            diff --git a/rd-submodules/ryujinx/org.ryujinx.Ryujinx.yml b/rd-submodules/ryujinx/org.ryujinx.Ryujinx.yml new file mode 100644 index 00000000..1ae19286 --- /dev/null +++ b/rd-submodules/ryujinx/org.ryujinx.Ryujinx.yml @@ -0,0 +1,82 @@ +app-id: org.ryujinx.Ryujinx +runtime: org.freedesktop.Platform +runtime-version: '22.08' +sdk: org.freedesktop.Sdk +add-extensions: + org.freedesktop.Platform.ffmpeg-full: + version: '22.08' + directory: lib/ffmpeg + add-ld-path: . +finish-args: +- --share=ipc +- --socket=x11 +- --device=all +- --socket=pulseaudio +- --share=network +- --filesystem=home:ro +- --filesystem=xdg-run/app/com.discordapp.Discord:create +- --filesystem=xdg-config/gtk-3.0:ro +rename-icon: ryujinx +command: ryujinx-wrapper +modules: +- name: Ryujinx + buildsystem: simple + build-options: + no-debuginfo: true + no-debuginfo-compression: true + strip: false + arch: + x86_64: + env: + RUNTIME: linux-x64 + env: + PKG_CONFIG_PATH: /app/lib/pkgconfig:/app/share/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig + DOTNET_CLI_TELEMETRY_OPTOUT: 'true' + DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 'true' + RYUJINX_VERSION: 1.1.1035 + RYUJINX_TARGET_RELEASE_CHANNEL_OWNER: flathub + RYUJINX_TARGET_RELEASE_CHANNEL_REPO: org.ryujinx.Ryujinx + RYUJINX_TARGET_RELEASE_CHANNEL_NAME: master + build-commands: + - | + export PATH=$PATH:/run/build/Ryujinx/dotnet-sdk + export RYUJINX_GIT_SHORT_HASH=$(git rev-parse --short HEAD) + export RUNTIME_FRAMEWORK_VERSION=$(find nuget-sources -name 'microsoft.netcore.app.host.linux-x64.*' | grep -oP '(\d.\d.\d+.nupkg)' | grep -oP '(\d.\d.\d+)') + sed -r --in-place "s/\%\%RYUJINX_BUILD_VERSION\%\%/$RYUJINX_VERSION/g;" src/Ryujinx.Common/ReleaseInformation.cs + sed -r --in-place "s/\%\%RYUJINX_BUILD_GIT_HASH\%\%/$RYUJINX_GIT_SHORT_HASH/g;" src/Ryujinx.Common/ReleaseInformation.cs + sed -r --in-place "s/\%\%RYUJINX_TARGET_RELEASE_CHANNEL_NAME\%\%/$RYUJINX_TARGET_RELEASE_CHANNEL_NAME/g;" src/Ryujinx.Common/ReleaseInformation.cs + sed -r --in-place "s/\%\%RYUJINX_TARGET_RELEASE_CHANNEL_OWNER\%\%/$RYUJINX_TARGET_RELEASE_CHANNEL_OWNER/g;" src/Ryujinx.Common/ReleaseInformation.cs + sed -r --in-place "s/\%\%RYUJINX_TARGET_RELEASE_CHANNEL_REPO\%\%/$RYUJINX_TARGET_RELEASE_CHANNEL_REPO/g;" src/Ryujinx.Common/ReleaseInformation.cs + mkdir -p /app/bin + dotnet publish -c Release -r $RUNTIME /p:DebugType=embedded src/Ryujinx /p:Version=$RYUJINX_VERSION /p:SourceRevisionId=$RYUJINX_GIT_SHORT_HASH /p:ExtraDefineConstants="DISABLE_UPDATER%2CFORCE_EXTERNAL_BASE_DIR" /p:RuntimeFrameworkVersion=$RUNTIME_FRAMEWORK_VERSION --self-contained --source nuget-sources + if [ $? -ne 0 ]; then + exit 1; + fi; + cp -r --remove-destination /run/build/Ryujinx/src/Ryujinx/bin/Release/net7.0/$RUNTIME/publish/* /app/bin/ + mkdir -p /app/lib/ffmpeg + ln -s /usr/lib/x86_64-linux-gnu/libX11.so.6 /app/lib/libX11.so + install -Dm644 $FLATPAK_ID.appdata.xml /app/share/metainfo/$FLATPAK_ID.appdata.xml + install -Dm755 ryujinx-wrapper /app/bin/ryujinx-wrapper + install -Dm644 distribution/misc/Logo.svg /app/share/icons/hicolor/scalable/apps/ryujinx.svg + install -Dm644 distribution/linux/mime/Ryujinx.xml /app/share/mime/packages/$FLATPAK_ID.mime.xml + install -Dm644 distribution/linux/Ryujinx.desktop /app/share/applications/$FLATPAK_ID.desktop + desktop-file-edit --set-key="Exec" --set-value="ryujinx-wrapper %f" /app/share/applications/$FLATPAK_ID.desktop + sources: + - type: archive + only-arches: + - x86_64 + dest: dotnet-sdk + url: https://dotnetcli.azureedge.net/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-linux-x64.tar.gz + sha256: 4634fa4da7ae4e3dadb83e320a87fb26f0cb12a7ca02bf9f10e6c3c1c91d645c + x-checker-data: + type: rotating-url + url: https://aka.ms/dotnet/7.0/dotnet-sdk-linux-x64.tar.gz + pattern: https://dotnetcli.azureedge.net/dotnet/Sdk/^([\d\.a-z-]+)$/dotnet-sdk-^([\d\.a-z-]+)$-linux-x64.tar.gz + - nuget_sources.json + - type: git + url: https://github.com/Ryujinx/Ryujinx.git + commit: bc44b85b0bdcaf8140a04130e4a895677a01111f + - type: file + path: ryujinx-wrapper + - type: file + path: org.ryujinx.Ryujinx.appdata.xml diff --git a/rd-submodules/ryujinx/screenshots/01.jpg b/rd-submodules/ryujinx/screenshots/01.jpg new file mode 100644 index 00000000..f4527f3c Binary files /dev/null and b/rd-submodules/ryujinx/screenshots/01.jpg differ diff --git a/rd-submodules/ryujinx/screenshots/02.jpg b/rd-submodules/ryujinx/screenshots/02.jpg new file mode 100644 index 00000000..40d5cf8b Binary files /dev/null and b/rd-submodules/ryujinx/screenshots/02.jpg differ diff --git a/rd-submodules/ryujinx/screenshots/03.jpg b/rd-submodules/ryujinx/screenshots/03.jpg new file mode 100644 index 00000000..fa1e3e0b Binary files /dev/null and b/rd-submodules/ryujinx/screenshots/03.jpg differ diff --git a/rd-submodules/shared-modules b/rd-submodules/shared-modules deleted file mode 160000 index 782d3cc0..00000000 --- a/rd-submodules/shared-modules +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 782d3cc04ccdd8071017f622d4bacd35faecbd86 diff --git a/res/extra_splashes/placeholder.svg b/res/extra_splashes/placeholder.svg new file mode 100644 index 00000000..e4b76a32 --- /dev/null +++ b/res/extra_splashes/placeholder.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/extra_splashes/rd-lunar-snake-splash.svg b/res/extra_splashes/rd-lunar-snake-splash.svg new file mode 100644 index 00000000..8b978608 --- /dev/null +++ b/res/extra_splashes/rd-lunar-snake-splash.svg @@ -0,0 +1,151143 @@ + + diff --git a/res/extra_splashes/tanabata.svg b/res/extra_splashes/tanabata.svg new file mode 100644 index 00000000..87c461fa --- /dev/null +++ b/res/extra_splashes/tanabata.svg @@ -0,0 +1,335 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/icon-configurator.svg b/res/icon-configurator.svg index ee678f64..ace25951 100644 --- a/res/icon-configurator.svg +++ b/res/icon-configurator.svg @@ -1,96 +1,20 @@ - - - - - - - - - + + + + - - - + + + + + + + + + + + + + diff --git a/res/icon.svg b/res/icon.svg index 98563325..8acc0c37 100644 --- a/res/icon.svg +++ b/res/icon.svg @@ -1,18 +1 @@ - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/res/retrodeck.png b/res/retrodeck.png index d16329c3..8a5c560a 100755 Binary files a/res/retrodeck.png and b/res/retrodeck.png differ diff --git a/retrodeck.sh b/retrodeck.sh index 169b5da9..f335204a 100644 --- a/retrodeck.sh +++ b/retrodeck.sh @@ -2,30 +2,54 @@ source /app/libexec/global.sh +# uses jq to extract all the emulators (components) that don't have resettable: false in the features.json and separate them with "|" +resettable_components=$(jq -r ' + [(.emulator | to_entries[]) | + select(.value.core == null and .value.resettable != false) | + .key] | sort | join("|") +' "$features") + +# uses sed to create, a, list, like, this +pretty_resettable_components=$(echo "$resettable_components" | sed 's/|/, /g') + + +show_cli_help() { + echo -e " + Usage: +flatpak run [FLATPAK-RUN-OPTION] net.retrodeck-retrodeck [ARGUMENTS] + +Arguments: + -h, --help \t Print this help + -v, --version \t Print RetroDECK version + --info-msg \t Print paths and config informations + --debug \t Enable debug logging for this launch of RetroDECK (This may miss errors very early in the launch process) + --configurator \t Starts the RetroDECK Configurator + --compress-one \t Compresses target file to a compatible format + --compress-all \t Compresses all supported games into a compatible format.\n\t\t\t\t\t\t Available formats are \"chd\", \"zip\", \"rvz\" and \"all\" + --reset-component \t Reset one or more component or emulator configs to the default values + --reset-retrodeck \t Starts the initial RetroDECK installer (backup your data first!) + --test-upgrade \t Test upgrading RetroDECK to a specific version, developer use only + +Game Launch: + [] \t Start a game using the default emulator or\n\t\t\t\t\t\t the one defined in ES-DE for game or system + \t Options: + \t \t-e (emulator)\t Run the game with the defined emulator (optional) + \t \t-s (system)\t Force the game running with the defined system, for example running a gb game on gba (optional) + \t \t-m (manual)\t Manual mode: show the list of available emulator to choose from (optional) + +For flatpak run specific options please run: flatpak run -h + +https://retrodeck.net +" +} + # Arguments section for i in "$@"; do case $i in -h*|--help*) echo "RetroDECK v""$version" - echo " - Usage: -flatpak run [FLATPAK-RUN-OPTION] net.retrodeck-retrodeck [ARGUMENTS] - -Arguments: - -h, --help Print this help - -v, --version Print RetroDECK version - --info-msg Print paths and config informations - --configurator Starts the RetroDECK Configurator - --compress-one Compresses target file to a compatible format - --compress-all Compresses all supported games into a compatible format. Available formats are \"chd\", \"zip\", \"rvz\" and \"all\". - --reset-component Reset one or more component or emulator configs to the default values - --reset-retrodeck Starts the initial RetroDECK installer (backup your data first!) - -For flatpak run specific options please run: flatpak run -h - -https://retrodeck.net -" + show_cli_help exit ;; --version*|-v*) @@ -39,6 +63,10 @@ https://retrodeck.net cat $rd_conf exit ;; + --debug*) + logging_level="debug" + shift + ;; --compress-one*) cli_compress_single_game "$2" exit @@ -48,18 +76,26 @@ https://retrodeck.net ;; --configurator*) sh /app/tools/configurator.sh - if [[ $(configurator_generic_question_dialog "RetroDECK Configurator" "Would you like to launch RetroDECK after closing the Configurator?") == "false" ]]; then - exit - else - shift - fi + #sh /app/bin/godot-configurator.sh ;; + # --legacy-configurator*) + # sh /app/tools/configurator.sh + # if [[ $(configurator_generic_question_dialog "RetroDECK Configurator" "Would you like to launch RetroDECK after closing the Configurator?") == "false" ]]; then + # exit + # else + # shift + # fi + # ;; --reset-component*) - echo "You are about to reset one or more RetroDECK components or emulators." - echo "Available options are: es-de, retroarch, cemu, dolphin, duckstation, gzdoom, melonds, pcsx3, pico8, ppsspp, primehack, rpcs3, ryujinx, xemu, vita3k, mame, all" - read -p "Please enter the component you would like to reset: " component - component=$(echo "$component" | tr '[:upper:]' '[:lower:]') - if [[ "$component" =~ ^(es-de|retroarch|cemu|dolphin|duckstation|gzdoom|mame|melonds|pcsx2|ppsspp|primehack|ryujinx|rpcs3|vita3k|xemu|all)$ ]]; then + component="$2" + if [ -z "$component" ]; then + echo "You are about to reset one or more RetroDECK components or emulators." + echo -e "Available options are:\nall, $pretty_resettable_components" + read -p "Please enter the component you would like to reset: " component + component=$(echo "$component" | tr '[:upper:]' '[:lower:]') + fi + + if [[ "$component" =~ ^(all|$resettable_components)$ ]]; then read -p "You are about to reset $component to default settings. Enter 'y' to continue, 'n' to stop: " response if [[ $response == [yY] ]]; then prepare_component "reset" "$component" "cli" @@ -97,16 +133,26 @@ https://retrodeck.net shift fi ;; - -*|--*) - echo "Unknown option $i" - exit 1 - ;; *) - validate_input "$i" - if [[ ! $input_validated == "true" ]]; then - echo "Please specify a valid option. Use -h for more information." + # Assume unknown arguments are game start arguments + if [ -f "$i" ]; then + log i "Attempting to start the game: $i" + run_game "$@" + exit + elif [[ "$i" == "-e" || "$i" == "-s" || "$i" == "-m" ]]; then + log i "Game start option detected: $i" + run_game "$@" + exit + else + log i "Command or File '$i' not found. Ignoring argument and continuing..." + break # Continue with the main program fi ;; + -*|--*) + log i "Unknown option $i" + show_cli_help + exit 1 + ;; esac done @@ -195,3 +241,5 @@ fi # Normal Startup start_retrodeck +# After everything is closed we run the quit function +quit_retrodeck diff --git a/tools/configurator.sh b/tools/configurator.sh old mode 100644 new mode 100755 index c2d455e0..91294bcd --- a/tools/configurator.sh +++ b/tools/configurator.sh @@ -24,7 +24,7 @@ source /app/libexec/global.sh # - Wii & GameCube: Presets & Settings # - Dolphin Textures: Universal Dynamic Input # - Primehack Textures: Universal Dynamic Input -# - Open Emulator (Behind one-time power user warning dialog) +# - Open Emulator or Component (Behind one-time power user warning dialog) # - RetroArch # - Cemu # - Citra @@ -34,7 +34,9 @@ source /app/libexec/global.sh # - MelonDS # - PCSX2 # - PPSSPP +# - PortMaster # - Primehack +# - Ruffle # - RPCS3 # - Ryujinx # - Vita3K @@ -68,7 +70,6 @@ source /app/libexec/global.sh # - Troubleshooting # - Backup: RetroDECK Userdata # - Check & Verify: BIOS -# - Check & Verify: BIOS - Expert Mode # - Check & Verify: Multi-file structure # - RetroDECK: Reset # - Reset Emulator or Engine @@ -82,9 +83,12 @@ source /app/libexec/global.sh # - Reset MelonDS # - Reset PCSX2 # - Reset PPSSPP +# - Reset PortMaster # - Reset Primehack +# - Reset Ruffle # - Reset RPCS3 # - Reset Ryujinx +# - Reset Steam ROM Manager # - Reset Vita3k # - Reset XEMU # - Reset Yuzu @@ -96,10 +100,10 @@ source /app/libexec/global.sh # - Full changelog # - Version-specific changelogs # - RetroDECK Credits -# - Add to Steam +# - Steam Sync # - Developer Options (Hidden) # - Change Multi-user mode -# - Change Update channel +# - Install Specific Release # - Browse the wiki # - Install: RetroDECK Starter Pack # - Tool: USB Import @@ -110,15 +114,15 @@ configurator_welcome_dialog() { log i "Configurator: opening welcome dialog" if [[ $developer_options == "true" ]]; then welcome_menu_options=("Presets & Settings" "Here you will find various presets, tweaks and settings to customize your RetroDECK experience" \ - "Open Emulator" "Launch and configure each emulator's settings (for advanced users)" \ + "Open Emulator or Component" "Launch and configure each emulator or component's settings (for advanced users)" \ "RetroDECK: Tools" "Compress games, move RetroDECK and install optional features" \ "RetroDECK: Troubleshooting" "Backup data, perform BIOS / multi-disc file checks and emulator resets" \ "RetroDECK: About" "Show additional information about RetroDECK" \ - "Sync with Steam" "Sync all favorited games with Steam" \ + "Steam Sync" "Sync all favorited games with Steam" \ "Developer Options" "Welcome to the DANGER ZONE") else welcome_menu_options=("Presets & Settings" "Here you find various presets, tweaks and settings to customize your RetroDECK experience" \ - "Open Emulator" "Launch and configure each emulators settings (for advanced users)" \ + "Open Emulator or Component" "Launch and configure each emulator or component's settings (for advanced users)" \ "RetroDECK: Tools" "Compress games, move RetroDECK and install optional features" \ "RetroDECK: Troubleshooting" "Backup data, perform BIOS / multi-disc file checks checks and emulator resets" \ "RetroDECK: About" "Show additional information about RetroDECK") @@ -136,7 +140,7 @@ configurator_welcome_dialog() { configurator_presets_and_settings_dialog ;; - "Open Emulator" ) + "Open Emulator or Component" ) log i "Configurator: opening \"$choice\" menu" configurator_power_user_warning_dialog ;; @@ -148,6 +152,7 @@ configurator_welcome_dialog() { "RetroDECK: Troubleshooting" ) log i "Configurator: opening \"$choice\" menu" + # Call the troubleshooting dialog to return to the previous menu after checking BIOS files configurator_retrodeck_troubleshooting_dialog ;; @@ -156,6 +161,10 @@ configurator_welcome_dialog() { configurator_about_retrodeck_dialog ;; + "Steam Sync" ) + configurator_steam_sync + ;; + "Developer Options" ) log i "Configurator: opening \"$choice\" menu" configurator_generic_dialog "RetroDECK Configurator - Developer Options" "The following features and options are potentially VERY DANGEROUS for your RetroDECK install!\n\nThey should be considered the bleeding-edge of upcoming RetroDECK features, and never used when you have important saves/states/roms that are not backed up!\n\nYOU HAVE BEEN WARNED!" @@ -442,9 +451,12 @@ configurator_open_emulator_dialog() { "MelonDS" "Open the NDS emulator MelonDS" "PCSX2" "Open the PS2 emulator PSXC2" "PPSSPP" "Open the PSP emulator PPSSPP" + "PortMaster" "Open PortMaster to manage your ports, even available from games list under PortMaster system" "Primehack" "Open the Metroid Prime emulator Primehack" + "Ruffle" "Open the Flash emulator Ruffle" "RPCS3" "Open the PS3 emulator RPCS3" "Ryujinx" "Open the Switch emulator Ryujinx" + "Steam ROM Manager" "Open Steam ROM Manager" "Vita3K" "Open the PSVita emulator Vita3K" "XEMU" "Open the Xbox emulator XEMU" ) @@ -458,7 +470,7 @@ configurator_open_emulator_dialog() { fi emulator=$(rd_zenity --list \ - --title "RetroDECK Configurator Utility - Open Emulator" --cancel-label="Back" \ + --title "RetroDECK Configurator Utility - Open Emulator or Component" --cancel-label="Back" \ --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" --width=1200 --height=720 \ --text="Which emulator do you want to launch?" \ --hide-header \ @@ -512,11 +524,21 @@ configurator_open_emulator_dialog() { PPSSPPSDL ;; + "PortMaster" ) + log i "Configurator: \"$emulator\"" + PortMaster + ;; + "Primehack" ) log i "Configurator: \"$emulator\"" primehack-wrapper ;; + "Ruffle" ) + log i "Configurator: \"$emulator\"" + ruffle + ;; + "RPCS3" ) log i "Configurator: \"$emulator\"" rpcs3 @@ -527,6 +549,11 @@ configurator_open_emulator_dialog() { Ryujinx.sh ;; + "Steam ROM Manager" ) + log i "Configurator: \"$emulator\"" + steam-rom-manager + ;; + "Vita3K" ) log i "Configurator: \"$emulator\"" Vita3K @@ -852,7 +879,7 @@ configurator_compress_single_game_dialog() { } configurator_compress_multiple_games_dialog() { - # This dialog will display any games it finds to be compressable, from the systems listed under each compression type in compression_targets.cfg + # This dialog will display any games it finds to be compressable, from the systems listed under each compression type in features.json find_compatible_games "$1" @@ -959,7 +986,6 @@ configurator_retrodeck_troubleshooting_dialog() { --column="Choice" --column="Action" \ "Backup: RetroDECK Userdata" "Compress and backup important RetroDECK user data folders" \ "Check & Verify: BIOS Files" "Show information about common BIOS files" \ - "Check & Verify: BIOS Files - Expert Mode" "Show information about common BIOS files, with additional information useful for troubleshooting" \ "Check & Verify: Multi-file structure" "Verify the proper structure of multi-file or multi-disc games" \ "RetroDECK: Reset" "Reset specific parts or all of RetroDECK" ) @@ -988,10 +1014,6 @@ configurator_retrodeck_troubleshooting_dialog() { configurator_check_bios_files ;; - "Check & Verify: BIOS Files - Expert Mode" ) - configurator_check_bios_files_expert_mode - ;; - "Check & Verify: Multi-file structure" ) log i "Configurator: opening \"$choice\" menu" configurator_check_multifile_game_structure @@ -1010,40 +1032,106 @@ configurator_retrodeck_troubleshooting_dialog() { esac } +# This function checks and verifies BIOS files for RetroDECK. +# It reads a list of required BIOS files from a JSON file, checks if they exist in the specified folder, +# verifies their MD5 hashes if provided, and displays the results in a Zenity dialog. configurator_check_bios_files() { + configurator_generic_dialog "RetroDECK Configurator - Check & Verify: BIOS Files" "This check will look for BIOS files that RetroDECK has identified as working.\n\nNot all BIOS files are required for games to work, please check the BIOS description for more information on its purpose.\n\nBIOS files not known to this tool could still function.\n\nSome more advanced emulators such as Ryujinx will have additional methods to verify that the BIOS files are in working order." - bios_checked_list=() - check_bios_files "basic" + log d "Starting BIOS check in mode: $mode" - rd_zenity --list --title="RetroDECK Configurator Utility - Check & Verify: BIOS Files" --cancel-label="Back" \ - --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" --width=1200 --height=720 \ - --column "BIOS File Name" \ - --column "System" \ - --column "BIOS File Found" \ - --column "BIOS Hash Match" \ - --column "BIOS File Description" \ - "${bios_checked_list[@]}" + ( - configurator_retrodeck_troubleshooting_dialog -} + # Read the BIOS checklist from bios.json using jq + total_bios=$(jq '.bios | length' $bios_checklist) + current_bios=0 -configurator_check_bios_files_expert_mode() { - configurator_generic_dialog "RetroDECK Configurator - Check & Verify: BIOS Files - Expert Mode" "This check will look for BIOS files that RetroDECK has identified as working.\n\nNot all BIOS files are required for games to work, please check the BIOS description for more information on its purpose.\n\nBIOS files not known to this tool could still function.\n\nSome more advanced emulators such as Ryujinx will have additional methods to verify that the BIOS files are in working order." - bios_checked_list=() + log d "Total BIOS files to check: $total_bios" - check_bios_files "expert" + declare -a bios_checked_list - rd_zenity --list --title="RetroDECK Configurator Utility - Check & Verify: BIOS Files" --cancel-label="Back" \ - --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" --width=1200 --height=720 \ - --column "BIOS File Name" \ - --column "System" \ - --column "BIOS File Found" \ - --column "BIOS Hash Match" \ - --column "BIOS File Description" \ - --column "BIOS File Subdirectory" \ - --column "BIOS File Hash" \ - "${bios_checked_list[@]}" + while read -r entry; do + # Extract the key (element name) and the fields + bios_file=$(echo "$entry" | jq -r '.key // "Unknown"') + bios_md5=$(echo "$entry" | jq -r '.value.md5 | if type=="array" then join(", ") else . end // "Unknown"') + bios_systems=$(echo "$entry" | jq -r '.value.system | if type=="array" then join(", ") else . end // "Unknown"') + # Broken + #bios_systems_pretty=$(echo "$bios_systems" | jq -R -r 'split(", ") | map(. as $sys | input_filename | gsub("features.json"; "") | .emulator[$sys].name) | join(", ")' --slurpfile features $features) + bios_desc=$(echo "$entry" | jq -r '.value.description // "No description provided"') + required=$(echo "$entry" | jq -r '.value.required // "No"') + bios_paths=$(echo "$entry" | jq -r '.value.paths | if type=="array" then join(", ") else . end // "'"$bios_folder"'"' | sed "s|"$rdhome/"||") + + log d "Checking entry $bios_entry" + + # Replace "bios/" with $bios_folder and "roms/" with $roms_folder + bios_paths=$(echo "$bios_paths" | sed "s|bios/|$bios_folder/|g" | sed "s|roms/|$roms_folder/|g") + + # Skip if bios_file is empty + if [[ ! -z "$bios_file" ]]; then + bios_file_found="Yes" + bios_md5_matched="No" + + IFS=', ' read -r -a paths_array <<< "$bios_paths" + for path in "${paths_array[@]}"; do + if [[ ! -f "$path/$bios_file" ]]; then + bios_file_found="No" + break + fi + done + + if [[ $bios_file_found == "Yes" ]]; then + IFS=', ' read -r -a md5_array <<< "$bios_md5" + for md5 in "${md5_array[@]}"; do + if [[ $(md5sum "$path/$bios_file" | awk '{ print $1 }') == "$md5" ]]; then + bios_md5_matched="Yes" + break + fi + done + fi + + log d "BIOS file found: $bios_file_found, Hash matched: $bios_md5_matched" + log d "Expected path: $path/$bios_file" + log d "Expected MD5: $bios_md5" + + fi + + log d "Adding BIOS entry: \"$bios_file $bios_systems $bios_file_found $bios_md5_matched $bios_desc $bios_paths $bios_md5\" to the bios_checked_list" + + if [[ $bios_checked_list != "" ]]; then + bios_checked_list=("${bios_checked_list[@]}"^"$bios_file^$bios_systems^$bios_file_found^$bios_md5_matched^$required^$bios_paths^$bios_desc^$bios_md5") + else + bios_checked_list=("$bios_file^$bios_systems^$bios_file_found^$bios_md5_matched^$required^$bios_paths^$bios_desc^$bios_md5") + fi + #echo "$bios_file"^"$bios_systems"^"$bios_file_found"^"$bios_md5_matched"^"$bios_paths"^"$bios_md5"^"$bios_desc" # Godot data transfer #TODO: this is breaking the zenity dialog, since we don't release Godot in this version I disabled it. + + current_bios=$((current_bios + 1)) + echo "$((current_bios * 100 / total_bios))" + + done < <(jq -c '.bios | to_entries[]' "$bios_checklist") + + log d "Finished checking BIOS files" + + IFS="^" # Set the Internal Field Separator to ^ to split the bios_checked_list array + rd_zenity --list --title="RetroDECK Configurator Utility - Check & Verify: BIOS Files" --cancel-label="Back" \ + --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" --width=1200 --height=720 \ + --column "BIOS File Name" \ + --column "Systems" \ + --column "Found" \ + --column "Hash Matches" \ + --column "Required" \ + --column "Expected Path" \ + --column "Description" \ + --column "MD5" \ + $(printf '%s\n' "${bios_checked_list[@]}") + IFS=$' \t\n' # Reset the Internal Field Separator + + ) | + rd_zenity --progress --no-cancel --auto-close \ + --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ + --title "RetroDECK Configurator Utility - BIOS Check in Progress" \ + --text="RetroDECK is checking your BIOS files, please wait..." \ + --width=400 --height=100 configurator_retrodeck_troubleshooting_dialog } @@ -1086,9 +1174,12 @@ configurator_reset_dialog() { "MelonDS" "Reset the NDS emulator MelonDS to default settings" "PCSX2" "Reset the PS2 emulator PCSX2 to default settings" "PPSSPP" "Reset the PSP emulator PPSSPP to default settings" + "PortMaster" "Reset PortMaster to default settings" "Primehack" "Reset the Metroid Prime emulator Primehack to default settings" + "Ruffle" "Reset the Flash emulator Ruffle to default settings" "RPCS3" "Reset the PS3 emulator RPCS3 to default settings" "Ryujinx" "Reset the Switch emulator Ryujinx to default settings" + "Steam ROM Manager" "Reset Steam ROM Manager to default settings" "Vita3k" "Reset the PS Vita emulator Vita3k to default settings" "XEMU" "Reset the XBOX emulator XEMU to default settings" ) @@ -1129,7 +1220,7 @@ configurator_reset_dialog() { fi ;; - "Cemu" | "Citra" | "Dolphin" | "Duckstation" | "GZDoom" | "Yuzu" | "MelonDS" | "MAME" | "PCSX2" | "PPSSPP" | "Primehack" | "RPCS3" | "Ryujinx" ) + "Cemu" | "Citra" | "Dolphin" | "Duckstation" | "GZDoom" | "Yuzu" | "MelonDS" | "MAME" | "PCSX2" | "PPSSPP" | "PortMaster" | "Primehack" | "Ruffle" | "RPCS3" | "Ryujinx" | "SteamROMManager" ) if [[ $(configurator_reset_confirmation_dialog "$component_to_reset" "Are you sure you want to reset the $component_to_reset emulator to default settings?\n\nThis process cannot be undone.") == "true" ]]; then prepare_component "reset" "$component_to_reset" "configurator" configurator_process_complete_dialog "resetting $component_to_reset" @@ -1152,12 +1243,13 @@ configurator_reset_dialog() { --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" --width=1200 --height=720 \ --text="Which component do you want to reset to default settings?" \ --column="Component" --column="Action" \ + "Steam ROM Manager" "Reset SRM that manages the sync and scraping toward Steam library" \ "ES-DE" "Reset the ES-DE frontend" \ ) # TODO: "GyroDSU" "Reset the gyroscope manager GyroDSU" case $component_to_reset in - "ES-DE" ) # TODO: GyroDSU + "Steam ROM Manager" | "ES-DE" ) # TODO: GyroDSU if [[ $(configurator_reset_confirmation_dialog "$component_to_reset" "Are you sure you want to reset $component_to_reset to default settings?\n\nThis process cannot be undone.") == "true" ]]; then prepare_component "reset" "$component_to_reset" "configurator" configurator_process_complete_dialog "resetting $component_to_reset" @@ -1238,7 +1330,7 @@ configurator_about_retrodeck_dialog() { rd_zenity --icon-name=net.retrodeck.retrodeck --text-info --width=1200 --height=720 \ --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ --title "RetroDECK Credits" \ - --filename="$emuconfigs/defaults/retrodeck/reference_lists/retrodeck_credits.txt" + --filename="$config/retrodeck/reference_lists/retrodeck_credits.txt" configurator_about_retrodeck_dialog ;; @@ -1250,8 +1342,56 @@ configurator_about_retrodeck_dialog() { esac } +configurator_steam_sync() { + if [[ $(get_setting_value "$rd_conf" "steam_sync" retrodeck "options") == "true" ]]; then + zenity --question \ + --no-wrap --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ + --title "RetroDECK Configurator - RetroDECK Steam Syncronization" \ + --text="Steam syncronization is currently enabled.\nDisabling Steam Sync will remove all of your favorites from Steam at the next Steam startup.\n\nDo you want to continue?\n\nTo re-add them, just reenable Steam Sync then and restart Steam." + + if [ $? == 0 ] # User clicked "Yes" + then + disable_steam_sync + else # User clicked "Cancel" + configurator_welcome_dialog + fi + else + zenity --question \ + --no-wrap --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ + --title "RetroDECK Configurator - RetroDECK Steam Syncronization" \ + --text="Steam synchronization is currently disabled. Do you want to enable it?\n\nAll the games marked as favorites will be synchronized with Steam ROM Manager.\nRemember to restart Steam each time to see the changes.\n\nNOTE: games with unusual characters such as '/\{}<>* might break the sync, please refer to the Wiki for more info." + + if [ $? == 0 ] + then + enable_steam_sync + else + configurator_welcome_dialog + fi + fi +} + +enable_steam_sync() { + set_setting_value "$rd_conf" "steam_sync" "true" retrodeck "options" + zenity --icon-name=net.retrodeck.retrodeck --info --no-wrap --ok-label="OK" \ + --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ + --title "RetroDECK Configurator - RetroDECK Steam Syncronization" \ + --text="Steam syncronization enabled." + configurator_welcome_dialog +} + +disable_steam_sync() { + set_setting_value "$rd_conf" "steam_sync" "false" retrodeck "options" + source /app/libexec/steam_sync.sh + remove_from_steam + zenity --icon-name=net.retrodeck.retrodeck --info --no-wrap --ok-label="OK" \ + --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ + --title "RetroDECK Configurator - RetroDECK Steam Syncronization" \ + --text="Steam syncronization disabled and shortcuts removed, restart Steam to apply the changes." + configurator_welcome_dialog +} + configurator_version_history_dialog() { - local version_array=($(xml sel -t -v '//component/releases/release/@version' -n $rd_appdata)) + local version_array=($(xml sel -t -v '//component/releases/release/@version' -n $rd_metainfo)) local all_versions_list=() for rd_version in ${version_array[*]}; do @@ -1287,10 +1427,11 @@ configurator_developer_dialog() { --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" --width=1200 --height=720 \ --column="Choice" --column="Description" \ "Change Multi-user mode" "Enable or disable multi-user support" \ - "Change Update Channel" "Change between normal and cooker builds" \ + "Install Specific Release" "Install any cooker release or the latest main available" \ "Browse the Wiki" "Browse the RetroDECK wiki online" \ "Install RetroDECK Starter Pack" "Install the optional RetroDECK starter pack" \ - "Tool: USB Import" "Prepare a USB device for ROMs or import an existing collection") + "Tool: USB Import" "Prepare a USB device for ROMs or import an existing collection" \ + "Open GODOT Configurator" "Open the new Configurator made in GODOT engine") case $choice in @@ -1299,14 +1440,14 @@ configurator_developer_dialog() { configurator_retrodeck_multiuser_dialog ;; - "Change Update Channel" ) + "Install Specific Release" ) log i "Configurator: opening \"$choice\" menu" configurator_online_update_channel_dialog ;; "Browse the Wiki" ) log i "Configurator: opening \"$choice\" menu" - xdg-open "https://github.com/XargonWan/RetroDECK/wiki" + xdg-open "https://github.com/RetroDECK/RetroDECK/wiki" configurator_developer_dialog ;; @@ -1323,6 +1464,11 @@ configurator_developer_dialog() { configurator_usb_import_dialog ;; + "Open GODOT Configurator" ) + log i "Configurator: opening \"$choice\" menu" + "godot-configurator.sh" + ;; + "" ) # No selection made or Back button clicked log i "Configurator: going back" configurator_welcome_dialog @@ -1372,17 +1518,8 @@ configurator_online_update_channel_dialog() { configurator_developer_dialog fi else - rd_zenity --question \ - --no-wrap --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ - --title "RetroDECK Configurator - RetroDECK Change Update Branch" \ - --text="You are currently on the cooker branch of RetroDECK updates. Would you like to switch to the production branch?\n\nAfter installing a production build, you may need to remove the \"cooker\" branch install of RetroDECK to avoid overlap." - - if [ $? == 0 ] # User clicked "Yes" - then - set_setting_value $rd_conf "update_repo" "RetroDECK" retrodeck "options" - else # User clicked "Cancel" - configurator_developer_dialog - fi + set_setting_value $rd_conf "update_repo" "RetroDECK" retrodeck "options" + release_selector fi } diff --git a/tools/configurator/ENG-DESCRIPTIONS-TEMP.txt b/tools/configurator/ENG-DESCRIPTIONS-TEMP.txt new file mode 100644 index 00000000..356257f7 --- /dev/null +++ b/tools/configurator/ENG-DESCRIPTIONS-TEMP.txt @@ -0,0 +1,112 @@ +Quick Resume +Activate "Quick Resume" to continue playing your games from where you left off. With Quick Resume enabled, the system automatically saves your progress when you close a game and loads it when you start the game again. +Please note that certain systems, like DOS, PS2, PS3, PSVita, and Switch, do not currently support this feature. + +Rewind +When "Rewind" is turned on, hold HOTKEY + L2 to rewind your gameplay, allowing you to alter your destiny. Keep in mind that activating this feature might cause slowdowns on some systems. +Note: "Rewind" is not supported on certain systems, including DOS, PS2, PS3, PSVita, and Switch. + +Quit Confirmation +Activate "Quit Confirmation" to prevent accidental exits. This feature prompts you before quitting a game, ensuring you don't lose progress unintentionally. + +Cheats +Unlock extra fun with "Cheats." Enable cheat codes to gain advantages to simplify your gaming experience. + +Borders +Enable or disable the drawing of borders around the game. +Note: this will disable the "Widescreen option". + +Wide Screen +If enabled it widens the display, providing a more expansive gaming experience on supported systems. +Note: this will disable the "Borders option". + +Shaders +When turned on, "Shaders" displays the game just like it appeared on the original console's screen. + +Mods +Enable or disable the loading of the installed mods. + +TATE Mode +Turn on "TATE Mode" for games that support vertical screen orientation. This feature allows you to enjoy selected titles in portrait mode, mimicking the arcade experience. +"Tate" (縦) means "vertical" in Japanese. + +Steam: Controller Templates +Install the RetroDECK controller templates fror Steam. Once installed they will be automatically updated when an update is available. +The controller templates will enable hotkeys and raidal menu (radial menu is currently available on Steam Deck trackpad only). +Check the wiki for further details. + +Button Layout +Select the desired button layout: +Classic: A, B X and Y are in the Steam Deck/Xbox layout. +Nintendo: A and B got their function inverted, same for X and Y like in the Nintendo controllers. + +Hotkey Activation Sound +When this option is enabled you will hear a sound when the HOTKEY button is pressed. + +[scan] +PlayStation 3 Games <- remove + +ScummVM Games +Generate the entries of ScummVM games to adhere to the RetroDECK/ES-DE standard. +More on this in the wiki. + +Multi-file Structure +Group the multi disc or multi file games as a single game entry on the games list. +More on this in the wiki. + +3DS Game Decrypter +Decrypt your 3DS games. +Note: you should provide the keys file, more on this in the wiki. + +BIOS +Check which BIOS files are recognized by RetroDECK and which ones are missing. + +Open Emulator... +Open an emulator to manually tweak the configurations. +WARNING: this can breaking for the less expert users, you can always reset them by going to Troubleshoot > Reset menu. + +Install RetroDECK Steam Grids <- rename to Add RetroDECK to Steam + +Show Favorites as Steam Games +If this option is enabled the game marked as favorites will be added to Steam, when disabled they will be removed. +NOTE: the RetroDECK controller layout is not automatically applied to the single game entries. + +USB Transfer Tool +Backup User Data +Compress Games +Move User Files + +Retro Aechievements +Advanced +Hardcore Mode +Show Throphies +Login + +Netplay ID +Address +Connect <- this is wrong probably, should be a toggle on Netplay ID? + +Saves Sync +Start FTP Server <- Rename to SFTP + +Check Connection +Show Logs + +[reset] +Single Emulator... +All Emulators +Full RetroDECK Reset + +Update Notification +Show Easter Eggs <- rename in Seasonal Loading Screen +Multi-User Mode (off, steam users, custom users) rename to retrodeck users +Menu Music + +[about] +Website +Version History +Wiki +Credits +Donate +Reach Us +Licenses diff --git a/tools/configurator/assets/Tilemap/tilemap.png b/tools/configurator/assets/Tilemap/tilemap.png new file mode 100644 index 00000000..a9162494 Binary files /dev/null and b/tools/configurator/assets/Tilemap/tilemap.png differ diff --git a/tools/configurator/assets/Tilemap/tilemap.png.import b/tools/configurator/assets/Tilemap/tilemap.png.import new file mode 100644 index 00000000..0d19d5b1 --- /dev/null +++ b/tools/configurator/assets/Tilemap/tilemap.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://donemjr3ojyxm" +path="res://.godot/imported/tilemap.png-0ecba5f1a047e5f0cab0df4faff83c9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/Tilemap/tilemap.png" +dest_files=["res://.godot/imported/tilemap.png-0ecba5f1a047e5f0cab0df4faff83c9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/Tilemap/tilemap_packed.png b/tools/configurator/assets/Tilemap/tilemap_packed.png new file mode 100644 index 00000000..c469ed10 Binary files /dev/null and b/tools/configurator/assets/Tilemap/tilemap_packed.png differ diff --git a/tools/configurator/assets/Tilemap/tilemap_packed.png.import b/tools/configurator/assets/Tilemap/tilemap_packed.png.import new file mode 100644 index 00000000..58d75bd3 --- /dev/null +++ b/tools/configurator/assets/Tilemap/tilemap_packed.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfrdsm5uya722" +path="res://.godot/imported/tilemap_packed.png-94e4e41b4d25c19f7f2eb37ebf76bf35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/Tilemap/tilemap_packed.png" +dest_files=["res://.godot/imported/tilemap_packed.png-94e4e41b4d25c19f7f2eb37ebf76bf35.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/fonts/OpenDyslexic3/OpenDyslexic3-Bold.ttf b/tools/configurator/assets/fonts/OpenDyslexic3/OpenDyslexic3-Bold.ttf new file mode 100644 index 00000000..395dffc3 Binary files /dev/null and b/tools/configurator/assets/fonts/OpenDyslexic3/OpenDyslexic3-Bold.ttf differ diff --git a/tools/configurator/assets/fonts/OpenDyslexic3/OpenDyslexic3-Bold.ttf.import b/tools/configurator/assets/fonts/OpenDyslexic3/OpenDyslexic3-Bold.ttf.import new file mode 100644 index 00000000..ef89309e --- /dev/null +++ b/tools/configurator/assets/fonts/OpenDyslexic3/OpenDyslexic3-Bold.ttf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://cyolqiyi4h8fq" +path="res://.godot/imported/OpenDyslexic3-Bold.ttf-e08c5bbd6afd96931f6f126bac01c29f.fontdata" + +[deps] + +source_file="res://assets/fonts/OpenDyslexic3/OpenDyslexic3-Bold.ttf" +dest_files=["res://.godot/imported/OpenDyslexic3-Bold.ttf-e08c5bbd6afd96931f6f126bac01c29f.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/tools/configurator/assets/fonts/OpenDyslexic3/OpenDyslexic3-Regular.ttf b/tools/configurator/assets/fonts/OpenDyslexic3/OpenDyslexic3-Regular.ttf new file mode 100644 index 00000000..0ff4c0b5 Binary files /dev/null and b/tools/configurator/assets/fonts/OpenDyslexic3/OpenDyslexic3-Regular.ttf differ diff --git a/tools/configurator/assets/fonts/OpenDyslexic3/OpenDyslexic3-Regular.ttf.import b/tools/configurator/assets/fonts/OpenDyslexic3/OpenDyslexic3-Regular.ttf.import new file mode 100644 index 00000000..6fc3f05a --- /dev/null +++ b/tools/configurator/assets/fonts/OpenDyslexic3/OpenDyslexic3-Regular.ttf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://c8lbo5ljgtaaa" +path="res://.godot/imported/OpenDyslexic3-Regular.ttf-64604afa13dc8f16ae68cb4aa3d91c31.fontdata" + +[deps] + +source_file="res://assets/fonts/OpenDyslexic3/OpenDyslexic3-Regular.ttf" +dest_files=["res://.godot/imported/OpenDyslexic3-Regular.ttf-64604afa13dc8f16ae68cb4aa3d91c31.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/tools/configurator/assets/fonts/akrobat/Akrobat-Black.otf b/tools/configurator/assets/fonts/akrobat/Akrobat-Black.otf new file mode 100644 index 00000000..fa389b73 Binary files /dev/null and b/tools/configurator/assets/fonts/akrobat/Akrobat-Black.otf differ diff --git a/tools/configurator/assets/fonts/akrobat/Akrobat-Black.otf.import b/tools/configurator/assets/fonts/akrobat/Akrobat-Black.otf.import new file mode 100644 index 00000000..c9139cc5 --- /dev/null +++ b/tools/configurator/assets/fonts/akrobat/Akrobat-Black.otf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://c62ndu2n0vdse" +path="res://.godot/imported/Akrobat-Black.otf-58a387abad411a0ba1e8ede209bbaad1.fontdata" + +[deps] + +source_file="res://assets/fonts/akrobat/Akrobat-Black.otf" +dest_files=["res://.godot/imported/Akrobat-Black.otf-58a387abad411a0ba1e8ede209bbaad1.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/tools/configurator/assets/fonts/akrobat/Akrobat-Bold.otf b/tools/configurator/assets/fonts/akrobat/Akrobat-Bold.otf new file mode 100644 index 00000000..de155b6a Binary files /dev/null and b/tools/configurator/assets/fonts/akrobat/Akrobat-Bold.otf differ diff --git a/tools/configurator/assets/fonts/akrobat/Akrobat-Bold.otf.import b/tools/configurator/assets/fonts/akrobat/Akrobat-Bold.otf.import new file mode 100644 index 00000000..44268c7d --- /dev/null +++ b/tools/configurator/assets/fonts/akrobat/Akrobat-Bold.otf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://cmqkbqp753qs5" +path="res://.godot/imported/Akrobat-Bold.otf-7ca68850824f1de1bfa3f2ae834ae562.fontdata" + +[deps] + +source_file="res://assets/fonts/akrobat/Akrobat-Bold.otf" +dest_files=["res://.godot/imported/Akrobat-Bold.otf-7ca68850824f1de1bfa3f2ae834ae562.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/tools/configurator/assets/fonts/akrobat/Akrobat-ExtraLight.otf b/tools/configurator/assets/fonts/akrobat/Akrobat-ExtraLight.otf new file mode 100644 index 00000000..1c2982c6 Binary files /dev/null and b/tools/configurator/assets/fonts/akrobat/Akrobat-ExtraLight.otf differ diff --git a/tools/configurator/assets/fonts/akrobat/Akrobat-ExtraLight.otf.import b/tools/configurator/assets/fonts/akrobat/Akrobat-ExtraLight.otf.import new file mode 100644 index 00000000..8218df2f --- /dev/null +++ b/tools/configurator/assets/fonts/akrobat/Akrobat-ExtraLight.otf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://ca3dbbju6fe4o" +path="res://.godot/imported/Akrobat-ExtraLight.otf-e1e2cfb678c3abe6f88796a61a68d308.fontdata" + +[deps] + +source_file="res://assets/fonts/akrobat/Akrobat-ExtraLight.otf" +dest_files=["res://.godot/imported/Akrobat-ExtraLight.otf-e1e2cfb678c3abe6f88796a61a68d308.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/tools/configurator/assets/fonts/akrobat/Akrobat-Light.otf b/tools/configurator/assets/fonts/akrobat/Akrobat-Light.otf new file mode 100644 index 00000000..0109d452 Binary files /dev/null and b/tools/configurator/assets/fonts/akrobat/Akrobat-Light.otf differ diff --git a/tools/configurator/assets/fonts/akrobat/Akrobat-Light.otf.import b/tools/configurator/assets/fonts/akrobat/Akrobat-Light.otf.import new file mode 100644 index 00000000..44316c1b --- /dev/null +++ b/tools/configurator/assets/fonts/akrobat/Akrobat-Light.otf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://su62dpupbik3" +path="res://.godot/imported/Akrobat-Light.otf-3d206ad89efef2fbbb8f590de7e9ab0d.fontdata" + +[deps] + +source_file="res://assets/fonts/akrobat/Akrobat-Light.otf" +dest_files=["res://.godot/imported/Akrobat-Light.otf-3d206ad89efef2fbbb8f590de7e9ab0d.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/tools/configurator/assets/fonts/akrobat/Akrobat-Regular.otf b/tools/configurator/assets/fonts/akrobat/Akrobat-Regular.otf new file mode 100644 index 00000000..208719f1 Binary files /dev/null and b/tools/configurator/assets/fonts/akrobat/Akrobat-Regular.otf differ diff --git a/tools/configurator/assets/fonts/akrobat/Akrobat-Regular.otf.import b/tools/configurator/assets/fonts/akrobat/Akrobat-Regular.otf.import new file mode 100644 index 00000000..080b9e5d --- /dev/null +++ b/tools/configurator/assets/fonts/akrobat/Akrobat-Regular.otf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://1x3s2oon2g64" +path="res://.godot/imported/Akrobat-Regular.otf-5c1ca00980c7c578431380b5677644fd.fontdata" + +[deps] + +source_file="res://assets/fonts/akrobat/Akrobat-Regular.otf" +dest_files=["res://.godot/imported/Akrobat-Regular.otf-5c1ca00980c7c578431380b5677644fd.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/tools/configurator/assets/fonts/akrobat/Akrobat-SemiBold.otf b/tools/configurator/assets/fonts/akrobat/Akrobat-SemiBold.otf new file mode 100644 index 00000000..4ddf38b6 Binary files /dev/null and b/tools/configurator/assets/fonts/akrobat/Akrobat-SemiBold.otf differ diff --git a/tools/configurator/assets/fonts/akrobat/Akrobat-SemiBold.otf.import b/tools/configurator/assets/fonts/akrobat/Akrobat-SemiBold.otf.import new file mode 100644 index 00000000..7d0c88ad --- /dev/null +++ b/tools/configurator/assets/fonts/akrobat/Akrobat-SemiBold.otf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://dpg8eofna31sc" +path="res://.godot/imported/Akrobat-SemiBold.otf-66f337095e525a327625450750bf4da9.fontdata" + +[deps] + +source_file="res://assets/fonts/akrobat/Akrobat-SemiBold.otf" +dest_files=["res://.godot/imported/Akrobat-SemiBold.otf-66f337095e525a327625450750bf4da9.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/tools/configurator/assets/fonts/akrobat/akrobat-extrabold-webfont.ttf b/tools/configurator/assets/fonts/akrobat/akrobat-extrabold-webfont.ttf new file mode 100644 index 00000000..faa40ceb Binary files /dev/null and b/tools/configurator/assets/fonts/akrobat/akrobat-extrabold-webfont.ttf differ diff --git a/tools/configurator/assets/fonts/akrobat/akrobat-extrabold-webfont.ttf.import b/tools/configurator/assets/fonts/akrobat/akrobat-extrabold-webfont.ttf.import new file mode 100644 index 00000000..89931f6b --- /dev/null +++ b/tools/configurator/assets/fonts/akrobat/akrobat-extrabold-webfont.ttf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://bakh3m3i3unjc" +path="res://.godot/imported/akrobat-extrabold-webfont.ttf-d5220fd0d634f9cbd6a824afc8413751.fontdata" + +[deps] + +source_file="res://assets/fonts/akrobat/akrobat-extrabold-webfont.ttf" +dest_files=["res://.godot/imported/akrobat-extrabold-webfont.ttf-d5220fd0d634f9cbd6a824afc8413751.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/tools/configurator/assets/fonts/munro/munro-narrow.ttf b/tools/configurator/assets/fonts/munro/munro-narrow.ttf new file mode 100755 index 00000000..ebcd8bb8 Binary files /dev/null and b/tools/configurator/assets/fonts/munro/munro-narrow.ttf differ diff --git a/tools/configurator/assets/fonts/munro/munro-narrow.ttf.import b/tools/configurator/assets/fonts/munro/munro-narrow.ttf.import new file mode 100644 index 00000000..4bc2b715 --- /dev/null +++ b/tools/configurator/assets/fonts/munro/munro-narrow.ttf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://gv17pcf5f2lp" +path="res://.godot/imported/munro-narrow.ttf-eebb0ff361c143ec171a43475490d53c.fontdata" + +[deps] + +source_file="res://assets/fonts/munro/munro-narrow.ttf" +dest_files=["res://.godot/imported/munro-narrow.ttf-eebb0ff361c143ec171a43475490d53c.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/tools/configurator/assets/fonts/munro/munro-small.ttf b/tools/configurator/assets/fonts/munro/munro-small.ttf new file mode 100755 index 00000000..8dffa832 Binary files /dev/null and b/tools/configurator/assets/fonts/munro/munro-small.ttf differ diff --git a/tools/configurator/assets/fonts/munro/munro-small.ttf.import b/tools/configurator/assets/fonts/munro/munro-small.ttf.import new file mode 100644 index 00000000..ab274c5a --- /dev/null +++ b/tools/configurator/assets/fonts/munro/munro-small.ttf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://b6eqmq2kp80je" +path="res://.godot/imported/munro-small.ttf-9be0aa72f914e623b8c93addb3ec9706.fontdata" + +[deps] + +source_file="res://assets/fonts/munro/munro-small.ttf" +dest_files=["res://.godot/imported/munro-small.ttf-9be0aa72f914e623b8c93addb3ec9706.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/tools/configurator/assets/fonts/munro/munro.ttf b/tools/configurator/assets/fonts/munro/munro.ttf new file mode 100755 index 00000000..d452cda4 Binary files /dev/null and b/tools/configurator/assets/fonts/munro/munro.ttf differ diff --git a/tools/configurator/assets/fonts/munro/munro.ttf.import b/tools/configurator/assets/fonts/munro/munro.ttf.import new file mode 100644 index 00000000..17778f9c --- /dev/null +++ b/tools/configurator/assets/fonts/munro/munro.ttf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://q405aelgnmvo" +path="res://.godot/imported/munro.ttf-c45ff1701342af95744d8196bd62e7d3.fontdata" + +[deps] + +source_file="res://assets/fonts/munro/munro.ttf" +dest_files=["res://.godot/imported/munro.ttf-c45ff1701342af95744d8196bd62e7d3.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/tools/configurator/assets/graphics/rekku2/rekku_base.png b/tools/configurator/assets/graphics/rekku2/rekku_base.png new file mode 100644 index 00000000..84516647 Binary files /dev/null and b/tools/configurator/assets/graphics/rekku2/rekku_base.png differ diff --git a/tools/configurator/assets/graphics/rekku2/rekku_base.png.import b/tools/configurator/assets/graphics/rekku2/rekku_base.png.import new file mode 100644 index 00000000..45620203 --- /dev/null +++ b/tools/configurator/assets/graphics/rekku2/rekku_base.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l3bredurb11m" +path="res://.godot/imported/rekku_base.png-ba655e0b7ca5167750e3c33bad52b118.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/rekku2/rekku_base.png" +dest_files=["res://.godot/imported/rekku_base.png-ba655e0b7ca5167750e3c33bad52b118.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/rekku2/rekku_eye_1.png b/tools/configurator/assets/graphics/rekku2/rekku_eye_1.png new file mode 100644 index 00000000..f25c0c3b Binary files /dev/null and b/tools/configurator/assets/graphics/rekku2/rekku_eye_1.png differ diff --git a/tools/configurator/assets/graphics/rekku2/rekku_eye_1.png.import b/tools/configurator/assets/graphics/rekku2/rekku_eye_1.png.import new file mode 100644 index 00000000..8ff14492 --- /dev/null +++ b/tools/configurator/assets/graphics/rekku2/rekku_eye_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvlncuql8igrm" +path="res://.godot/imported/rekku_eye_1.png-bdb05770012bbf8805a308be308f2f11.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/rekku2/rekku_eye_1.png" +dest_files=["res://.godot/imported/rekku_eye_1.png-bdb05770012bbf8805a308be308f2f11.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/rekku2/rekku_eye_2.png b/tools/configurator/assets/graphics/rekku2/rekku_eye_2.png new file mode 100644 index 00000000..8a33ab5b Binary files /dev/null and b/tools/configurator/assets/graphics/rekku2/rekku_eye_2.png differ diff --git a/tools/configurator/assets/graphics/rekku2/rekku_eye_2.png.import b/tools/configurator/assets/graphics/rekku2/rekku_eye_2.png.import new file mode 100644 index 00000000..70f02035 --- /dev/null +++ b/tools/configurator/assets/graphics/rekku2/rekku_eye_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdrdu4nddkqjn" +path="res://.godot/imported/rekku_eye_2.png-470f058d31522c2d3d622d57668ea739.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/rekku2/rekku_eye_2.png" +dest_files=["res://.godot/imported/rekku_eye_2.png-470f058d31522c2d3d622d57668ea739.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/rekku2/rekku_mouth_a.png b/tools/configurator/assets/graphics/rekku2/rekku_mouth_a.png new file mode 100644 index 00000000..8433aa6f Binary files /dev/null and b/tools/configurator/assets/graphics/rekku2/rekku_mouth_a.png differ diff --git a/tools/configurator/assets/graphics/rekku2/rekku_mouth_a.png.import b/tools/configurator/assets/graphics/rekku2/rekku_mouth_a.png.import new file mode 100644 index 00000000..5132aa9b --- /dev/null +++ b/tools/configurator/assets/graphics/rekku2/rekku_mouth_a.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb2hwhaq036mu" +path="res://.godot/imported/rekku_mouth_a.png-279dcb9a384b18dcc5f0e9b1fce89965.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/rekku2/rekku_mouth_a.png" +dest_files=["res://.godot/imported/rekku_mouth_a.png-279dcb9a384b18dcc5f0e9b1fce89965.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/rekku2/rekku_mouth_i.png b/tools/configurator/assets/graphics/rekku2/rekku_mouth_i.png new file mode 100644 index 00000000..3e1b8cc3 Binary files /dev/null and b/tools/configurator/assets/graphics/rekku2/rekku_mouth_i.png differ diff --git a/tools/configurator/assets/graphics/rekku2/rekku_mouth_i.png.import b/tools/configurator/assets/graphics/rekku2/rekku_mouth_i.png.import new file mode 100644 index 00000000..45651006 --- /dev/null +++ b/tools/configurator/assets/graphics/rekku2/rekku_mouth_i.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl2fd66fvn1an" +path="res://.godot/imported/rekku_mouth_i.png-66f20d9dcec19841a364e26d8f38c17a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/rekku2/rekku_mouth_i.png" +dest_files=["res://.godot/imported/rekku_mouth_i.png-66f20d9dcec19841a364e26d8f38c17a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/rekku2/rekku_mouth_m.png b/tools/configurator/assets/graphics/rekku2/rekku_mouth_m.png new file mode 100644 index 00000000..4c8d44dc Binary files /dev/null and b/tools/configurator/assets/graphics/rekku2/rekku_mouth_m.png differ diff --git a/tools/configurator/assets/graphics/rekku2/rekku_mouth_m.png.import b/tools/configurator/assets/graphics/rekku2/rekku_mouth_m.png.import new file mode 100644 index 00000000..b18f656f --- /dev/null +++ b/tools/configurator/assets/graphics/rekku2/rekku_mouth_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3ktnkmuecxea" +path="res://.godot/imported/rekku_mouth_m.png-f85c73bab4824d3102d50150c4e5375e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/rekku2/rekku_mouth_m.png" +dest_files=["res://.godot/imported/rekku_mouth_m.png-f85c73bab4824d3102d50150c4e5375e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/rekku2/rekku_mouth_o.png b/tools/configurator/assets/graphics/rekku2/rekku_mouth_o.png new file mode 100644 index 00000000..8871b416 Binary files /dev/null and b/tools/configurator/assets/graphics/rekku2/rekku_mouth_o.png differ diff --git a/tools/configurator/assets/graphics/rekku2/rekku_mouth_o.png.import b/tools/configurator/assets/graphics/rekku2/rekku_mouth_o.png.import new file mode 100644 index 00000000..96b42cb1 --- /dev/null +++ b/tools/configurator/assets/graphics/rekku2/rekku_mouth_o.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d08ngewjvxkmn" +path="res://.godot/imported/rekku_mouth_o.png-72bff84aecbb9047648fb98563492453.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/rekku2/rekku_mouth_o.png" +dest_files=["res://.godot/imported/rekku_mouth_o.png-72bff84aecbb9047648fb98563492453.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/rekku2/rekku_nomouth.png b/tools/configurator/assets/graphics/rekku2/rekku_nomouth.png new file mode 100644 index 00000000..a5b8224f Binary files /dev/null and b/tools/configurator/assets/graphics/rekku2/rekku_nomouth.png differ diff --git a/tools/configurator/assets/graphics/rekku2/rekku_nomouth.png.import b/tools/configurator/assets/graphics/rekku2/rekku_nomouth.png.import new file mode 100644 index 00000000..5156c7af --- /dev/null +++ b/tools/configurator/assets/graphics/rekku2/rekku_nomouth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dieva7tuxjrvy" +path="res://.godot/imported/rekku_nomouth.png-6aea5248544dd97243fc5c179e0e2d58.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/rekku2/rekku_nomouth.png" +dest_files=["res://.godot/imported/rekku_nomouth.png-6aea5248544dd97243fc5c179e0e2d58.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/retrodeck.png b/tools/configurator/assets/graphics/retrodeck.png new file mode 100644 index 00000000..d16329c3 Binary files /dev/null and b/tools/configurator/assets/graphics/retrodeck.png differ diff --git a/tools/configurator/assets/graphics/retrodeck.png.import b/tools/configurator/assets/graphics/retrodeck.png.import new file mode 100644 index 00000000..22d84162 --- /dev/null +++ b/tools/configurator/assets/graphics/retrodeck.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brf74puvpnwsd" +path="res://.godot/imported/retrodeck.png-35b6cd32271c6756d76a442f4642a509.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/retrodeck.png" +dest_files=["res://.godot/imported/retrodeck.png-35b6cd32271c6756d76a442f4642a509.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/retrodeck_base.png b/tools/configurator/assets/graphics/retrodeck_base.png new file mode 100644 index 00000000..d16329c3 Binary files /dev/null and b/tools/configurator/assets/graphics/retrodeck_base.png differ diff --git a/tools/configurator/assets/graphics/retrodeck_base.png.import b/tools/configurator/assets/graphics/retrodeck_base.png.import new file mode 100644 index 00000000..4353f2c1 --- /dev/null +++ b/tools/configurator/assets/graphics/retrodeck_base.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://deinvporg82d1" +path="res://.godot/imported/retrodeck_base.png-5cdce15b1a5751b408c840d88802bbb1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/retrodeck_base.png" +dest_files=["res://.godot/imported/retrodeck_base.png-5cdce15b1a5751b408c840d88802bbb1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/retrodeck_base_anim.png b/tools/configurator/assets/graphics/retrodeck_base_anim.png new file mode 100644 index 00000000..8fed8c9e Binary files /dev/null and b/tools/configurator/assets/graphics/retrodeck_base_anim.png differ diff --git a/tools/configurator/assets/graphics/retrodeck_base_anim.png.import b/tools/configurator/assets/graphics/retrodeck_base_anim.png.import new file mode 100644 index 00000000..ff21693c --- /dev/null +++ b/tools/configurator/assets/graphics/retrodeck_base_anim.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg6hfrapx4g1g" +path="res://.godot/imported/retrodeck_base_anim.png-d4638de67e86bbd9b7844b9214147979.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/retrodeck_base_anim.png" +dest_files=["res://.godot/imported/retrodeck_base_anim.png-d4638de67e86bbd9b7844b9214147979.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/retrodeck_base_anim.xcf b/tools/configurator/assets/graphics/retrodeck_base_anim.xcf new file mode 100644 index 00000000..9a210bb1 Binary files /dev/null and b/tools/configurator/assets/graphics/retrodeck_base_anim.xcf differ diff --git a/tools/configurator/assets/graphics/retrodeck_base_shake0.png b/tools/configurator/assets/graphics/retrodeck_base_shake0.png new file mode 100644 index 00000000..60ebcdf5 Binary files /dev/null and b/tools/configurator/assets/graphics/retrodeck_base_shake0.png differ diff --git a/tools/configurator/assets/graphics/retrodeck_base_shake0.png.import b/tools/configurator/assets/graphics/retrodeck_base_shake0.png.import new file mode 100644 index 00000000..af877f9e --- /dev/null +++ b/tools/configurator/assets/graphics/retrodeck_base_shake0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2lm4mfx1gt86" +path="res://.godot/imported/retrodeck_base_shake0.png-8e26ba427a4d4aaef33a2d47a028a1de.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/retrodeck_base_shake0.png" +dest_files=["res://.godot/imported/retrodeck_base_shake0.png-8e26ba427a4d4aaef33a2d47a028a1de.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/retrodeck_base_shake1.png b/tools/configurator/assets/graphics/retrodeck_base_shake1.png new file mode 100644 index 00000000..0339f1e0 Binary files /dev/null and b/tools/configurator/assets/graphics/retrodeck_base_shake1.png differ diff --git a/tools/configurator/assets/graphics/retrodeck_base_shake1.png.import b/tools/configurator/assets/graphics/retrodeck_base_shake1.png.import new file mode 100644 index 00000000..bc0a0580 --- /dev/null +++ b/tools/configurator/assets/graphics/retrodeck_base_shake1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjv6lhd4g63m3" +path="res://.godot/imported/retrodeck_base_shake1.png-c09516ccc966a340c7399128763edac5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/retrodeck_base_shake1.png" +dest_files=["res://.godot/imported/retrodeck_base_shake1.png-c09516ccc966a340c7399128763edac5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/retrodeck_base_shake2.png b/tools/configurator/assets/graphics/retrodeck_base_shake2.png new file mode 100644 index 00000000..82db945a Binary files /dev/null and b/tools/configurator/assets/graphics/retrodeck_base_shake2.png differ diff --git a/tools/configurator/assets/graphics/retrodeck_base_shake2.png.import b/tools/configurator/assets/graphics/retrodeck_base_shake2.png.import new file mode 100644 index 00000000..8b3d3897 --- /dev/null +++ b/tools/configurator/assets/graphics/retrodeck_base_shake2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyqo650hjucw6" +path="res://.godot/imported/retrodeck_base_shake2.png-4c729cdfb6a0dc2c7f804cf367379f3b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/retrodeck_base_shake2.png" +dest_files=["res://.godot/imported/retrodeck_base_shake2.png-4c729cdfb6a0dc2c7f804cf367379f3b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/retrodeck_base_shake3.png b/tools/configurator/assets/graphics/retrodeck_base_shake3.png new file mode 100644 index 00000000..117bb17f Binary files /dev/null and b/tools/configurator/assets/graphics/retrodeck_base_shake3.png differ diff --git a/tools/configurator/assets/graphics/retrodeck_base_shake3.png.import b/tools/configurator/assets/graphics/retrodeck_base_shake3.png.import new file mode 100644 index 00000000..4256d6da --- /dev/null +++ b/tools/configurator/assets/graphics/retrodeck_base_shake3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bojog0xvms7hr" +path="res://.godot/imported/retrodeck_base_shake3.png-3f17e0e3204cc74da2aaf61092d008ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/retrodeck_base_shake3.png" +dest_files=["res://.godot/imported/retrodeck_base_shake3.png-3f17e0e3204cc74da2aaf61092d008ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/retrodeck_base_shake4.png b/tools/configurator/assets/graphics/retrodeck_base_shake4.png new file mode 100644 index 00000000..dd6ebc43 Binary files /dev/null and b/tools/configurator/assets/graphics/retrodeck_base_shake4.png differ diff --git a/tools/configurator/assets/graphics/retrodeck_base_shake4.png.import b/tools/configurator/assets/graphics/retrodeck_base_shake4.png.import new file mode 100644 index 00000000..7ed430e5 --- /dev/null +++ b/tools/configurator/assets/graphics/retrodeck_base_shake4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uko0ikrtjkj" +path="res://.godot/imported/retrodeck_base_shake4.png-03b0c03f7b61fdf00a6dae47bcce839f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/retrodeck_base_shake4.png" +dest_files=["res://.godot/imported/retrodeck_base_shake4.png-03b0c03f7b61fdf00a6dae47bcce839f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/space_bground.png b/tools/configurator/assets/graphics/space_bground.png new file mode 100644 index 00000000..83b66245 Binary files /dev/null and b/tools/configurator/assets/graphics/space_bground.png differ diff --git a/tools/configurator/assets/graphics/space_bground.png.import b/tools/configurator/assets/graphics/space_bground.png.import new file mode 100644 index 00000000..feb76681 --- /dev/null +++ b/tools/configurator/assets/graphics/space_bground.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b164ihk8riiwh" +path="res://.godot/imported/space_bground.png-bb7742583aade71dc9220a47d142016b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/space_bground.png" +dest_files=["res://.godot/imported/space_bground.png-bb7742583aade71dc9220a47d142016b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/3do.png b/tools/configurator/assets/icons/banner/3do.png new file mode 100644 index 00000000..ad5a3077 Binary files /dev/null and b/tools/configurator/assets/icons/banner/3do.png differ diff --git a/tools/configurator/assets/icons/banner/3do.png.import b/tools/configurator/assets/icons/banner/3do.png.import new file mode 100644 index 00000000..9c996e32 --- /dev/null +++ b/tools/configurator/assets/icons/banner/3do.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxkbouf1kp5kf" +path="res://.godot/imported/3do.png-5ac164198391b8e57611ff6fe566d0fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/3do.png" +dest_files=["res://.godot/imported/3do.png-5ac164198391b8e57611ff6fe566d0fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/Mario.png b/tools/configurator/assets/icons/banner/Mario.png new file mode 100644 index 00000000..6b5cfc1e Binary files /dev/null and b/tools/configurator/assets/icons/banner/Mario.png differ diff --git a/tools/configurator/assets/icons/banner/Mario.png.import b/tools/configurator/assets/icons/banner/Mario.png.import new file mode 100644 index 00000000..04a73eab --- /dev/null +++ b/tools/configurator/assets/icons/banner/Mario.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://euks0k4cll18" +path="res://.godot/imported/Mario.png-dab1229aab58342b7d4c874aef5b55b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/Mario.png" +dest_files=["res://.godot/imported/Mario.png-dab1229aab58342b7d4c874aef5b55b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/Mariokart.png b/tools/configurator/assets/icons/banner/Mariokart.png new file mode 100644 index 00000000..d295bb4b Binary files /dev/null and b/tools/configurator/assets/icons/banner/Mariokart.png differ diff --git a/tools/configurator/assets/icons/banner/Mariokart.png.import b/tools/configurator/assets/icons/banner/Mariokart.png.import new file mode 100644 index 00000000..c8174740 --- /dev/null +++ b/tools/configurator/assets/icons/banner/Mariokart.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://myrdrwfgl52m" +path="res://.godot/imported/Mariokart.png-d94e68d182fee2d2a11e62c55128fdde.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/Mariokart.png" +dest_files=["res://.godot/imported/Mariokart.png-d94e68d182fee2d2a11e62c55128fdde.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/adam.png b/tools/configurator/assets/icons/banner/adam.png new file mode 100644 index 00000000..9ee7a868 Binary files /dev/null and b/tools/configurator/assets/icons/banner/adam.png differ diff --git a/tools/configurator/assets/icons/banner/adam.png.import b/tools/configurator/assets/icons/banner/adam.png.import new file mode 100644 index 00000000..1c991fc4 --- /dev/null +++ b/tools/configurator/assets/icons/banner/adam.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceh75c5sgsggy" +path="res://.godot/imported/adam.png-c5d11f127d1d02534a2e9910891c157a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/adam.png" +dest_files=["res://.godot/imported/adam.png-c5d11f127d1d02534a2e9910891c157a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/ags.png b/tools/configurator/assets/icons/banner/ags.png new file mode 100644 index 00000000..8260dc60 Binary files /dev/null and b/tools/configurator/assets/icons/banner/ags.png differ diff --git a/tools/configurator/assets/icons/banner/ags.png.import b/tools/configurator/assets/icons/banner/ags.png.import new file mode 100644 index 00000000..4ee99f15 --- /dev/null +++ b/tools/configurator/assets/icons/banner/ags.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg0a1nb2d85tf" +path="res://.godot/imported/ags.png-742edd70e7477ca8cf522e752080839a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/ags.png" +dest_files=["res://.godot/imported/ags.png-742edd70e7477ca8cf522e752080839a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/amiga.png b/tools/configurator/assets/icons/banner/amiga.png new file mode 100644 index 00000000..07a94a2d Binary files /dev/null and b/tools/configurator/assets/icons/banner/amiga.png differ diff --git a/tools/configurator/assets/icons/banner/amiga.png.import b/tools/configurator/assets/icons/banner/amiga.png.import new file mode 100644 index 00000000..e281d77d --- /dev/null +++ b/tools/configurator/assets/icons/banner/amiga.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhpq3qhctmkn3" +path="res://.godot/imported/amiga.png-05517277c502cad9916a15f7d0684d91.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/amiga.png" +dest_files=["res://.godot/imported/amiga.png-05517277c502cad9916a15f7d0684d91.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/amiga1200.png b/tools/configurator/assets/icons/banner/amiga1200.png new file mode 100644 index 00000000..c3d1dcba Binary files /dev/null and b/tools/configurator/assets/icons/banner/amiga1200.png differ diff --git a/tools/configurator/assets/icons/banner/amiga1200.png.import b/tools/configurator/assets/icons/banner/amiga1200.png.import new file mode 100644 index 00000000..c5f7b8e8 --- /dev/null +++ b/tools/configurator/assets/icons/banner/amiga1200.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0iij8llh4pih" +path="res://.godot/imported/amiga1200.png-26575ffed08211ebb4c652ba33d6a62a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/amiga1200.png" +dest_files=["res://.godot/imported/amiga1200.png-26575ffed08211ebb4c652ba33d6a62a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/amiga600.png b/tools/configurator/assets/icons/banner/amiga600.png new file mode 100644 index 00000000..6eb1a7e0 Binary files /dev/null and b/tools/configurator/assets/icons/banner/amiga600.png differ diff --git a/tools/configurator/assets/icons/banner/amiga600.png.import b/tools/configurator/assets/icons/banner/amiga600.png.import new file mode 100644 index 00000000..ec210d51 --- /dev/null +++ b/tools/configurator/assets/icons/banner/amiga600.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdvswudufgyna" +path="res://.godot/imported/amiga600.png-bd4b941f8ee80c099ef6b7a4d536faab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/amiga600.png" +dest_files=["res://.godot/imported/amiga600.png-bd4b941f8ee80c099ef6b7a4d536faab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/amigacd32.png b/tools/configurator/assets/icons/banner/amigacd32.png new file mode 100644 index 00000000..d6d37746 Binary files /dev/null and b/tools/configurator/assets/icons/banner/amigacd32.png differ diff --git a/tools/configurator/assets/icons/banner/amigacd32.png.import b/tools/configurator/assets/icons/banner/amigacd32.png.import new file mode 100644 index 00000000..76a69d4f --- /dev/null +++ b/tools/configurator/assets/icons/banner/amigacd32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl11ok8rsn8sj" +path="res://.godot/imported/amigacd32.png-7aa6cc12fab765ef4950be7c3150723f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/amigacd32.png" +dest_files=["res://.godot/imported/amigacd32.png-7aa6cc12fab765ef4950be7c3150723f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/amstradcpc.png b/tools/configurator/assets/icons/banner/amstradcpc.png new file mode 100644 index 00000000..00e1aab5 Binary files /dev/null and b/tools/configurator/assets/icons/banner/amstradcpc.png differ diff --git a/tools/configurator/assets/icons/banner/amstradcpc.png.import b/tools/configurator/assets/icons/banner/amstradcpc.png.import new file mode 100644 index 00000000..6f5253ca --- /dev/null +++ b/tools/configurator/assets/icons/banner/amstradcpc.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7h36hcjmtcco" +path="res://.godot/imported/amstradcpc.png-eddb0bd6a1d63f7aea5ff141248132af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/amstradcpc.png" +dest_files=["res://.godot/imported/amstradcpc.png-eddb0bd6a1d63f7aea5ff141248132af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/android.png b/tools/configurator/assets/icons/banner/android.png new file mode 100644 index 00000000..bdf894fb Binary files /dev/null and b/tools/configurator/assets/icons/banner/android.png differ diff --git a/tools/configurator/assets/icons/banner/android.png.import b/tools/configurator/assets/icons/banner/android.png.import new file mode 100644 index 00000000..c6cd1733 --- /dev/null +++ b/tools/configurator/assets/icons/banner/android.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db2yi5v3vasvb" +path="res://.godot/imported/android.png-9da97ab6ba001ff4df9fe2791e9be28b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/android.png" +dest_files=["res://.godot/imported/android.png-9da97ab6ba001ff4df9fe2791e9be28b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/androidapps.png b/tools/configurator/assets/icons/banner/androidapps.png new file mode 100644 index 00000000..3b0f94f1 Binary files /dev/null and b/tools/configurator/assets/icons/banner/androidapps.png differ diff --git a/tools/configurator/assets/icons/banner/androidapps.png.import b/tools/configurator/assets/icons/banner/androidapps.png.import new file mode 100644 index 00000000..c15fd062 --- /dev/null +++ b/tools/configurator/assets/icons/banner/androidapps.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceolqdprka3c2" +path="res://.godot/imported/androidapps.png-dd4b387e1af106033fceb477ae47f894.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/androidapps.png" +dest_files=["res://.godot/imported/androidapps.png-dd4b387e1af106033fceb477ae47f894.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/androidgames.png b/tools/configurator/assets/icons/banner/androidgames.png new file mode 100644 index 00000000..15e66f77 Binary files /dev/null and b/tools/configurator/assets/icons/banner/androidgames.png differ diff --git a/tools/configurator/assets/icons/banner/androidgames.png.import b/tools/configurator/assets/icons/banner/androidgames.png.import new file mode 100644 index 00000000..9108ba21 --- /dev/null +++ b/tools/configurator/assets/icons/banner/androidgames.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0edj8rq6ayxd" +path="res://.godot/imported/androidgames.png-369ea435c53a8747bd142a5cc93d4e37.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/androidgames.png" +dest_files=["res://.godot/imported/androidgames.png-369ea435c53a8747bd142a5cc93d4e37.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/apple2.png b/tools/configurator/assets/icons/banner/apple2.png new file mode 100644 index 00000000..abec6dea Binary files /dev/null and b/tools/configurator/assets/icons/banner/apple2.png differ diff --git a/tools/configurator/assets/icons/banner/apple2.png.import b/tools/configurator/assets/icons/banner/apple2.png.import new file mode 100644 index 00000000..73bc05c9 --- /dev/null +++ b/tools/configurator/assets/icons/banner/apple2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sp37k8snf8ve" +path="res://.godot/imported/apple2.png-2fa1b706e2bfd6dea7e6b203572a8fea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/apple2.png" +dest_files=["res://.godot/imported/apple2.png-2fa1b706e2bfd6dea7e6b203572a8fea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/apple2gs.png b/tools/configurator/assets/icons/banner/apple2gs.png new file mode 100644 index 00000000..e5a47ca4 Binary files /dev/null and b/tools/configurator/assets/icons/banner/apple2gs.png differ diff --git a/tools/configurator/assets/icons/banner/apple2gs.png.import b/tools/configurator/assets/icons/banner/apple2gs.png.import new file mode 100644 index 00000000..1c374538 --- /dev/null +++ b/tools/configurator/assets/icons/banner/apple2gs.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnmrlgx6hgxje" +path="res://.godot/imported/apple2gs.png-5e2f168351b71fcdffd03e10e506d489.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/apple2gs.png" +dest_files=["res://.godot/imported/apple2gs.png-5e2f168351b71fcdffd03e10e506d489.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/arcade.png b/tools/configurator/assets/icons/banner/arcade.png new file mode 100644 index 00000000..56bad5ce Binary files /dev/null and b/tools/configurator/assets/icons/banner/arcade.png differ diff --git a/tools/configurator/assets/icons/banner/arcade.png.import b/tools/configurator/assets/icons/banner/arcade.png.import new file mode 100644 index 00000000..d3b91a70 --- /dev/null +++ b/tools/configurator/assets/icons/banner/arcade.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsko26k0kgua4" +path="res://.godot/imported/arcade.png-87594dae479d50208a7add4e027cbfa0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/arcade.png" +dest_files=["res://.godot/imported/arcade.png-87594dae479d50208a7add4e027cbfa0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/arcadia.png b/tools/configurator/assets/icons/banner/arcadia.png new file mode 100644 index 00000000..1949e7a9 Binary files /dev/null and b/tools/configurator/assets/icons/banner/arcadia.png differ diff --git a/tools/configurator/assets/icons/banner/arcadia.png.import b/tools/configurator/assets/icons/banner/arcadia.png.import new file mode 100644 index 00000000..5a7c7a93 --- /dev/null +++ b/tools/configurator/assets/icons/banner/arcadia.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bf4boambvaivc" +path="res://.godot/imported/arcadia.png-9a678b513f0c8abef01a444f043f8943.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/arcadia.png" +dest_files=["res://.godot/imported/arcadia.png-9a678b513f0c8abef01a444f043f8943.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/archimedes.png b/tools/configurator/assets/icons/banner/archimedes.png new file mode 100644 index 00000000..fca057f9 Binary files /dev/null and b/tools/configurator/assets/icons/banner/archimedes.png differ diff --git a/tools/configurator/assets/icons/banner/archimedes.png.import b/tools/configurator/assets/icons/banner/archimedes.png.import new file mode 100644 index 00000000..c745722d --- /dev/null +++ b/tools/configurator/assets/icons/banner/archimedes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drg0o2vuo8ytp" +path="res://.godot/imported/archimedes.png-fcc782f8211463640d074fb77f11ac50.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/archimedes.png" +dest_files=["res://.godot/imported/archimedes.png-fcc782f8211463640d074fb77f11ac50.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/arduboy.png b/tools/configurator/assets/icons/banner/arduboy.png new file mode 100644 index 00000000..caeb31c1 Binary files /dev/null and b/tools/configurator/assets/icons/banner/arduboy.png differ diff --git a/tools/configurator/assets/icons/banner/arduboy.png.import b/tools/configurator/assets/icons/banner/arduboy.png.import new file mode 100644 index 00000000..c4693fea --- /dev/null +++ b/tools/configurator/assets/icons/banner/arduboy.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbegb1wlma01r" +path="res://.godot/imported/arduboy.png-7af9565c8d2ba93e31c84c982d2f6ebc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/arduboy.png" +dest_files=["res://.godot/imported/arduboy.png-7af9565c8d2ba93e31c84c982d2f6ebc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/astrocade.png b/tools/configurator/assets/icons/banner/astrocade.png new file mode 100644 index 00000000..e7902265 Binary files /dev/null and b/tools/configurator/assets/icons/banner/astrocade.png differ diff --git a/tools/configurator/assets/icons/banner/astrocade.png.import b/tools/configurator/assets/icons/banner/astrocade.png.import new file mode 100644 index 00000000..57f64f2e --- /dev/null +++ b/tools/configurator/assets/icons/banner/astrocade.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyjru8ww2ppta" +path="res://.godot/imported/astrocade.png-e1fde029e6ec2692c49b1b72e5cc29c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/astrocade.png" +dest_files=["res://.godot/imported/astrocade.png-e1fde029e6ec2692c49b1b72e5cc29c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/atari2600.png b/tools/configurator/assets/icons/banner/atari2600.png new file mode 100644 index 00000000..cd0f25c3 Binary files /dev/null and b/tools/configurator/assets/icons/banner/atari2600.png differ diff --git a/tools/configurator/assets/icons/banner/atari2600.png.import b/tools/configurator/assets/icons/banner/atari2600.png.import new file mode 100644 index 00000000..ff946736 --- /dev/null +++ b/tools/configurator/assets/icons/banner/atari2600.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3c76o7f8yjwa" +path="res://.godot/imported/atari2600.png-da23fd97f9cbf758be613c3a4c1ed365.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/atari2600.png" +dest_files=["res://.godot/imported/atari2600.png-da23fd97f9cbf758be613c3a4c1ed365.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/atari5200.png b/tools/configurator/assets/icons/banner/atari5200.png new file mode 100644 index 00000000..6e6a3624 Binary files /dev/null and b/tools/configurator/assets/icons/banner/atari5200.png differ diff --git a/tools/configurator/assets/icons/banner/atari5200.png.import b/tools/configurator/assets/icons/banner/atari5200.png.import new file mode 100644 index 00000000..23332d2d --- /dev/null +++ b/tools/configurator/assets/icons/banner/atari5200.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oitpjqto12vr" +path="res://.godot/imported/atari5200.png-27a1d975b300aff4ad8e25680d559024.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/atari5200.png" +dest_files=["res://.godot/imported/atari5200.png-27a1d975b300aff4ad8e25680d559024.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/atari7800.png b/tools/configurator/assets/icons/banner/atari7800.png new file mode 100644 index 00000000..d9c8ccad Binary files /dev/null and b/tools/configurator/assets/icons/banner/atari7800.png differ diff --git a/tools/configurator/assets/icons/banner/atari7800.png.import b/tools/configurator/assets/icons/banner/atari7800.png.import new file mode 100644 index 00000000..8c61bb00 --- /dev/null +++ b/tools/configurator/assets/icons/banner/atari7800.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d17cg3dh664a0" +path="res://.godot/imported/atari7800.png-8e4d08969ce3382ab97fe615906c5533.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/atari7800.png" +dest_files=["res://.godot/imported/atari7800.png-8e4d08969ce3382ab97fe615906c5533.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/atari800.png b/tools/configurator/assets/icons/banner/atari800.png new file mode 100644 index 00000000..ad0f2287 Binary files /dev/null and b/tools/configurator/assets/icons/banner/atari800.png differ diff --git a/tools/configurator/assets/icons/banner/atari800.png.import b/tools/configurator/assets/icons/banner/atari800.png.import new file mode 100644 index 00000000..d2e2b560 --- /dev/null +++ b/tools/configurator/assets/icons/banner/atari800.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l4bt0pgi7w4i" +path="res://.godot/imported/atari800.png-6b4f8d67a6c122f7e3dbe22d0c944492.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/atari800.png" +dest_files=["res://.godot/imported/atari800.png-6b4f8d67a6c122f7e3dbe22d0c944492.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/atarijaguar.png b/tools/configurator/assets/icons/banner/atarijaguar.png new file mode 100644 index 00000000..e78ca19f Binary files /dev/null and b/tools/configurator/assets/icons/banner/atarijaguar.png differ diff --git a/tools/configurator/assets/icons/banner/atarijaguar.png.import b/tools/configurator/assets/icons/banner/atarijaguar.png.import new file mode 100644 index 00000000..bbd03fad --- /dev/null +++ b/tools/configurator/assets/icons/banner/atarijaguar.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfiptkdf3w8fy" +path="res://.godot/imported/atarijaguar.png-b4b7889ac3831b75a4de96d9d2765f0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/atarijaguar.png" +dest_files=["res://.godot/imported/atarijaguar.png-b4b7889ac3831b75a4de96d9d2765f0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/atarijaguarcd.png b/tools/configurator/assets/icons/banner/atarijaguarcd.png new file mode 100644 index 00000000..cc13259f Binary files /dev/null and b/tools/configurator/assets/icons/banner/atarijaguarcd.png differ diff --git a/tools/configurator/assets/icons/banner/atarijaguarcd.png.import b/tools/configurator/assets/icons/banner/atarijaguarcd.png.import new file mode 100644 index 00000000..696b8957 --- /dev/null +++ b/tools/configurator/assets/icons/banner/atarijaguarcd.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw07a7wh3tgbd" +path="res://.godot/imported/atarijaguarcd.png-ac898e1f0f0da602626795913e1a22fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/atarijaguarcd.png" +dest_files=["res://.godot/imported/atarijaguarcd.png-ac898e1f0f0da602626795913e1a22fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/atarijaguarcd.png.kra b/tools/configurator/assets/icons/banner/atarijaguarcd.png.kra new file mode 100644 index 00000000..1214ad5b Binary files /dev/null and b/tools/configurator/assets/icons/banner/atarijaguarcd.png.kra differ diff --git a/tools/configurator/assets/icons/banner/atarijaguarcd.png~ b/tools/configurator/assets/icons/banner/atarijaguarcd.png~ new file mode 100644 index 00000000..3ebda550 Binary files /dev/null and b/tools/configurator/assets/icons/banner/atarijaguarcd.png~ differ diff --git a/tools/configurator/assets/icons/banner/atarilynx.png b/tools/configurator/assets/icons/banner/atarilynx.png new file mode 100644 index 00000000..6fff3204 Binary files /dev/null and b/tools/configurator/assets/icons/banner/atarilynx.png differ diff --git a/tools/configurator/assets/icons/banner/atarilynx.png.import b/tools/configurator/assets/icons/banner/atarilynx.png.import new file mode 100644 index 00000000..0391b251 --- /dev/null +++ b/tools/configurator/assets/icons/banner/atarilynx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://burgtj8xa20kc" +path="res://.godot/imported/atarilynx.png-3d3556b1c2a795d5aef13799be6994f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/atarilynx.png" +dest_files=["res://.godot/imported/atarilynx.png-3d3556b1c2a795d5aef13799be6994f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/atarist.png b/tools/configurator/assets/icons/banner/atarist.png new file mode 100644 index 00000000..97e30f5a Binary files /dev/null and b/tools/configurator/assets/icons/banner/atarist.png differ diff --git a/tools/configurator/assets/icons/banner/atarist.png.import b/tools/configurator/assets/icons/banner/atarist.png.import new file mode 100644 index 00000000..2b0ba5cd --- /dev/null +++ b/tools/configurator/assets/icons/banner/atarist.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp8nx5ab7h64w" +path="res://.godot/imported/atarist.png-279cf823ca56904d081392e472fa1fd3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/atarist.png" +dest_files=["res://.godot/imported/atarist.png-279cf823ca56904d081392e472fa1fd3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/atarixe.png b/tools/configurator/assets/icons/banner/atarixe.png new file mode 100644 index 00000000..2a31dbcf Binary files /dev/null and b/tools/configurator/assets/icons/banner/atarixe.png differ diff --git a/tools/configurator/assets/icons/banner/atarixe.png.import b/tools/configurator/assets/icons/banner/atarixe.png.import new file mode 100644 index 00000000..4004ca3c --- /dev/null +++ b/tools/configurator/assets/icons/banner/atarixe.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b55h46hik2rv6" +path="res://.godot/imported/atarixe.png-5b4a37b9056999746e81e1dc161a100c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/atarixe.png" +dest_files=["res://.godot/imported/atarixe.png-5b4a37b9056999746e81e1dc161a100c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/atomiswave.png b/tools/configurator/assets/icons/banner/atomiswave.png new file mode 100644 index 00000000..3cd5d19a Binary files /dev/null and b/tools/configurator/assets/icons/banner/atomiswave.png differ diff --git a/tools/configurator/assets/icons/banner/atomiswave.png.import b/tools/configurator/assets/icons/banner/atomiswave.png.import new file mode 100644 index 00000000..29dc5756 --- /dev/null +++ b/tools/configurator/assets/icons/banner/atomiswave.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6abtmqvc7gwx" +path="res://.godot/imported/atomiswave.png-e61400a4422f5ba0e92c2f80bd772ba3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/atomiswave.png" +dest_files=["res://.godot/imported/atomiswave.png-e61400a4422f5ba0e92c2f80bd772ba3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/auto-allgames.png b/tools/configurator/assets/icons/banner/auto-allgames.png new file mode 100644 index 00000000..c06ffcda Binary files /dev/null and b/tools/configurator/assets/icons/banner/auto-allgames.png differ diff --git a/tools/configurator/assets/icons/banner/auto-allgames.png.import b/tools/configurator/assets/icons/banner/auto-allgames.png.import new file mode 100644 index 00000000..642d32d4 --- /dev/null +++ b/tools/configurator/assets/icons/banner/auto-allgames.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cogkw3ycpdu6y" +path="res://.godot/imported/auto-allgames.png-0e3e57d54ce5ac30ffc764332a8ed3d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/auto-allgames.png" +dest_files=["res://.godot/imported/auto-allgames.png-0e3e57d54ce5ac30ffc764332a8ed3d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/auto-favorites.png b/tools/configurator/assets/icons/banner/auto-favorites.png new file mode 100644 index 00000000..2fbfd4b7 Binary files /dev/null and b/tools/configurator/assets/icons/banner/auto-favorites.png differ diff --git a/tools/configurator/assets/icons/banner/auto-favorites.png.import b/tools/configurator/assets/icons/banner/auto-favorites.png.import new file mode 100644 index 00000000..9d42af85 --- /dev/null +++ b/tools/configurator/assets/icons/banner/auto-favorites.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://655ah667lkck" +path="res://.godot/imported/auto-favorites.png-72238cdd68b29a94566e72a6d00d0b29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/auto-favorites.png" +dest_files=["res://.godot/imported/auto-favorites.png-72238cdd68b29a94566e72a6d00d0b29.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/auto-lastplayed.png b/tools/configurator/assets/icons/banner/auto-lastplayed.png new file mode 100644 index 00000000..01f6fd87 Binary files /dev/null and b/tools/configurator/assets/icons/banner/auto-lastplayed.png differ diff --git a/tools/configurator/assets/icons/banner/auto-lastplayed.png.import b/tools/configurator/assets/icons/banner/auto-lastplayed.png.import new file mode 100644 index 00000000..e81f3098 --- /dev/null +++ b/tools/configurator/assets/icons/banner/auto-lastplayed.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dduvw0x1dhhs6" +path="res://.godot/imported/auto-lastplayed.png-b2afd1bb96c6a0a93a8b77c270712e7c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/auto-lastplayed.png" +dest_files=["res://.godot/imported/auto-lastplayed.png-b2afd1bb96c6a0a93a8b77c270712e7c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/background.png b/tools/configurator/assets/icons/banner/background.png new file mode 100644 index 00000000..0225d724 Binary files /dev/null and b/tools/configurator/assets/icons/banner/background.png differ diff --git a/tools/configurator/assets/icons/banner/background.png.import b/tools/configurator/assets/icons/banner/background.png.import new file mode 100644 index 00000000..3f253f84 --- /dev/null +++ b/tools/configurator/assets/icons/banner/background.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt1xdi6hrj13u" +path="res://.godot/imported/background.png-a728eb66578a129315ef64c604d2f1e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/background.png" +dest_files=["res://.godot/imported/background.png-a728eb66578a129315ef64c604d2f1e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/background.png.kra b/tools/configurator/assets/icons/banner/background.png.kra new file mode 100644 index 00000000..d0879036 Binary files /dev/null and b/tools/configurator/assets/icons/banner/background.png.kra differ diff --git a/tools/configurator/assets/icons/banner/background.png~ b/tools/configurator/assets/icons/banner/background.png~ new file mode 100644 index 00000000..73a4be05 Binary files /dev/null and b/tools/configurator/assets/icons/banner/background.png~ differ diff --git a/tools/configurator/assets/icons/banner/bbcmicro.png b/tools/configurator/assets/icons/banner/bbcmicro.png new file mode 100644 index 00000000..3b044d89 Binary files /dev/null and b/tools/configurator/assets/icons/banner/bbcmicro.png differ diff --git a/tools/configurator/assets/icons/banner/bbcmicro.png.import b/tools/configurator/assets/icons/banner/bbcmicro.png.import new file mode 100644 index 00000000..dae8d756 --- /dev/null +++ b/tools/configurator/assets/icons/banner/bbcmicro.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i0qneuct6ckm" +path="res://.godot/imported/bbcmicro.png-2a2941040baeb0fb0d6dbe56e0d29d48.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/bbcmicro.png" +dest_files=["res://.godot/imported/bbcmicro.png-2a2941040baeb0fb0d6dbe56e0d29d48.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/blank.png b/tools/configurator/assets/icons/banner/blank.png new file mode 100644 index 00000000..7282e60c Binary files /dev/null and b/tools/configurator/assets/icons/banner/blank.png differ diff --git a/tools/configurator/assets/icons/banner/blank.png.import b/tools/configurator/assets/icons/banner/blank.png.import new file mode 100644 index 00000000..c0e35db7 --- /dev/null +++ b/tools/configurator/assets/icons/banner/blank.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nbh5by7r7aqq" +path="res://.godot/imported/blank.png-684e0aa7002b4fb424e86e2c961939ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/blank.png" +dest_files=["res://.godot/imported/blank.png-684e0aa7002b4fb424e86e2c961939ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/c64.png b/tools/configurator/assets/icons/banner/c64.png new file mode 100644 index 00000000..cc970562 Binary files /dev/null and b/tools/configurator/assets/icons/banner/c64.png differ diff --git a/tools/configurator/assets/icons/banner/c64.png.import b/tools/configurator/assets/icons/banner/c64.png.import new file mode 100644 index 00000000..f12b8bf8 --- /dev/null +++ b/tools/configurator/assets/icons/banner/c64.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de3kcswdyc3ai" +path="res://.godot/imported/c64.png-4716764c38064153694c3dedc7d4908e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/c64.png" +dest_files=["res://.godot/imported/c64.png-4716764c38064153694c3dedc7d4908e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/cdimono1.png b/tools/configurator/assets/icons/banner/cdimono1.png new file mode 100644 index 00000000..d88014b1 Binary files /dev/null and b/tools/configurator/assets/icons/banner/cdimono1.png differ diff --git a/tools/configurator/assets/icons/banner/cdimono1.png.import b/tools/configurator/assets/icons/banner/cdimono1.png.import new file mode 100644 index 00000000..19e50fb6 --- /dev/null +++ b/tools/configurator/assets/icons/banner/cdimono1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bu7g2dfl5e36s" +path="res://.godot/imported/cdimono1.png-009385eb0242cbfa56aaca14b34f4356.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/cdimono1.png" +dest_files=["res://.godot/imported/cdimono1.png-009385eb0242cbfa56aaca14b34f4356.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/cdtv.png b/tools/configurator/assets/icons/banner/cdtv.png new file mode 100644 index 00000000..15b30b6c Binary files /dev/null and b/tools/configurator/assets/icons/banner/cdtv.png differ diff --git a/tools/configurator/assets/icons/banner/cdtv.png.import b/tools/configurator/assets/icons/banner/cdtv.png.import new file mode 100644 index 00000000..d578ac52 --- /dev/null +++ b/tools/configurator/assets/icons/banner/cdtv.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gcxu06dye0hn" +path="res://.godot/imported/cdtv.png-e018107949bf59f05f4178b1dfa979af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/cdtv.png" +dest_files=["res://.godot/imported/cdtv.png-e018107949bf59f05f4178b1dfa979af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/chailove.png b/tools/configurator/assets/icons/banner/chailove.png new file mode 100644 index 00000000..18551546 Binary files /dev/null and b/tools/configurator/assets/icons/banner/chailove.png differ diff --git a/tools/configurator/assets/icons/banner/chailove.png.import b/tools/configurator/assets/icons/banner/chailove.png.import new file mode 100644 index 00000000..c555d6f6 --- /dev/null +++ b/tools/configurator/assets/icons/banner/chailove.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bogjiroqpwf2s" +path="res://.godot/imported/chailove.png-586581c524e362e684601de8ed5fc351.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/chailove.png" +dest_files=["res://.godot/imported/chailove.png-586581c524e362e684601de8ed5fc351.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/channelf.png b/tools/configurator/assets/icons/banner/channelf.png new file mode 100644 index 00000000..54b75ec3 Binary files /dev/null and b/tools/configurator/assets/icons/banner/channelf.png differ diff --git a/tools/configurator/assets/icons/banner/channelf.png.import b/tools/configurator/assets/icons/banner/channelf.png.import new file mode 100644 index 00000000..3e639f5b --- /dev/null +++ b/tools/configurator/assets/icons/banner/channelf.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chme36i0j2chs" +path="res://.godot/imported/channelf.png-f3a394344828acab59d4b8e80d6bc715.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/channelf.png" +dest_files=["res://.godot/imported/channelf.png-f3a394344828acab59d4b8e80d6bc715.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/coco.png b/tools/configurator/assets/icons/banner/coco.png new file mode 100644 index 00000000..9702d182 Binary files /dev/null and b/tools/configurator/assets/icons/banner/coco.png differ diff --git a/tools/configurator/assets/icons/banner/coco.png.import b/tools/configurator/assets/icons/banner/coco.png.import new file mode 100644 index 00000000..5ef8ec69 --- /dev/null +++ b/tools/configurator/assets/icons/banner/coco.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crct8vxoow2bn" +path="res://.godot/imported/coco.png-6060be25f9a3f03a42aa4b17e24d2c04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/coco.png" +dest_files=["res://.godot/imported/coco.png-6060be25f9a3f03a42aa4b17e24d2c04.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/colecovision.png b/tools/configurator/assets/icons/banner/colecovision.png new file mode 100644 index 00000000..44cc6fbe Binary files /dev/null and b/tools/configurator/assets/icons/banner/colecovision.png differ diff --git a/tools/configurator/assets/icons/banner/colecovision.png.import b/tools/configurator/assets/icons/banner/colecovision.png.import new file mode 100644 index 00000000..6b5e8e5e --- /dev/null +++ b/tools/configurator/assets/icons/banner/colecovision.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d6irk2t8r1mw" +path="res://.godot/imported/colecovision.png-b1bc9ced2f066107eefc660b5cd763d3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/colecovision.png" +dest_files=["res://.godot/imported/colecovision.png-b1bc9ced2f066107eefc660b5cd763d3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/consolearcade.png b/tools/configurator/assets/icons/banner/consolearcade.png new file mode 100644 index 00000000..dcdd0f41 Binary files /dev/null and b/tools/configurator/assets/icons/banner/consolearcade.png differ diff --git a/tools/configurator/assets/icons/banner/consolearcade.png.import b/tools/configurator/assets/icons/banner/consolearcade.png.import new file mode 100644 index 00000000..4e822111 --- /dev/null +++ b/tools/configurator/assets/icons/banner/consolearcade.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv0cbhmeaqgkr" +path="res://.godot/imported/consolearcade.png-dc6b93c95a1bc7e172ee9d74e4ed74d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/consolearcade.png" +dest_files=["res://.godot/imported/consolearcade.png-dc6b93c95a1bc7e172ee9d74e4ed74d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/cps.png b/tools/configurator/assets/icons/banner/cps.png new file mode 100644 index 00000000..79996555 Binary files /dev/null and b/tools/configurator/assets/icons/banner/cps.png differ diff --git a/tools/configurator/assets/icons/banner/cps.png.import b/tools/configurator/assets/icons/banner/cps.png.import new file mode 100644 index 00000000..dcc2d698 --- /dev/null +++ b/tools/configurator/assets/icons/banner/cps.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlhcwqc1ddd4p" +path="res://.godot/imported/cps.png-0f3a743113a6c5721c02ef92a6016c6f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/cps.png" +dest_files=["res://.godot/imported/cps.png-0f3a743113a6c5721c02ef92a6016c6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/cps1.png b/tools/configurator/assets/icons/banner/cps1.png new file mode 100644 index 00000000..79996555 Binary files /dev/null and b/tools/configurator/assets/icons/banner/cps1.png differ diff --git a/tools/configurator/assets/icons/banner/cps1.png.import b/tools/configurator/assets/icons/banner/cps1.png.import new file mode 100644 index 00000000..8a295a85 --- /dev/null +++ b/tools/configurator/assets/icons/banner/cps1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0fgm530fgvyr" +path="res://.godot/imported/cps1.png-7b28dc19f3ac4330e0b410fcc0d705ca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/cps1.png" +dest_files=["res://.godot/imported/cps1.png-7b28dc19f3ac4330e0b410fcc0d705ca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/cps2.png b/tools/configurator/assets/icons/banner/cps2.png new file mode 100644 index 00000000..66270ec9 Binary files /dev/null and b/tools/configurator/assets/icons/banner/cps2.png differ diff --git a/tools/configurator/assets/icons/banner/cps2.png.import b/tools/configurator/assets/icons/banner/cps2.png.import new file mode 100644 index 00000000..f60707e3 --- /dev/null +++ b/tools/configurator/assets/icons/banner/cps2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxocnxga6a8ju" +path="res://.godot/imported/cps2.png-cbf7d0d7d19002540e09f8cbe8a49fcd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/cps2.png" +dest_files=["res://.godot/imported/cps2.png-cbf7d0d7d19002540e09f8cbe8a49fcd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/cps3.png b/tools/configurator/assets/icons/banner/cps3.png new file mode 100644 index 00000000..b327601c Binary files /dev/null and b/tools/configurator/assets/icons/banner/cps3.png differ diff --git a/tools/configurator/assets/icons/banner/cps3.png.import b/tools/configurator/assets/icons/banner/cps3.png.import new file mode 100644 index 00000000..9be50629 --- /dev/null +++ b/tools/configurator/assets/icons/banner/cps3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byy335a8addxy" +path="res://.godot/imported/cps3.png-6200c464cf46d4c0eabdbdb9eeb6c28e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/cps3.png" +dest_files=["res://.godot/imported/cps3.png-6200c464cf46d4c0eabdbdb9eeb6c28e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/crvision.png b/tools/configurator/assets/icons/banner/crvision.png new file mode 100644 index 00000000..472c66a4 Binary files /dev/null and b/tools/configurator/assets/icons/banner/crvision.png differ diff --git a/tools/configurator/assets/icons/banner/crvision.png.import b/tools/configurator/assets/icons/banner/crvision.png.import new file mode 100644 index 00000000..2bf98d98 --- /dev/null +++ b/tools/configurator/assets/icons/banner/crvision.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxvpxy5ehnxav" +path="res://.godot/imported/crvision.png-c6342e0266538b7e49ca7c60be706a13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/crvision.png" +dest_files=["res://.godot/imported/crvision.png-c6342e0266538b7e49ca7c60be706a13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/custom-collections.png b/tools/configurator/assets/icons/banner/custom-collections.png new file mode 100644 index 00000000..c61df68b Binary files /dev/null and b/tools/configurator/assets/icons/banner/custom-collections.png differ diff --git a/tools/configurator/assets/icons/banner/custom-collections.png.import b/tools/configurator/assets/icons/banner/custom-collections.png.import new file mode 100644 index 00000000..b28cca4f --- /dev/null +++ b/tools/configurator/assets/icons/banner/custom-collections.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpd3jqryeqiev" +path="res://.godot/imported/custom-collections.png-0506a71bd39aba3258635e449eb47489.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/custom-collections.png" +dest_files=["res://.godot/imported/custom-collections.png-0506a71bd39aba3258635e449eb47489.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/daphne.png b/tools/configurator/assets/icons/banner/daphne.png new file mode 100644 index 00000000..3fef7872 Binary files /dev/null and b/tools/configurator/assets/icons/banner/daphne.png differ diff --git a/tools/configurator/assets/icons/banner/daphne.png.import b/tools/configurator/assets/icons/banner/daphne.png.import new file mode 100644 index 00000000..23aa405b --- /dev/null +++ b/tools/configurator/assets/icons/banner/daphne.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl6vmtnb7jh4" +path="res://.godot/imported/daphne.png-decf4eff42502d870b9dd83d56facb34.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/daphne.png" +dest_files=["res://.godot/imported/daphne.png-decf4eff42502d870b9dd83d56facb34.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/desktop.png b/tools/configurator/assets/icons/banner/desktop.png new file mode 100644 index 00000000..cda05e1b Binary files /dev/null and b/tools/configurator/assets/icons/banner/desktop.png differ diff --git a/tools/configurator/assets/icons/banner/desktop.png.import b/tools/configurator/assets/icons/banner/desktop.png.import new file mode 100644 index 00000000..5e078d48 --- /dev/null +++ b/tools/configurator/assets/icons/banner/desktop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw6x6fwuypu83" +path="res://.godot/imported/desktop.png-f4bb64935be2dd5245c7e629edc026ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/desktop.png" +dest_files=["res://.godot/imported/desktop.png-f4bb64935be2dd5245c7e629edc026ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/doom.png b/tools/configurator/assets/icons/banner/doom.png new file mode 100644 index 00000000..63f0fe34 Binary files /dev/null and b/tools/configurator/assets/icons/banner/doom.png differ diff --git a/tools/configurator/assets/icons/banner/doom.png.import b/tools/configurator/assets/icons/banner/doom.png.import new file mode 100644 index 00000000..1c1b58a4 --- /dev/null +++ b/tools/configurator/assets/icons/banner/doom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qr1ukhvd5usy" +path="res://.godot/imported/doom.png-2ebb20f3787ec933916e62b07021df7e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/doom.png" +dest_files=["res://.godot/imported/doom.png-2ebb20f3787ec933916e62b07021df7e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/dos.png b/tools/configurator/assets/icons/banner/dos.png new file mode 100644 index 00000000..25fd3464 Binary files /dev/null and b/tools/configurator/assets/icons/banner/dos.png differ diff --git a/tools/configurator/assets/icons/banner/dos.png.import b/tools/configurator/assets/icons/banner/dos.png.import new file mode 100644 index 00000000..4cdd936c --- /dev/null +++ b/tools/configurator/assets/icons/banner/dos.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1xjmvei8xbr5" +path="res://.godot/imported/dos.png-214a6fe2ac3aee521e2535b44376b2f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/dos.png" +dest_files=["res://.godot/imported/dos.png-214a6fe2ac3aee521e2535b44376b2f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/dragon32.png b/tools/configurator/assets/icons/banner/dragon32.png new file mode 100644 index 00000000..34cacf84 Binary files /dev/null and b/tools/configurator/assets/icons/banner/dragon32.png differ diff --git a/tools/configurator/assets/icons/banner/dragon32.png.import b/tools/configurator/assets/icons/banner/dragon32.png.import new file mode 100644 index 00000000..7502468f --- /dev/null +++ b/tools/configurator/assets/icons/banner/dragon32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i1wsj88rebrk" +path="res://.godot/imported/dragon32.png-2d1bb6a2f5ff22e29ec6656b52558c3b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/dragon32.png" +dest_files=["res://.godot/imported/dragon32.png-2d1bb6a2f5ff22e29ec6656b52558c3b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/dreamcast.png b/tools/configurator/assets/icons/banner/dreamcast.png new file mode 100644 index 00000000..865e2173 Binary files /dev/null and b/tools/configurator/assets/icons/banner/dreamcast.png differ diff --git a/tools/configurator/assets/icons/banner/dreamcast.png.import b/tools/configurator/assets/icons/banner/dreamcast.png.import new file mode 100644 index 00000000..1802b9bb --- /dev/null +++ b/tools/configurator/assets/icons/banner/dreamcast.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvu4vr2uosr2d" +path="res://.godot/imported/dreamcast.png-84698a0e59e740ac8b26da358bbb2f7c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/dreamcast.png" +dest_files=["res://.godot/imported/dreamcast.png-84698a0e59e740ac8b26da358bbb2f7c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/easyrpg.png b/tools/configurator/assets/icons/banner/easyrpg.png new file mode 100644 index 00000000..9435064f Binary files /dev/null and b/tools/configurator/assets/icons/banner/easyrpg.png differ diff --git a/tools/configurator/assets/icons/banner/easyrpg.png.import b/tools/configurator/assets/icons/banner/easyrpg.png.import new file mode 100644 index 00000000..db20b45a --- /dev/null +++ b/tools/configurator/assets/icons/banner/easyrpg.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6d8xhmiiuy0t" +path="res://.godot/imported/easyrpg.png-b86ec1756f2350dcca4335392395db78.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/easyrpg.png" +dest_files=["res://.godot/imported/easyrpg.png-b86ec1756f2350dcca4335392395db78.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/electron.png b/tools/configurator/assets/icons/banner/electron.png new file mode 100644 index 00000000..b90e893c Binary files /dev/null and b/tools/configurator/assets/icons/banner/electron.png differ diff --git a/tools/configurator/assets/icons/banner/electron.png.import b/tools/configurator/assets/icons/banner/electron.png.import new file mode 100644 index 00000000..cabc94e1 --- /dev/null +++ b/tools/configurator/assets/icons/banner/electron.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dex8xcx5flbuq" +path="res://.godot/imported/electron.png-c2c3d15692a0f77282ea9fec80c2983a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/electron.png" +dest_files=["res://.godot/imported/electron.png-c2c3d15692a0f77282ea9fec80c2983a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/emulators.png b/tools/configurator/assets/icons/banner/emulators.png new file mode 100644 index 00000000..6032ec30 Binary files /dev/null and b/tools/configurator/assets/icons/banner/emulators.png differ diff --git a/tools/configurator/assets/icons/banner/emulators.png.import b/tools/configurator/assets/icons/banner/emulators.png.import new file mode 100644 index 00000000..5a3a3bb9 --- /dev/null +++ b/tools/configurator/assets/icons/banner/emulators.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://batrja7ewkhu5" +path="res://.godot/imported/emulators.png-c4594a27ed04c2cba7814c635b1d9029.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/emulators.png" +dest_files=["res://.godot/imported/emulators.png-c4594a27ed04c2cba7814c635b1d9029.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/epic.png b/tools/configurator/assets/icons/banner/epic.png new file mode 100644 index 00000000..bb9fbdcc Binary files /dev/null and b/tools/configurator/assets/icons/banner/epic.png differ diff --git a/tools/configurator/assets/icons/banner/epic.png.import b/tools/configurator/assets/icons/banner/epic.png.import new file mode 100644 index 00000000..d887de51 --- /dev/null +++ b/tools/configurator/assets/icons/banner/epic.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwt5l53u7ormm" +path="res://.godot/imported/epic.png-a887762bf720474c2ee54a9413a78454.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/epic.png" +dest_files=["res://.godot/imported/epic.png-a887762bf720474c2ee54a9413a78454.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/famicom.png b/tools/configurator/assets/icons/banner/famicom.png new file mode 100644 index 00000000..871b0b64 Binary files /dev/null and b/tools/configurator/assets/icons/banner/famicom.png differ diff --git a/tools/configurator/assets/icons/banner/famicom.png.import b/tools/configurator/assets/icons/banner/famicom.png.import new file mode 100644 index 00000000..72cfa8c8 --- /dev/null +++ b/tools/configurator/assets/icons/banner/famicom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0eipdg6do4nj" +path="res://.godot/imported/famicom.png-c55f2476acc4c61323f5e43ec3bb5b75.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/famicom.png" +dest_files=["res://.godot/imported/famicom.png-c55f2476acc4c61323f5e43ec3bb5b75.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/fba.png b/tools/configurator/assets/icons/banner/fba.png new file mode 100644 index 00000000..90c7aaff Binary files /dev/null and b/tools/configurator/assets/icons/banner/fba.png differ diff --git a/tools/configurator/assets/icons/banner/fba.png.import b/tools/configurator/assets/icons/banner/fba.png.import new file mode 100644 index 00000000..fbd3ff21 --- /dev/null +++ b/tools/configurator/assets/icons/banner/fba.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cre0e6yeokt43" +path="res://.godot/imported/fba.png-9e430a164a6613392b406fc0b0cfc198.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/fba.png" +dest_files=["res://.godot/imported/fba.png-9e430a164a6613392b406fc0b0cfc198.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/fbneo.png b/tools/configurator/assets/icons/banner/fbneo.png new file mode 100644 index 00000000..d42d0fb6 Binary files /dev/null and b/tools/configurator/assets/icons/banner/fbneo.png differ diff --git a/tools/configurator/assets/icons/banner/fbneo.png.import b/tools/configurator/assets/icons/banner/fbneo.png.import new file mode 100644 index 00000000..afdf569a --- /dev/null +++ b/tools/configurator/assets/icons/banner/fbneo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doxl1wdru4cfs" +path="res://.godot/imported/fbneo.png-ab0ac1f8550785f3d78536288c7d78aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/fbneo.png" +dest_files=["res://.godot/imported/fbneo.png-ab0ac1f8550785f3d78536288c7d78aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/fds.png b/tools/configurator/assets/icons/banner/fds.png new file mode 100644 index 00000000..b71e0b8c Binary files /dev/null and b/tools/configurator/assets/icons/banner/fds.png differ diff --git a/tools/configurator/assets/icons/banner/fds.png.import b/tools/configurator/assets/icons/banner/fds.png.import new file mode 100644 index 00000000..2ceb2ac9 --- /dev/null +++ b/tools/configurator/assets/icons/banner/fds.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://biokl2smvq333" +path="res://.godot/imported/fds.png-49493c427024f4f4879764f18c5eb634.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/fds.png" +dest_files=["res://.godot/imported/fds.png-49493c427024f4f4879764f18c5eb634.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/flash.png b/tools/configurator/assets/icons/banner/flash.png new file mode 100644 index 00000000..02a9fbba Binary files /dev/null and b/tools/configurator/assets/icons/banner/flash.png differ diff --git a/tools/configurator/assets/icons/banner/flash.png.import b/tools/configurator/assets/icons/banner/flash.png.import new file mode 100644 index 00000000..b320da65 --- /dev/null +++ b/tools/configurator/assets/icons/banner/flash.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjuxgmegaupai" +path="res://.godot/imported/flash.png-fc45cc1fc178f54963e64c2fac71e4fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/flash.png" +dest_files=["res://.godot/imported/flash.png-fc45cc1fc178f54963e64c2fac71e4fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/fm7.png b/tools/configurator/assets/icons/banner/fm7.png new file mode 100644 index 00000000..224fa535 Binary files /dev/null and b/tools/configurator/assets/icons/banner/fm7.png differ diff --git a/tools/configurator/assets/icons/banner/fm7.png.import b/tools/configurator/assets/icons/banner/fm7.png.import new file mode 100644 index 00000000..66f4b1e4 --- /dev/null +++ b/tools/configurator/assets/icons/banner/fm7.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j1glw1yjen61" +path="res://.godot/imported/fm7.png-e04466e8685af4aae4f45380d6b52ed1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/fm7.png" +dest_files=["res://.godot/imported/fm7.png-e04466e8685af4aae4f45380d6b52ed1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/fmtowns.png b/tools/configurator/assets/icons/banner/fmtowns.png new file mode 100644 index 00000000..c12743ba Binary files /dev/null and b/tools/configurator/assets/icons/banner/fmtowns.png differ diff --git a/tools/configurator/assets/icons/banner/fmtowns.png.import b/tools/configurator/assets/icons/banner/fmtowns.png.import new file mode 100644 index 00000000..1081f7be --- /dev/null +++ b/tools/configurator/assets/icons/banner/fmtowns.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1qhsa8t5sk11" +path="res://.godot/imported/fmtowns.png-e9b9d3cde4d6beecfe69d2fb70184758.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/fmtowns.png" +dest_files=["res://.godot/imported/fmtowns.png-e9b9d3cde4d6beecfe69d2fb70184758.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/fpinball.png b/tools/configurator/assets/icons/banner/fpinball.png new file mode 100644 index 00000000..f5a891cb Binary files /dev/null and b/tools/configurator/assets/icons/banner/fpinball.png differ diff --git a/tools/configurator/assets/icons/banner/fpinball.png.import b/tools/configurator/assets/icons/banner/fpinball.png.import new file mode 100644 index 00000000..2bbf04f8 --- /dev/null +++ b/tools/configurator/assets/icons/banner/fpinball.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjwjhcvptfayk" +path="res://.godot/imported/fpinball.png-82bd204a351b659cacd0633ae345c937.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/fpinball.png" +dest_files=["res://.godot/imported/fpinball.png-82bd204a351b659cacd0633ae345c937.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/gamate.png b/tools/configurator/assets/icons/banner/gamate.png new file mode 100644 index 00000000..2773122c Binary files /dev/null and b/tools/configurator/assets/icons/banner/gamate.png differ diff --git a/tools/configurator/assets/icons/banner/gamate.png.import b/tools/configurator/assets/icons/banner/gamate.png.import new file mode 100644 index 00000000..fc4d9307 --- /dev/null +++ b/tools/configurator/assets/icons/banner/gamate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2b6po67eswmq" +path="res://.godot/imported/gamate.png-408308d258991cf3522b21a444468ff4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/gamate.png" +dest_files=["res://.godot/imported/gamate.png-408308d258991cf3522b21a444468ff4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/gameandwatch.png b/tools/configurator/assets/icons/banner/gameandwatch.png new file mode 100644 index 00000000..a2fe1a79 Binary files /dev/null and b/tools/configurator/assets/icons/banner/gameandwatch.png differ diff --git a/tools/configurator/assets/icons/banner/gameandwatch.png.import b/tools/configurator/assets/icons/banner/gameandwatch.png.import new file mode 100644 index 00000000..17805112 --- /dev/null +++ b/tools/configurator/assets/icons/banner/gameandwatch.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f8pus7psoexb" +path="res://.godot/imported/gameandwatch.png-c0f23ac4a8f77185f574bd0a67310af5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/gameandwatch.png" +dest_files=["res://.godot/imported/gameandwatch.png-c0f23ac4a8f77185f574bd0a67310af5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/gamecom.png b/tools/configurator/assets/icons/banner/gamecom.png new file mode 100644 index 00000000..ea0ebad2 Binary files /dev/null and b/tools/configurator/assets/icons/banner/gamecom.png differ diff --git a/tools/configurator/assets/icons/banner/gamecom.png.import b/tools/configurator/assets/icons/banner/gamecom.png.import new file mode 100644 index 00000000..0ca0d6ed --- /dev/null +++ b/tools/configurator/assets/icons/banner/gamecom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpysliu1flsm5" +path="res://.godot/imported/gamecom.png-f8e09576ffad73a071a3b26f51dca7c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/gamecom.png" +dest_files=["res://.godot/imported/gamecom.png-f8e09576ffad73a071a3b26f51dca7c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/gamegear.png b/tools/configurator/assets/icons/banner/gamegear.png new file mode 100644 index 00000000..c0cf885d Binary files /dev/null and b/tools/configurator/assets/icons/banner/gamegear.png differ diff --git a/tools/configurator/assets/icons/banner/gamegear.png.import b/tools/configurator/assets/icons/banner/gamegear.png.import new file mode 100644 index 00000000..8db8152e --- /dev/null +++ b/tools/configurator/assets/icons/banner/gamegear.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvr1eijddf6nv" +path="res://.godot/imported/gamegear.png-0fb279e2a7ce2765c9fc3b328477f423.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/gamegear.png" +dest_files=["res://.godot/imported/gamegear.png-0fb279e2a7ce2765c9fc3b328477f423.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/gb.png b/tools/configurator/assets/icons/banner/gb.png new file mode 100644 index 00000000..eecf57cb Binary files /dev/null and b/tools/configurator/assets/icons/banner/gb.png differ diff --git a/tools/configurator/assets/icons/banner/gb.png.import b/tools/configurator/assets/icons/banner/gb.png.import new file mode 100644 index 00000000..c1a8f219 --- /dev/null +++ b/tools/configurator/assets/icons/banner/gb.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du8go5dyabmsl" +path="res://.godot/imported/gb.png-a5bc98868ebcedeffa902c8fda1835be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/gb.png" +dest_files=["res://.godot/imported/gb.png-a5bc98868ebcedeffa902c8fda1835be.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/gba.png b/tools/configurator/assets/icons/banner/gba.png new file mode 100644 index 00000000..e1ae2eb8 Binary files /dev/null and b/tools/configurator/assets/icons/banner/gba.png differ diff --git a/tools/configurator/assets/icons/banner/gba.png.import b/tools/configurator/assets/icons/banner/gba.png.import new file mode 100644 index 00000000..1ff05e74 --- /dev/null +++ b/tools/configurator/assets/icons/banner/gba.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4jbv7xaqy0sq" +path="res://.godot/imported/gba.png-a402938ca686f718141300441138ec78.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/gba.png" +dest_files=["res://.godot/imported/gba.png-a402938ca686f718141300441138ec78.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/gbc.png b/tools/configurator/assets/icons/banner/gbc.png new file mode 100644 index 00000000..7de63975 Binary files /dev/null and b/tools/configurator/assets/icons/banner/gbc.png differ diff --git a/tools/configurator/assets/icons/banner/gbc.png.import b/tools/configurator/assets/icons/banner/gbc.png.import new file mode 100644 index 00000000..ca7e8c95 --- /dev/null +++ b/tools/configurator/assets/icons/banner/gbc.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du4mupvvwbusy" +path="res://.godot/imported/gbc.png-324ec0394f804f3dc9c3177a82151df2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/gbc.png" +dest_files=["res://.godot/imported/gbc.png-324ec0394f804f3dc9c3177a82151df2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/gc.png b/tools/configurator/assets/icons/banner/gc.png new file mode 100644 index 00000000..c91b2fcc Binary files /dev/null and b/tools/configurator/assets/icons/banner/gc.png differ diff --git a/tools/configurator/assets/icons/banner/gc.png.import b/tools/configurator/assets/icons/banner/gc.png.import new file mode 100644 index 00000000..71b46914 --- /dev/null +++ b/tools/configurator/assets/icons/banner/gc.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8f5tnwe6qvf8" +path="res://.godot/imported/gc.png-761dbc7017dfa179f8f857a8a7402993.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/gc.png" +dest_files=["res://.godot/imported/gc.png-761dbc7017dfa179f8f857a8a7402993.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/genesis.png b/tools/configurator/assets/icons/banner/genesis.png new file mode 100644 index 00000000..1f0ca68d Binary files /dev/null and b/tools/configurator/assets/icons/banner/genesis.png differ diff --git a/tools/configurator/assets/icons/banner/genesis.png.import b/tools/configurator/assets/icons/banner/genesis.png.import new file mode 100644 index 00000000..d1553cf4 --- /dev/null +++ b/tools/configurator/assets/icons/banner/genesis.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2kcxqj2asna8" +path="res://.godot/imported/genesis.png-bfc6b30b6b62bd598a6dfeae7e5094a1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/genesis.png" +dest_files=["res://.godot/imported/genesis.png-bfc6b30b6b62bd598a6dfeae7e5094a1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/gmaster.png b/tools/configurator/assets/icons/banner/gmaster.png new file mode 100644 index 00000000..33b24faf Binary files /dev/null and b/tools/configurator/assets/icons/banner/gmaster.png differ diff --git a/tools/configurator/assets/icons/banner/gmaster.png.import b/tools/configurator/assets/icons/banner/gmaster.png.import new file mode 100644 index 00000000..ef41352e --- /dev/null +++ b/tools/configurator/assets/icons/banner/gmaster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqi30v0bwdhxa" +path="res://.godot/imported/gmaster.png-e1bb0bab38c6fdccfb28be61f463e43b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/gmaster.png" +dest_files=["res://.godot/imported/gmaster.png-e1bb0bab38c6fdccfb28be61f463e43b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/gx4000.png b/tools/configurator/assets/icons/banner/gx4000.png new file mode 100644 index 00000000..47d3ff2d Binary files /dev/null and b/tools/configurator/assets/icons/banner/gx4000.png differ diff --git a/tools/configurator/assets/icons/banner/gx4000.png.import b/tools/configurator/assets/icons/banner/gx4000.png.import new file mode 100644 index 00000000..46176981 --- /dev/null +++ b/tools/configurator/assets/icons/banner/gx4000.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r3x62qfkprn1" +path="res://.godot/imported/gx4000.png-497f86e0bd99588e636d3be27a005557.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/gx4000.png" +dest_files=["res://.godot/imported/gx4000.png-497f86e0bd99588e636d3be27a005557.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/intellivision.png b/tools/configurator/assets/icons/banner/intellivision.png new file mode 100644 index 00000000..7c717001 Binary files /dev/null and b/tools/configurator/assets/icons/banner/intellivision.png differ diff --git a/tools/configurator/assets/icons/banner/intellivision.png.import b/tools/configurator/assets/icons/banner/intellivision.png.import new file mode 100644 index 00000000..f02a9446 --- /dev/null +++ b/tools/configurator/assets/icons/banner/intellivision.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck84lnsq1gwc8" +path="res://.godot/imported/intellivision.png-3428214b8a53c63a93987daa8f3a46a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/intellivision.png" +dest_files=["res://.godot/imported/intellivision.png-3428214b8a53c63a93987daa8f3a46a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/j2me.png b/tools/configurator/assets/icons/banner/j2me.png new file mode 100644 index 00000000..af77628a Binary files /dev/null and b/tools/configurator/assets/icons/banner/j2me.png differ diff --git a/tools/configurator/assets/icons/banner/j2me.png.import b/tools/configurator/assets/icons/banner/j2me.png.import new file mode 100644 index 00000000..b8b0ca4d --- /dev/null +++ b/tools/configurator/assets/icons/banner/j2me.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d65hlgn5mfg1" +path="res://.godot/imported/j2me.png-463972933cdcb6e5ac741594a5063ada.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/j2me.png" +dest_files=["res://.godot/imported/j2me.png-463972933cdcb6e5ac741594a5063ada.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/kodi.png b/tools/configurator/assets/icons/banner/kodi.png new file mode 100644 index 00000000..c0b8813e Binary files /dev/null and b/tools/configurator/assets/icons/banner/kodi.png differ diff --git a/tools/configurator/assets/icons/banner/kodi.png.import b/tools/configurator/assets/icons/banner/kodi.png.import new file mode 100644 index 00000000..e8921e45 --- /dev/null +++ b/tools/configurator/assets/icons/banner/kodi.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0qwgytrydsgs" +path="res://.godot/imported/kodi.png-e750cc1880907a011dff6966480d1197.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/kodi.png" +dest_files=["res://.godot/imported/kodi.png-e750cc1880907a011dff6966480d1197.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/laserdisc.png b/tools/configurator/assets/icons/banner/laserdisc.png new file mode 100644 index 00000000..69ae67d9 Binary files /dev/null and b/tools/configurator/assets/icons/banner/laserdisc.png differ diff --git a/tools/configurator/assets/icons/banner/laserdisc.png.import b/tools/configurator/assets/icons/banner/laserdisc.png.import new file mode 100644 index 00000000..e92dc250 --- /dev/null +++ b/tools/configurator/assets/icons/banner/laserdisc.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhnjgcllno7cq" +path="res://.godot/imported/laserdisc.png-860c4cfcc84532ba4d9e350b8a1f710f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/laserdisc.png" +dest_files=["res://.godot/imported/laserdisc.png-860c4cfcc84532ba4d9e350b8a1f710f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/lcdgames.png b/tools/configurator/assets/icons/banner/lcdgames.png new file mode 100644 index 00000000..7b970c92 Binary files /dev/null and b/tools/configurator/assets/icons/banner/lcdgames.png differ diff --git a/tools/configurator/assets/icons/banner/lcdgames.png.import b/tools/configurator/assets/icons/banner/lcdgames.png.import new file mode 100644 index 00000000..99294ebc --- /dev/null +++ b/tools/configurator/assets/icons/banner/lcdgames.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df8afxvddbmhd" +path="res://.godot/imported/lcdgames.png-7bc0ca1bf9ad524f6aa22bdad2c98108.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/lcdgames.png" +dest_files=["res://.godot/imported/lcdgames.png-7bc0ca1bf9ad524f6aa22bdad2c98108.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/lowresnx.png b/tools/configurator/assets/icons/banner/lowresnx.png new file mode 100644 index 00000000..a841f7ed Binary files /dev/null and b/tools/configurator/assets/icons/banner/lowresnx.png differ diff --git a/tools/configurator/assets/icons/banner/lowresnx.png.import b/tools/configurator/assets/icons/banner/lowresnx.png.import new file mode 100644 index 00000000..4f34fdf6 --- /dev/null +++ b/tools/configurator/assets/icons/banner/lowresnx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2odmwp0umbcf" +path="res://.godot/imported/lowresnx.png-bd44111a18480ae972d519f7b37d2fdb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/lowresnx.png" +dest_files=["res://.godot/imported/lowresnx.png-bd44111a18480ae972d519f7b37d2fdb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/lutris.png b/tools/configurator/assets/icons/banner/lutris.png new file mode 100644 index 00000000..ca494350 Binary files /dev/null and b/tools/configurator/assets/icons/banner/lutris.png differ diff --git a/tools/configurator/assets/icons/banner/lutris.png.import b/tools/configurator/assets/icons/banner/lutris.png.import new file mode 100644 index 00000000..69c371af --- /dev/null +++ b/tools/configurator/assets/icons/banner/lutris.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgitaoqhb75kf" +path="res://.godot/imported/lutris.png-fcac4a9d37163caa4fd9da511926bdc5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/lutris.png" +dest_files=["res://.godot/imported/lutris.png-fcac4a9d37163caa4fd9da511926bdc5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/lutro.png b/tools/configurator/assets/icons/banner/lutro.png new file mode 100644 index 00000000..07eee663 Binary files /dev/null and b/tools/configurator/assets/icons/banner/lutro.png differ diff --git a/tools/configurator/assets/icons/banner/lutro.png.import b/tools/configurator/assets/icons/banner/lutro.png.import new file mode 100644 index 00000000..24e9a151 --- /dev/null +++ b/tools/configurator/assets/icons/banner/lutro.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsop7hi2g13n0" +path="res://.godot/imported/lutro.png-a12d78e9dc20d299c35aa7267647892f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/lutro.png" +dest_files=["res://.godot/imported/lutro.png-a12d78e9dc20d299c35aa7267647892f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/macintosh.png b/tools/configurator/assets/icons/banner/macintosh.png new file mode 100644 index 00000000..dcfb3ac4 Binary files /dev/null and b/tools/configurator/assets/icons/banner/macintosh.png differ diff --git a/tools/configurator/assets/icons/banner/macintosh.png.import b/tools/configurator/assets/icons/banner/macintosh.png.import new file mode 100644 index 00000000..36f3a648 --- /dev/null +++ b/tools/configurator/assets/icons/banner/macintosh.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uy8dxnyhyf4" +path="res://.godot/imported/macintosh.png-ea6f69beccc70d121fee612b62939ede.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/macintosh.png" +dest_files=["res://.godot/imported/macintosh.png-ea6f69beccc70d121fee612b62939ede.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/mame-advmame.png b/tools/configurator/assets/icons/banner/mame-advmame.png new file mode 100644 index 00000000..fb39b150 Binary files /dev/null and b/tools/configurator/assets/icons/banner/mame-advmame.png differ diff --git a/tools/configurator/assets/icons/banner/mame-advmame.png.import b/tools/configurator/assets/icons/banner/mame-advmame.png.import new file mode 100644 index 00000000..fc6de736 --- /dev/null +++ b/tools/configurator/assets/icons/banner/mame-advmame.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1kclo35hpkr3" +path="res://.godot/imported/mame-advmame.png-b745fe0eb1a923bb0cb7089f83f9f761.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/mame-advmame.png" +dest_files=["res://.godot/imported/mame-advmame.png-b745fe0eb1a923bb0cb7089f83f9f761.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/mame.png b/tools/configurator/assets/icons/banner/mame.png new file mode 100644 index 00000000..fb39b150 Binary files /dev/null and b/tools/configurator/assets/icons/banner/mame.png differ diff --git a/tools/configurator/assets/icons/banner/mame.png.import b/tools/configurator/assets/icons/banner/mame.png.import new file mode 100644 index 00000000..c650be59 --- /dev/null +++ b/tools/configurator/assets/icons/banner/mame.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq22fruwf0r55" +path="res://.godot/imported/mame.png-83911990d17fbdee487e07cb6e75f477.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/mame.png" +dest_files=["res://.godot/imported/mame.png-83911990d17fbdee487e07cb6e75f477.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/mastersystem.png b/tools/configurator/assets/icons/banner/mastersystem.png new file mode 100644 index 00000000..2c0f8d0b Binary files /dev/null and b/tools/configurator/assets/icons/banner/mastersystem.png differ diff --git a/tools/configurator/assets/icons/banner/mastersystem.png.import b/tools/configurator/assets/icons/banner/mastersystem.png.import new file mode 100644 index 00000000..b505fb9e --- /dev/null +++ b/tools/configurator/assets/icons/banner/mastersystem.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgdennwyj5g2l" +path="res://.godot/imported/mastersystem.png-7488ae5b64343dab8e2c5e7e282a7d9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/mastersystem.png" +dest_files=["res://.godot/imported/mastersystem.png-7488ae5b64343dab8e2c5e7e282a7d9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/megacd.png b/tools/configurator/assets/icons/banner/megacd.png new file mode 100644 index 00000000..a1eb7eb1 Binary files /dev/null and b/tools/configurator/assets/icons/banner/megacd.png differ diff --git a/tools/configurator/assets/icons/banner/megacd.png.import b/tools/configurator/assets/icons/banner/megacd.png.import new file mode 100644 index 00000000..e6684af5 --- /dev/null +++ b/tools/configurator/assets/icons/banner/megacd.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dug4qr74ae6os" +path="res://.godot/imported/megacd.png-531ba48d4cb155bd74525d74b164fb51.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/megacd.png" +dest_files=["res://.godot/imported/megacd.png-531ba48d4cb155bd74525d74b164fb51.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/megacdjp.png b/tools/configurator/assets/icons/banner/megacdjp.png new file mode 100644 index 00000000..3815a8a0 Binary files /dev/null and b/tools/configurator/assets/icons/banner/megacdjp.png differ diff --git a/tools/configurator/assets/icons/banner/megacdjp.png.import b/tools/configurator/assets/icons/banner/megacdjp.png.import new file mode 100644 index 00000000..9c828b0b --- /dev/null +++ b/tools/configurator/assets/icons/banner/megacdjp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0od2j8isalbm" +path="res://.godot/imported/megacdjp.png-6ace7392e0c32952e8e76c3864484836.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/megacdjp.png" +dest_files=["res://.godot/imported/megacdjp.png-6ace7392e0c32952e8e76c3864484836.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/megadrive.png b/tools/configurator/assets/icons/banner/megadrive.png new file mode 100644 index 00000000..3d9b62f6 Binary files /dev/null and b/tools/configurator/assets/icons/banner/megadrive.png differ diff --git a/tools/configurator/assets/icons/banner/megadrive.png.import b/tools/configurator/assets/icons/banner/megadrive.png.import new file mode 100644 index 00000000..2ea33920 --- /dev/null +++ b/tools/configurator/assets/icons/banner/megadrive.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpq0em8j2bank" +path="res://.godot/imported/megadrive.png-56a25001eb2e4852cdbe6eaf58baf9d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/megadrive.png" +dest_files=["res://.godot/imported/megadrive.png-56a25001eb2e4852cdbe6eaf58baf9d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/megadrivejp.png b/tools/configurator/assets/icons/banner/megadrivejp.png new file mode 100644 index 00000000..40e31c44 Binary files /dev/null and b/tools/configurator/assets/icons/banner/megadrivejp.png differ diff --git a/tools/configurator/assets/icons/banner/megadrivejp.png.import b/tools/configurator/assets/icons/banner/megadrivejp.png.import new file mode 100644 index 00000000..d54aa7cd --- /dev/null +++ b/tools/configurator/assets/icons/banner/megadrivejp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6emi1qmgs3cm" +path="res://.godot/imported/megadrivejp.png-2b272d9756938eb6b41672c09f2ec1e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/megadrivejp.png" +dest_files=["res://.godot/imported/megadrivejp.png-2b272d9756938eb6b41672c09f2ec1e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/megadrivejp.png.kra b/tools/configurator/assets/icons/banner/megadrivejp.png.kra new file mode 100644 index 00000000..fcf8d0db Binary files /dev/null and b/tools/configurator/assets/icons/banner/megadrivejp.png.kra differ diff --git a/tools/configurator/assets/icons/banner/megadrivejp.png~ b/tools/configurator/assets/icons/banner/megadrivejp.png~ new file mode 100644 index 00000000..9afd5894 Binary files /dev/null and b/tools/configurator/assets/icons/banner/megadrivejp.png~ differ diff --git a/tools/configurator/assets/icons/banner/megaduck.png b/tools/configurator/assets/icons/banner/megaduck.png new file mode 100644 index 00000000..cc843f9f Binary files /dev/null and b/tools/configurator/assets/icons/banner/megaduck.png differ diff --git a/tools/configurator/assets/icons/banner/megaduck.png.import b/tools/configurator/assets/icons/banner/megaduck.png.import new file mode 100644 index 00000000..106eb0d6 --- /dev/null +++ b/tools/configurator/assets/icons/banner/megaduck.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brxcne7q3udl7" +path="res://.godot/imported/megaduck.png-795f8a6088b87fbe2790761f93ce6833.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/megaduck.png" +dest_files=["res://.godot/imported/megaduck.png-795f8a6088b87fbe2790761f93ce6833.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/mess.png b/tools/configurator/assets/icons/banner/mess.png new file mode 100644 index 00000000..1d410044 Binary files /dev/null and b/tools/configurator/assets/icons/banner/mess.png differ diff --git a/tools/configurator/assets/icons/banner/mess.png.import b/tools/configurator/assets/icons/banner/mess.png.import new file mode 100644 index 00000000..a9cfdc56 --- /dev/null +++ b/tools/configurator/assets/icons/banner/mess.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqwpskrybir72" +path="res://.godot/imported/mess.png-24ee00ad380a1198b46e74a5538a2df4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/mess.png" +dest_files=["res://.godot/imported/mess.png-24ee00ad380a1198b46e74a5538a2df4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/model2.png b/tools/configurator/assets/icons/banner/model2.png new file mode 100644 index 00000000..67132197 Binary files /dev/null and b/tools/configurator/assets/icons/banner/model2.png differ diff --git a/tools/configurator/assets/icons/banner/model2.png.import b/tools/configurator/assets/icons/banner/model2.png.import new file mode 100644 index 00000000..d223170e --- /dev/null +++ b/tools/configurator/assets/icons/banner/model2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwr032kqh870c" +path="res://.godot/imported/model2.png-d8d9a671b32588fe11048784a495c886.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/model2.png" +dest_files=["res://.godot/imported/model2.png-d8d9a671b32588fe11048784a495c886.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/model3.png b/tools/configurator/assets/icons/banner/model3.png new file mode 100644 index 00000000..adabf99d Binary files /dev/null and b/tools/configurator/assets/icons/banner/model3.png differ diff --git a/tools/configurator/assets/icons/banner/model3.png.import b/tools/configurator/assets/icons/banner/model3.png.import new file mode 100644 index 00000000..80e45c6b --- /dev/null +++ b/tools/configurator/assets/icons/banner/model3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmecv5kt6m3kv" +path="res://.godot/imported/model3.png-371fb8fb809998cd9c847ceb8f2a51b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/model3.png" +dest_files=["res://.godot/imported/model3.png-371fb8fb809998cd9c847ceb8f2a51b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/moto.png b/tools/configurator/assets/icons/banner/moto.png new file mode 100644 index 00000000..59a0ce33 Binary files /dev/null and b/tools/configurator/assets/icons/banner/moto.png differ diff --git a/tools/configurator/assets/icons/banner/moto.png.import b/tools/configurator/assets/icons/banner/moto.png.import new file mode 100644 index 00000000..07aae455 --- /dev/null +++ b/tools/configurator/assets/icons/banner/moto.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h6ewippor2d5" +path="res://.godot/imported/moto.png-6d7795770d7c72767119b034718cba5e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/moto.png" +dest_files=["res://.godot/imported/moto.png-6d7795770d7c72767119b034718cba5e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/msx.png b/tools/configurator/assets/icons/banner/msx.png new file mode 100644 index 00000000..fbd9420c Binary files /dev/null and b/tools/configurator/assets/icons/banner/msx.png differ diff --git a/tools/configurator/assets/icons/banner/msx.png.import b/tools/configurator/assets/icons/banner/msx.png.import new file mode 100644 index 00000000..26222c63 --- /dev/null +++ b/tools/configurator/assets/icons/banner/msx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2g1mtw0l6o5s" +path="res://.godot/imported/msx.png-8a534397fe8e4d3028a1e4c0129e347a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/msx.png" +dest_files=["res://.godot/imported/msx.png-8a534397fe8e4d3028a1e4c0129e347a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/msx1.png b/tools/configurator/assets/icons/banner/msx1.png new file mode 100644 index 00000000..fbd9420c Binary files /dev/null and b/tools/configurator/assets/icons/banner/msx1.png differ diff --git a/tools/configurator/assets/icons/banner/msx1.png.import b/tools/configurator/assets/icons/banner/msx1.png.import new file mode 100644 index 00000000..6e7b9940 --- /dev/null +++ b/tools/configurator/assets/icons/banner/msx1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wweuq16xxf2f" +path="res://.godot/imported/msx1.png-928d2ff32fbac18a203197f61d4f9dcc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/msx1.png" +dest_files=["res://.godot/imported/msx1.png-928d2ff32fbac18a203197f61d4f9dcc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/msx2.png b/tools/configurator/assets/icons/banner/msx2.png new file mode 100644 index 00000000..2a1fac0b Binary files /dev/null and b/tools/configurator/assets/icons/banner/msx2.png differ diff --git a/tools/configurator/assets/icons/banner/msx2.png.import b/tools/configurator/assets/icons/banner/msx2.png.import new file mode 100644 index 00000000..9bb8e210 --- /dev/null +++ b/tools/configurator/assets/icons/banner/msx2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs06byejrcq28" +path="res://.godot/imported/msx2.png-2350a8ae683d7fcb2feeb8536b2a00dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/msx2.png" +dest_files=["res://.godot/imported/msx2.png-2350a8ae683d7fcb2feeb8536b2a00dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/msxturbor.png b/tools/configurator/assets/icons/banner/msxturbor.png new file mode 100644 index 00000000..2118865a Binary files /dev/null and b/tools/configurator/assets/icons/banner/msxturbor.png differ diff --git a/tools/configurator/assets/icons/banner/msxturbor.png.import b/tools/configurator/assets/icons/banner/msxturbor.png.import new file mode 100644 index 00000000..3526151f --- /dev/null +++ b/tools/configurator/assets/icons/banner/msxturbor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1h80r1vuqf75" +path="res://.godot/imported/msxturbor.png-9967b28616961f6fbbaab18950fdeeb7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/msxturbor.png" +dest_files=["res://.godot/imported/msxturbor.png-9967b28616961f6fbbaab18950fdeeb7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/mugen.png b/tools/configurator/assets/icons/banner/mugen.png new file mode 100644 index 00000000..596756d8 Binary files /dev/null and b/tools/configurator/assets/icons/banner/mugen.png differ diff --git a/tools/configurator/assets/icons/banner/mugen.png.import b/tools/configurator/assets/icons/banner/mugen.png.import new file mode 100644 index 00000000..2b1f302b --- /dev/null +++ b/tools/configurator/assets/icons/banner/mugen.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddootc81p5ywo" +path="res://.godot/imported/mugen.png-6a46205ec49b2e4d5d147e4a0de23dbd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/mugen.png" +dest_files=["res://.godot/imported/mugen.png-6a46205ec49b2e4d5d147e4a0de23dbd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/multivision.png b/tools/configurator/assets/icons/banner/multivision.png new file mode 100644 index 00000000..bcba7755 Binary files /dev/null and b/tools/configurator/assets/icons/banner/multivision.png differ diff --git a/tools/configurator/assets/icons/banner/multivision.png.import b/tools/configurator/assets/icons/banner/multivision.png.import new file mode 100644 index 00000000..1f2d230f --- /dev/null +++ b/tools/configurator/assets/icons/banner/multivision.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8tle6lhk41pd" +path="res://.godot/imported/multivision.png-ecad9cb7b7a1b0ef8c43ede63fe4cea3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/multivision.png" +dest_files=["res://.godot/imported/multivision.png-ecad9cb7b7a1b0ef8c43ede63fe4cea3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/n3ds.png b/tools/configurator/assets/icons/banner/n3ds.png new file mode 100644 index 00000000..741dba97 Binary files /dev/null and b/tools/configurator/assets/icons/banner/n3ds.png differ diff --git a/tools/configurator/assets/icons/banner/n3ds.png.import b/tools/configurator/assets/icons/banner/n3ds.png.import new file mode 100644 index 00000000..519fac87 --- /dev/null +++ b/tools/configurator/assets/icons/banner/n3ds.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c812ivlwmoop0" +path="res://.godot/imported/n3ds.png-aad94978dfd855dba2d0c4c50b3e390f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/n3ds.png" +dest_files=["res://.godot/imported/n3ds.png-aad94978dfd855dba2d0c4c50b3e390f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/n3ds.png.kra b/tools/configurator/assets/icons/banner/n3ds.png.kra new file mode 100644 index 00000000..9025a25f Binary files /dev/null and b/tools/configurator/assets/icons/banner/n3ds.png.kra differ diff --git a/tools/configurator/assets/icons/banner/n3ds.png~ b/tools/configurator/assets/icons/banner/n3ds.png~ new file mode 100644 index 00000000..c6fd39b5 Binary files /dev/null and b/tools/configurator/assets/icons/banner/n3ds.png~ differ diff --git a/tools/configurator/assets/icons/banner/n64.png b/tools/configurator/assets/icons/banner/n64.png new file mode 100644 index 00000000..1cc78ab2 Binary files /dev/null and b/tools/configurator/assets/icons/banner/n64.png differ diff --git a/tools/configurator/assets/icons/banner/n64.png.import b/tools/configurator/assets/icons/banner/n64.png.import new file mode 100644 index 00000000..663685a1 --- /dev/null +++ b/tools/configurator/assets/icons/banner/n64.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buywpflv7of6f" +path="res://.godot/imported/n64.png-db43c1f8c4ed2526d40f4b7ccddd336b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/n64.png" +dest_files=["res://.godot/imported/n64.png-db43c1f8c4ed2526d40f4b7ccddd336b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/n64dd.png b/tools/configurator/assets/icons/banner/n64dd.png new file mode 100644 index 00000000..8cc1b853 Binary files /dev/null and b/tools/configurator/assets/icons/banner/n64dd.png differ diff --git a/tools/configurator/assets/icons/banner/n64dd.png.import b/tools/configurator/assets/icons/banner/n64dd.png.import new file mode 100644 index 00000000..7ac52101 --- /dev/null +++ b/tools/configurator/assets/icons/banner/n64dd.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3qk7jv707xsf" +path="res://.godot/imported/n64dd.png-d43ef9af6ba40e5a405db04049f9354f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/n64dd.png" +dest_files=["res://.godot/imported/n64dd.png-d43ef9af6ba40e5a405db04049f9354f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/naomi.png b/tools/configurator/assets/icons/banner/naomi.png new file mode 100644 index 00000000..2d589aed Binary files /dev/null and b/tools/configurator/assets/icons/banner/naomi.png differ diff --git a/tools/configurator/assets/icons/banner/naomi.png.import b/tools/configurator/assets/icons/banner/naomi.png.import new file mode 100644 index 00000000..1ef795ab --- /dev/null +++ b/tools/configurator/assets/icons/banner/naomi.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cak3gbaumodx0" +path="res://.godot/imported/naomi.png-454657858fdba6535d3957218aa65f01.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/naomi.png" +dest_files=["res://.godot/imported/naomi.png-454657858fdba6535d3957218aa65f01.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/naomi2.png b/tools/configurator/assets/icons/banner/naomi2.png new file mode 100644 index 00000000..330c7a19 Binary files /dev/null and b/tools/configurator/assets/icons/banner/naomi2.png differ diff --git a/tools/configurator/assets/icons/banner/naomi2.png.import b/tools/configurator/assets/icons/banner/naomi2.png.import new file mode 100644 index 00000000..aa2e4541 --- /dev/null +++ b/tools/configurator/assets/icons/banner/naomi2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgj0l3qcjo6j6" +path="res://.godot/imported/naomi2.png-b5f5b9e7410c489ee9e815bb42ff6f60.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/naomi2.png" +dest_files=["res://.godot/imported/naomi2.png-b5f5b9e7410c489ee9e815bb42ff6f60.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/naomigd.png b/tools/configurator/assets/icons/banner/naomigd.png new file mode 100644 index 00000000..5a875fc1 Binary files /dev/null and b/tools/configurator/assets/icons/banner/naomigd.png differ diff --git a/tools/configurator/assets/icons/banner/naomigd.png.import b/tools/configurator/assets/icons/banner/naomigd.png.import new file mode 100644 index 00000000..835fd2a3 --- /dev/null +++ b/tools/configurator/assets/icons/banner/naomigd.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cycuowli7atym" +path="res://.godot/imported/naomigd.png-5ebe0705b0fdd6c0c81396c7ab37ba87.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/naomigd.png" +dest_files=["res://.godot/imported/naomigd.png-5ebe0705b0fdd6c0c81396c7ab37ba87.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/nds.png b/tools/configurator/assets/icons/banner/nds.png new file mode 100644 index 00000000..ac2d2116 Binary files /dev/null and b/tools/configurator/assets/icons/banner/nds.png differ diff --git a/tools/configurator/assets/icons/banner/nds.png.import b/tools/configurator/assets/icons/banner/nds.png.import new file mode 100644 index 00000000..33da1ffa --- /dev/null +++ b/tools/configurator/assets/icons/banner/nds.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tfeuq54qb0wb" +path="res://.godot/imported/nds.png-ba47de5d0d639b05c95c9521d16d5584.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/nds.png" +dest_files=["res://.godot/imported/nds.png-ba47de5d0d639b05c95c9521d16d5584.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/neogeo.png b/tools/configurator/assets/icons/banner/neogeo.png new file mode 100644 index 00000000..8394c352 Binary files /dev/null and b/tools/configurator/assets/icons/banner/neogeo.png differ diff --git a/tools/configurator/assets/icons/banner/neogeo.png.import b/tools/configurator/assets/icons/banner/neogeo.png.import new file mode 100644 index 00000000..d80df457 --- /dev/null +++ b/tools/configurator/assets/icons/banner/neogeo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cli6bveuns1og" +path="res://.godot/imported/neogeo.png-829beaa3abbee2058324b3aea75570c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/neogeo.png" +dest_files=["res://.godot/imported/neogeo.png-829beaa3abbee2058324b3aea75570c0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/neogeocd.png b/tools/configurator/assets/icons/banner/neogeocd.png new file mode 100644 index 00000000..c479bd00 Binary files /dev/null and b/tools/configurator/assets/icons/banner/neogeocd.png differ diff --git a/tools/configurator/assets/icons/banner/neogeocd.png.import b/tools/configurator/assets/icons/banner/neogeocd.png.import new file mode 100644 index 00000000..13a1adf7 --- /dev/null +++ b/tools/configurator/assets/icons/banner/neogeocd.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cree6unskcnte" +path="res://.godot/imported/neogeocd.png-b8c4e9025903b3fdcc5ea1952beb3596.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/neogeocd.png" +dest_files=["res://.godot/imported/neogeocd.png-b8c4e9025903b3fdcc5ea1952beb3596.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/neogeocdjp.png b/tools/configurator/assets/icons/banner/neogeocdjp.png new file mode 100644 index 00000000..c479bd00 Binary files /dev/null and b/tools/configurator/assets/icons/banner/neogeocdjp.png differ diff --git a/tools/configurator/assets/icons/banner/neogeocdjp.png.import b/tools/configurator/assets/icons/banner/neogeocdjp.png.import new file mode 100644 index 00000000..54c844ec --- /dev/null +++ b/tools/configurator/assets/icons/banner/neogeocdjp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ne3xpcwm5dhq" +path="res://.godot/imported/neogeocdjp.png-23c0873c43be1eb9fc83d892cac6783d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/neogeocdjp.png" +dest_files=["res://.godot/imported/neogeocdjp.png-23c0873c43be1eb9fc83d892cac6783d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/nes.png b/tools/configurator/assets/icons/banner/nes.png new file mode 100644 index 00000000..cbc88f03 Binary files /dev/null and b/tools/configurator/assets/icons/banner/nes.png differ diff --git a/tools/configurator/assets/icons/banner/nes.png.import b/tools/configurator/assets/icons/banner/nes.png.import new file mode 100644 index 00000000..f3e119fd --- /dev/null +++ b/tools/configurator/assets/icons/banner/nes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sobu2ldymwm6" +path="res://.godot/imported/nes.png-727e881aeeeec4cc9b1ffb14139e2749.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/nes.png" +dest_files=["res://.godot/imported/nes.png-727e881aeeeec4cc9b1ffb14139e2749.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/ngage.png b/tools/configurator/assets/icons/banner/ngage.png new file mode 100644 index 00000000..b8ecd4de Binary files /dev/null and b/tools/configurator/assets/icons/banner/ngage.png differ diff --git a/tools/configurator/assets/icons/banner/ngage.png.import b/tools/configurator/assets/icons/banner/ngage.png.import new file mode 100644 index 00000000..bb5e090f --- /dev/null +++ b/tools/configurator/assets/icons/banner/ngage.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj385u2brkuqt" +path="res://.godot/imported/ngage.png-393bf4b1cc009ade98aae50d9930e362.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/ngage.png" +dest_files=["res://.godot/imported/ngage.png-393bf4b1cc009ade98aae50d9930e362.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/ngp.png b/tools/configurator/assets/icons/banner/ngp.png new file mode 100644 index 00000000..778e4e17 Binary files /dev/null and b/tools/configurator/assets/icons/banner/ngp.png differ diff --git a/tools/configurator/assets/icons/banner/ngp.png.import b/tools/configurator/assets/icons/banner/ngp.png.import new file mode 100644 index 00000000..363fe091 --- /dev/null +++ b/tools/configurator/assets/icons/banner/ngp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bevybmv57vn6v" +path="res://.godot/imported/ngp.png-66bfda92d1e73e2cfb03633c54d43944.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/ngp.png" +dest_files=["res://.godot/imported/ngp.png-66bfda92d1e73e2cfb03633c54d43944.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/ngpc.png b/tools/configurator/assets/icons/banner/ngpc.png new file mode 100644 index 00000000..58e3d2c3 Binary files /dev/null and b/tools/configurator/assets/icons/banner/ngpc.png differ diff --git a/tools/configurator/assets/icons/banner/ngpc.png.import b/tools/configurator/assets/icons/banner/ngpc.png.import new file mode 100644 index 00000000..1ce35728 --- /dev/null +++ b/tools/configurator/assets/icons/banner/ngpc.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sns53yjc3m5d" +path="res://.godot/imported/ngpc.png-696dddcf3b33766608cd85879c6d937f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/ngpc.png" +dest_files=["res://.godot/imported/ngpc.png-696dddcf3b33766608cd85879c6d937f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/odyssey2.png b/tools/configurator/assets/icons/banner/odyssey2.png new file mode 100644 index 00000000..520d6444 Binary files /dev/null and b/tools/configurator/assets/icons/banner/odyssey2.png differ diff --git a/tools/configurator/assets/icons/banner/odyssey2.png.import b/tools/configurator/assets/icons/banner/odyssey2.png.import new file mode 100644 index 00000000..e1e131b8 --- /dev/null +++ b/tools/configurator/assets/icons/banner/odyssey2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs73nsxo7cgcu" +path="res://.godot/imported/odyssey2.png-c8f6bdd4a728d61b3ea57b51f62b4289.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/odyssey2.png" +dest_files=["res://.godot/imported/odyssey2.png-c8f6bdd4a728d61b3ea57b51f62b4289.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/openbor.png b/tools/configurator/assets/icons/banner/openbor.png new file mode 100644 index 00000000..3304c81a Binary files /dev/null and b/tools/configurator/assets/icons/banner/openbor.png differ diff --git a/tools/configurator/assets/icons/banner/openbor.png.import b/tools/configurator/assets/icons/banner/openbor.png.import new file mode 100644 index 00000000..a1071800 --- /dev/null +++ b/tools/configurator/assets/icons/banner/openbor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpkn57bihjr52" +path="res://.godot/imported/openbor.png-20b84917c651473b7e73e6f4d3295362.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/openbor.png" +dest_files=["res://.godot/imported/openbor.png-20b84917c651473b7e73e6f4d3295362.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/oric.png b/tools/configurator/assets/icons/banner/oric.png new file mode 100644 index 00000000..bda8e549 Binary files /dev/null and b/tools/configurator/assets/icons/banner/oric.png differ diff --git a/tools/configurator/assets/icons/banner/oric.png.import b/tools/configurator/assets/icons/banner/oric.png.import new file mode 100644 index 00000000..10f039ad --- /dev/null +++ b/tools/configurator/assets/icons/banner/oric.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfysi5r414nq1" +path="res://.godot/imported/oric.png-a148c7c81ee56e0fc1cbc0245ecac714.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/oric.png" +dest_files=["res://.godot/imported/oric.png-a148c7c81ee56e0fc1cbc0245ecac714.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/palm.png b/tools/configurator/assets/icons/banner/palm.png new file mode 100644 index 00000000..21a67cfe Binary files /dev/null and b/tools/configurator/assets/icons/banner/palm.png differ diff --git a/tools/configurator/assets/icons/banner/palm.png.import b/tools/configurator/assets/icons/banner/palm.png.import new file mode 100644 index 00000000..0d28cf08 --- /dev/null +++ b/tools/configurator/assets/icons/banner/palm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch23oabsxyqhc" +path="res://.godot/imported/palm.png-4d559b007ca519a907297038c7147b60.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/palm.png" +dest_files=["res://.godot/imported/palm.png-4d559b007ca519a907297038c7147b60.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/pc.png b/tools/configurator/assets/icons/banner/pc.png new file mode 100644 index 00000000..0ee20fdc Binary files /dev/null and b/tools/configurator/assets/icons/banner/pc.png differ diff --git a/tools/configurator/assets/icons/banner/pc.png.import b/tools/configurator/assets/icons/banner/pc.png.import new file mode 100644 index 00000000..dcb16fdc --- /dev/null +++ b/tools/configurator/assets/icons/banner/pc.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3s8oad7ojoe1" +path="res://.godot/imported/pc.png-7a6887f98c3c01e54ace763f180bd480.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/pc.png" +dest_files=["res://.godot/imported/pc.png-7a6887f98c3c01e54ace763f180bd480.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/pc88.png b/tools/configurator/assets/icons/banner/pc88.png new file mode 100644 index 00000000..cb53a04f Binary files /dev/null and b/tools/configurator/assets/icons/banner/pc88.png differ diff --git a/tools/configurator/assets/icons/banner/pc88.png.import b/tools/configurator/assets/icons/banner/pc88.png.import new file mode 100644 index 00000000..b72eb557 --- /dev/null +++ b/tools/configurator/assets/icons/banner/pc88.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dybtx5awmngpb" +path="res://.godot/imported/pc88.png-a55f86c52cf1ca67fa7b09b61a2fb40a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/pc88.png" +dest_files=["res://.godot/imported/pc88.png-a55f86c52cf1ca67fa7b09b61a2fb40a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/pc98.png b/tools/configurator/assets/icons/banner/pc98.png new file mode 100644 index 00000000..d072b94b Binary files /dev/null and b/tools/configurator/assets/icons/banner/pc98.png differ diff --git a/tools/configurator/assets/icons/banner/pc98.png.import b/tools/configurator/assets/icons/banner/pc98.png.import new file mode 100644 index 00000000..75fbd957 --- /dev/null +++ b/tools/configurator/assets/icons/banner/pc98.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl4h17y53efjh" +path="res://.godot/imported/pc98.png-e48c7280d43ad945e4a4b8b4ef1d3dfb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/pc98.png" +dest_files=["res://.godot/imported/pc98.png-e48c7280d43ad945e4a4b8b4ef1d3dfb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/pcarcade.png b/tools/configurator/assets/icons/banner/pcarcade.png new file mode 100644 index 00000000..92f0a084 Binary files /dev/null and b/tools/configurator/assets/icons/banner/pcarcade.png differ diff --git a/tools/configurator/assets/icons/banner/pcarcade.png.import b/tools/configurator/assets/icons/banner/pcarcade.png.import new file mode 100644 index 00000000..d40f44c0 --- /dev/null +++ b/tools/configurator/assets/icons/banner/pcarcade.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1dgr2e4q63qt" +path="res://.godot/imported/pcarcade.png-f5a8896c9f517f111c7fb9328064b755.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/pcarcade.png" +dest_files=["res://.godot/imported/pcarcade.png-f5a8896c9f517f111c7fb9328064b755.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/pcengine.png b/tools/configurator/assets/icons/banner/pcengine.png new file mode 100644 index 00000000..074273b9 Binary files /dev/null and b/tools/configurator/assets/icons/banner/pcengine.png differ diff --git a/tools/configurator/assets/icons/banner/pcengine.png.import b/tools/configurator/assets/icons/banner/pcengine.png.import new file mode 100644 index 00000000..d3f43d19 --- /dev/null +++ b/tools/configurator/assets/icons/banner/pcengine.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqsxi0giq05l1" +path="res://.godot/imported/pcengine.png-d0bf9e784c8f6a674b2b860d15bf5750.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/pcengine.png" +dest_files=["res://.godot/imported/pcengine.png-d0bf9e784c8f6a674b2b860d15bf5750.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/pcenginecd.png b/tools/configurator/assets/icons/banner/pcenginecd.png new file mode 100644 index 00000000..27f758f7 Binary files /dev/null and b/tools/configurator/assets/icons/banner/pcenginecd.png differ diff --git a/tools/configurator/assets/icons/banner/pcenginecd.png.import b/tools/configurator/assets/icons/banner/pcenginecd.png.import new file mode 100644 index 00000000..5b0c3ee1 --- /dev/null +++ b/tools/configurator/assets/icons/banner/pcenginecd.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0oia32w828t8" +path="res://.godot/imported/pcenginecd.png-51ca57251d35467e9b25059976abf3b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/pcenginecd.png" +dest_files=["res://.godot/imported/pcenginecd.png-51ca57251d35467e9b25059976abf3b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/pcfx.png b/tools/configurator/assets/icons/banner/pcfx.png new file mode 100644 index 00000000..aec772fc Binary files /dev/null and b/tools/configurator/assets/icons/banner/pcfx.png differ diff --git a/tools/configurator/assets/icons/banner/pcfx.png.import b/tools/configurator/assets/icons/banner/pcfx.png.import new file mode 100644 index 00000000..067a2480 --- /dev/null +++ b/tools/configurator/assets/icons/banner/pcfx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bugthsn4ymx55" +path="res://.godot/imported/pcfx.png-608d2f6b9a3239b848ab7c22e0ae5b4c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/pcfx.png" +dest_files=["res://.godot/imported/pcfx.png-608d2f6b9a3239b848ab7c22e0ae5b4c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/pico8.png b/tools/configurator/assets/icons/banner/pico8.png new file mode 100644 index 00000000..d1b9c915 Binary files /dev/null and b/tools/configurator/assets/icons/banner/pico8.png differ diff --git a/tools/configurator/assets/icons/banner/pico8.png.import b/tools/configurator/assets/icons/banner/pico8.png.import new file mode 100644 index 00000000..0cfa182b --- /dev/null +++ b/tools/configurator/assets/icons/banner/pico8.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cigh8b0fxb1oy" +path="res://.godot/imported/pico8.png-26ad6f6758f0cdd3ecc7d7cf02b6375f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/pico8.png" +dest_files=["res://.godot/imported/pico8.png-26ad6f6758f0cdd3ecc7d7cf02b6375f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/plus4.png b/tools/configurator/assets/icons/banner/plus4.png new file mode 100644 index 00000000..fdb3e868 Binary files /dev/null and b/tools/configurator/assets/icons/banner/plus4.png differ diff --git a/tools/configurator/assets/icons/banner/plus4.png.import b/tools/configurator/assets/icons/banner/plus4.png.import new file mode 100644 index 00000000..3380da76 --- /dev/null +++ b/tools/configurator/assets/icons/banner/plus4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6upvjmrq35cg" +path="res://.godot/imported/plus4.png-b2122f7711339642f9d2b5e62b741380.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/plus4.png" +dest_files=["res://.godot/imported/plus4.png-b2122f7711339642f9d2b5e62b741380.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/pokemini.png b/tools/configurator/assets/icons/banner/pokemini.png new file mode 100644 index 00000000..a38fe672 Binary files /dev/null and b/tools/configurator/assets/icons/banner/pokemini.png differ diff --git a/tools/configurator/assets/icons/banner/pokemini.png.import b/tools/configurator/assets/icons/banner/pokemini.png.import new file mode 100644 index 00000000..ba323073 --- /dev/null +++ b/tools/configurator/assets/icons/banner/pokemini.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xgst1aquxbh7" +path="res://.godot/imported/pokemini.png-a843704dbd3c87137e283df4d6deb7f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/pokemini.png" +dest_files=["res://.godot/imported/pokemini.png-a843704dbd3c87137e283df4d6deb7f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/ports.png b/tools/configurator/assets/icons/banner/ports.png new file mode 100644 index 00000000..ddf72f5f Binary files /dev/null and b/tools/configurator/assets/icons/banner/ports.png differ diff --git a/tools/configurator/assets/icons/banner/ports.png.import b/tools/configurator/assets/icons/banner/ports.png.import new file mode 100644 index 00000000..7340fc42 --- /dev/null +++ b/tools/configurator/assets/icons/banner/ports.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbm8754px0onl" +path="res://.godot/imported/ports.png-ca25e874b9fa9b6d75a53608e4c2132b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/ports.png" +dest_files=["res://.godot/imported/ports.png-ca25e874b9fa9b6d75a53608e4c2132b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/ps2.png b/tools/configurator/assets/icons/banner/ps2.png new file mode 100644 index 00000000..64100326 Binary files /dev/null and b/tools/configurator/assets/icons/banner/ps2.png differ diff --git a/tools/configurator/assets/icons/banner/ps2.png.import b/tools/configurator/assets/icons/banner/ps2.png.import new file mode 100644 index 00000000..023bb33b --- /dev/null +++ b/tools/configurator/assets/icons/banner/ps2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkib2lkwpwpwu" +path="res://.godot/imported/ps2.png-66606e569015bbe0e1e15a1934fd7620.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/ps2.png" +dest_files=["res://.godot/imported/ps2.png-66606e569015bbe0e1e15a1934fd7620.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/ps3.png b/tools/configurator/assets/icons/banner/ps3.png new file mode 100644 index 00000000..64e4b3df Binary files /dev/null and b/tools/configurator/assets/icons/banner/ps3.png differ diff --git a/tools/configurator/assets/icons/banner/ps3.png.import b/tools/configurator/assets/icons/banner/ps3.png.import new file mode 100644 index 00000000..cfaa984d --- /dev/null +++ b/tools/configurator/assets/icons/banner/ps3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dawwpwia8o0t8" +path="res://.godot/imported/ps3.png-b3943fca8e8fb3bd58f54a2015bc3944.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/ps3.png" +dest_files=["res://.godot/imported/ps3.png-b3943fca8e8fb3bd58f54a2015bc3944.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/ps3.png.kra b/tools/configurator/assets/icons/banner/ps3.png.kra new file mode 100644 index 00000000..eb22eb18 Binary files /dev/null and b/tools/configurator/assets/icons/banner/ps3.png.kra differ diff --git a/tools/configurator/assets/icons/banner/ps3.png~ b/tools/configurator/assets/icons/banner/ps3.png~ new file mode 100644 index 00000000..2a24e9ad Binary files /dev/null and b/tools/configurator/assets/icons/banner/ps3.png~ differ diff --git a/tools/configurator/assets/icons/banner/ps4.png b/tools/configurator/assets/icons/banner/ps4.png new file mode 100644 index 00000000..ab36f90b Binary files /dev/null and b/tools/configurator/assets/icons/banner/ps4.png differ diff --git a/tools/configurator/assets/icons/banner/ps4.png.import b/tools/configurator/assets/icons/banner/ps4.png.import new file mode 100644 index 00000000..f654b7fc --- /dev/null +++ b/tools/configurator/assets/icons/banner/ps4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cisq2x5v35da8" +path="res://.godot/imported/ps4.png-0f430059934f72ed7d2469786c2762f3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/ps4.png" +dest_files=["res://.godot/imported/ps4.png-0f430059934f72ed7d2469786c2762f3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/psp.png b/tools/configurator/assets/icons/banner/psp.png new file mode 100644 index 00000000..ca4047e7 Binary files /dev/null and b/tools/configurator/assets/icons/banner/psp.png differ diff --git a/tools/configurator/assets/icons/banner/psp.png.import b/tools/configurator/assets/icons/banner/psp.png.import new file mode 100644 index 00000000..ac0b2bb2 --- /dev/null +++ b/tools/configurator/assets/icons/banner/psp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfbwntbx4v5os" +path="res://.godot/imported/psp.png-2efe82e9ef431f2a2f6406e6fe8b5684.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/psp.png" +dest_files=["res://.godot/imported/psp.png-2efe82e9ef431f2a2f6406e6fe8b5684.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/psvita.png b/tools/configurator/assets/icons/banner/psvita.png new file mode 100644 index 00000000..ea15fbbf Binary files /dev/null and b/tools/configurator/assets/icons/banner/psvita.png differ diff --git a/tools/configurator/assets/icons/banner/psvita.png.import b/tools/configurator/assets/icons/banner/psvita.png.import new file mode 100644 index 00000000..c440b2c0 --- /dev/null +++ b/tools/configurator/assets/icons/banner/psvita.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g7cra128y74w" +path="res://.godot/imported/psvita.png-89ca412cdc6d46fd846e66be40f3a471.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/psvita.png" +dest_files=["res://.godot/imported/psvita.png-89ca412cdc6d46fd846e66be40f3a471.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/psx.png b/tools/configurator/assets/icons/banner/psx.png new file mode 100644 index 00000000..2eb37ecd Binary files /dev/null and b/tools/configurator/assets/icons/banner/psx.png differ diff --git a/tools/configurator/assets/icons/banner/psx.png.import b/tools/configurator/assets/icons/banner/psx.png.import new file mode 100644 index 00000000..4abbd1b9 --- /dev/null +++ b/tools/configurator/assets/icons/banner/psx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv6sym5rr1hpu" +path="res://.godot/imported/psx.png-2ed086ac545a2ddbfe7031371d7e5731.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/psx.png" +dest_files=["res://.godot/imported/psx.png-2ed086ac545a2ddbfe7031371d7e5731.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/pv1000.png b/tools/configurator/assets/icons/banner/pv1000.png new file mode 100644 index 00000000..d4ac3f21 Binary files /dev/null and b/tools/configurator/assets/icons/banner/pv1000.png differ diff --git a/tools/configurator/assets/icons/banner/pv1000.png.import b/tools/configurator/assets/icons/banner/pv1000.png.import new file mode 100644 index 00000000..b823aca2 --- /dev/null +++ b/tools/configurator/assets/icons/banner/pv1000.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oxvviljdoeej" +path="res://.godot/imported/pv1000.png-1af825bed7acb30432e92abcab245096.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/pv1000.png" +dest_files=["res://.godot/imported/pv1000.png-1af825bed7acb30432e92abcab245096.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/quake.png b/tools/configurator/assets/icons/banner/quake.png new file mode 100644 index 00000000..f6607ab3 Binary files /dev/null and b/tools/configurator/assets/icons/banner/quake.png differ diff --git a/tools/configurator/assets/icons/banner/quake.png.import b/tools/configurator/assets/icons/banner/quake.png.import new file mode 100644 index 00000000..f5e723a5 --- /dev/null +++ b/tools/configurator/assets/icons/banner/quake.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cutsu3ra7xd81" +path="res://.godot/imported/quake.png-5c3537b447b720dc583244810ab9badb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/quake.png" +dest_files=["res://.godot/imported/quake.png-5c3537b447b720dc583244810ab9badb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/samcoupe.png b/tools/configurator/assets/icons/banner/samcoupe.png new file mode 100644 index 00000000..80f63a15 Binary files /dev/null and b/tools/configurator/assets/icons/banner/samcoupe.png differ diff --git a/tools/configurator/assets/icons/banner/samcoupe.png.import b/tools/configurator/assets/icons/banner/samcoupe.png.import new file mode 100644 index 00000000..35d8e616 --- /dev/null +++ b/tools/configurator/assets/icons/banner/samcoupe.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdq2uf4lb2pya" +path="res://.godot/imported/samcoupe.png-f5d798979e94687bca0a20502e6f1593.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/samcoupe.png" +dest_files=["res://.godot/imported/samcoupe.png-f5d798979e94687bca0a20502e6f1593.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/satellaview.png b/tools/configurator/assets/icons/banner/satellaview.png new file mode 100644 index 00000000..99608673 Binary files /dev/null and b/tools/configurator/assets/icons/banner/satellaview.png differ diff --git a/tools/configurator/assets/icons/banner/satellaview.png.import b/tools/configurator/assets/icons/banner/satellaview.png.import new file mode 100644 index 00000000..31ab7388 --- /dev/null +++ b/tools/configurator/assets/icons/banner/satellaview.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0dsjarss1hjn" +path="res://.godot/imported/satellaview.png-ebf9e8ed2eb021b887a4ab94873c41ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/satellaview.png" +dest_files=["res://.godot/imported/satellaview.png-ebf9e8ed2eb021b887a4ab94873c41ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/saturn.png b/tools/configurator/assets/icons/banner/saturn.png new file mode 100644 index 00000000..456b779e Binary files /dev/null and b/tools/configurator/assets/icons/banner/saturn.png differ diff --git a/tools/configurator/assets/icons/banner/saturn.png.import b/tools/configurator/assets/icons/banner/saturn.png.import new file mode 100644 index 00000000..beec909c --- /dev/null +++ b/tools/configurator/assets/icons/banner/saturn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjkkvctsi2wvt" +path="res://.godot/imported/saturn.png-83710e1f9c64bc8b1638cfbd446f3d03.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/saturn.png" +dest_files=["res://.godot/imported/saturn.png-83710e1f9c64bc8b1638cfbd446f3d03.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/saturnjp.png b/tools/configurator/assets/icons/banner/saturnjp.png new file mode 100644 index 00000000..edd6e6db Binary files /dev/null and b/tools/configurator/assets/icons/banner/saturnjp.png differ diff --git a/tools/configurator/assets/icons/banner/saturnjp.png.import b/tools/configurator/assets/icons/banner/saturnjp.png.import new file mode 100644 index 00000000..4d2c71af --- /dev/null +++ b/tools/configurator/assets/icons/banner/saturnjp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqx4ijjdlfobk" +path="res://.godot/imported/saturnjp.png-dd155adb80422fb805d5b7f1c19bbbb5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/saturnjp.png" +dest_files=["res://.godot/imported/saturnjp.png-dd155adb80422fb805d5b7f1c19bbbb5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/scummvm.png b/tools/configurator/assets/icons/banner/scummvm.png new file mode 100644 index 00000000..488abc62 Binary files /dev/null and b/tools/configurator/assets/icons/banner/scummvm.png differ diff --git a/tools/configurator/assets/icons/banner/scummvm.png.import b/tools/configurator/assets/icons/banner/scummvm.png.import new file mode 100644 index 00000000..c703ce71 --- /dev/null +++ b/tools/configurator/assets/icons/banner/scummvm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cos2smnts7qm8" +path="res://.godot/imported/scummvm.png-d9bb148071b060d296076811a66a9688.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/scummvm.png" +dest_files=["res://.godot/imported/scummvm.png-d9bb148071b060d296076811a66a9688.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/scv.png b/tools/configurator/assets/icons/banner/scv.png new file mode 100644 index 00000000..8bb63283 Binary files /dev/null and b/tools/configurator/assets/icons/banner/scv.png differ diff --git a/tools/configurator/assets/icons/banner/scv.png.import b/tools/configurator/assets/icons/banner/scv.png.import new file mode 100644 index 00000000..337ffb07 --- /dev/null +++ b/tools/configurator/assets/icons/banner/scv.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmnw3sux6hny4" +path="res://.godot/imported/scv.png-5e09b16168f4004ab75d6b95f29fe8d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/scv.png" +dest_files=["res://.godot/imported/scv.png-5e09b16168f4004ab75d6b95f29fe8d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/sega32x.png b/tools/configurator/assets/icons/banner/sega32x.png new file mode 100644 index 00000000..cce394ee Binary files /dev/null and b/tools/configurator/assets/icons/banner/sega32x.png differ diff --git a/tools/configurator/assets/icons/banner/sega32x.png.import b/tools/configurator/assets/icons/banner/sega32x.png.import new file mode 100644 index 00000000..b8f8dffd --- /dev/null +++ b/tools/configurator/assets/icons/banner/sega32x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djuo6fkvx0xpx" +path="res://.godot/imported/sega32x.png-8d5437f753995a38cbca58d4c1da46b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/sega32x.png" +dest_files=["res://.godot/imported/sega32x.png-8d5437f753995a38cbca58d4c1da46b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/sega32xjp.png b/tools/configurator/assets/icons/banner/sega32xjp.png new file mode 100644 index 00000000..61e52afd Binary files /dev/null and b/tools/configurator/assets/icons/banner/sega32xjp.png differ diff --git a/tools/configurator/assets/icons/banner/sega32xjp.png.import b/tools/configurator/assets/icons/banner/sega32xjp.png.import new file mode 100644 index 00000000..355b54a2 --- /dev/null +++ b/tools/configurator/assets/icons/banner/sega32xjp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chhmlablntkve" +path="res://.godot/imported/sega32xjp.png-fff391acb1d2dcf8ca8225bb8cf55878.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/sega32xjp.png" +dest_files=["res://.godot/imported/sega32xjp.png-fff391acb1d2dcf8ca8225bb8cf55878.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/sega32xna.png b/tools/configurator/assets/icons/banner/sega32xna.png new file mode 100644 index 00000000..61e52afd Binary files /dev/null and b/tools/configurator/assets/icons/banner/sega32xna.png differ diff --git a/tools/configurator/assets/icons/banner/sega32xna.png.import b/tools/configurator/assets/icons/banner/sega32xna.png.import new file mode 100644 index 00000000..07c8a7c7 --- /dev/null +++ b/tools/configurator/assets/icons/banner/sega32xna.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2k2i80df0mdy" +path="res://.godot/imported/sega32xna.png-fa699e140809eab602176fac5ac0e22e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/sega32xna.png" +dest_files=["res://.godot/imported/sega32xna.png-fa699e140809eab602176fac5ac0e22e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/segacd.png b/tools/configurator/assets/icons/banner/segacd.png new file mode 100644 index 00000000..4107990e Binary files /dev/null and b/tools/configurator/assets/icons/banner/segacd.png differ diff --git a/tools/configurator/assets/icons/banner/segacd.png.import b/tools/configurator/assets/icons/banner/segacd.png.import new file mode 100644 index 00000000..fbb91ab5 --- /dev/null +++ b/tools/configurator/assets/icons/banner/segacd.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csi66sw5a477g" +path="res://.godot/imported/segacd.png-8c3ed12c7745b85489157cca44fd6fab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/segacd.png" +dest_files=["res://.godot/imported/segacd.png-8c3ed12c7745b85489157cca44fd6fab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/sfc.png b/tools/configurator/assets/icons/banner/sfc.png new file mode 100644 index 00000000..e0a7e0d4 Binary files /dev/null and b/tools/configurator/assets/icons/banner/sfc.png differ diff --git a/tools/configurator/assets/icons/banner/sfc.png.import b/tools/configurator/assets/icons/banner/sfc.png.import new file mode 100644 index 00000000..1a52b09f --- /dev/null +++ b/tools/configurator/assets/icons/banner/sfc.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wfsseym4o5a2" +path="res://.godot/imported/sfc.png-29b2cca0577f284e380dcd630dd2d595.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/sfc.png" +dest_files=["res://.godot/imported/sfc.png-29b2cca0577f284e380dcd630dd2d595.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/sg-1000.png b/tools/configurator/assets/icons/banner/sg-1000.png new file mode 100644 index 00000000..f4cd2d69 Binary files /dev/null and b/tools/configurator/assets/icons/banner/sg-1000.png differ diff --git a/tools/configurator/assets/icons/banner/sg-1000.png.import b/tools/configurator/assets/icons/banner/sg-1000.png.import new file mode 100644 index 00000000..7aae7e17 --- /dev/null +++ b/tools/configurator/assets/icons/banner/sg-1000.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctoujsh3nbwyy" +path="res://.godot/imported/sg-1000.png-be4284a7c43f77de1dd3d6d8ce1b92a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/sg-1000.png" +dest_files=["res://.godot/imported/sg-1000.png-be4284a7c43f77de1dd3d6d8ce1b92a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/sgb.png b/tools/configurator/assets/icons/banner/sgb.png new file mode 100644 index 00000000..f28954ce Binary files /dev/null and b/tools/configurator/assets/icons/banner/sgb.png differ diff --git a/tools/configurator/assets/icons/banner/sgb.png.import b/tools/configurator/assets/icons/banner/sgb.png.import new file mode 100644 index 00000000..d0d39f4c --- /dev/null +++ b/tools/configurator/assets/icons/banner/sgb.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f4tvg617e8pw" +path="res://.godot/imported/sgb.png-0e9ac3929ca0d3bd205c2f617870294a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/sgb.png" +dest_files=["res://.godot/imported/sgb.png-0e9ac3929ca0d3bd205c2f617870294a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/snes.png b/tools/configurator/assets/icons/banner/snes.png new file mode 100644 index 00000000..330e6dde Binary files /dev/null and b/tools/configurator/assets/icons/banner/snes.png differ diff --git a/tools/configurator/assets/icons/banner/snes.png.import b/tools/configurator/assets/icons/banner/snes.png.import new file mode 100644 index 00000000..84ab8c5c --- /dev/null +++ b/tools/configurator/assets/icons/banner/snes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpbowpuwjpqtu" +path="res://.godot/imported/snes.png-78cc1efe5030a65a704ab3e50310d789.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/snes.png" +dest_files=["res://.godot/imported/snes.png-78cc1efe5030a65a704ab3e50310d789.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/snesna.png b/tools/configurator/assets/icons/banner/snesna.png new file mode 100644 index 00000000..3b066380 Binary files /dev/null and b/tools/configurator/assets/icons/banner/snesna.png differ diff --git a/tools/configurator/assets/icons/banner/snesna.png.import b/tools/configurator/assets/icons/banner/snesna.png.import new file mode 100644 index 00000000..491a862a --- /dev/null +++ b/tools/configurator/assets/icons/banner/snesna.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sbplskfe1x0h" +path="res://.godot/imported/snesna.png-0076ff78e6399ec03863260fbfdc5608.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/snesna.png" +dest_files=["res://.godot/imported/snesna.png-0076ff78e6399ec03863260fbfdc5608.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/solarus.png b/tools/configurator/assets/icons/banner/solarus.png new file mode 100644 index 00000000..3c6a39be Binary files /dev/null and b/tools/configurator/assets/icons/banner/solarus.png differ diff --git a/tools/configurator/assets/icons/banner/solarus.png.import b/tools/configurator/assets/icons/banner/solarus.png.import new file mode 100644 index 00000000..5445d489 --- /dev/null +++ b/tools/configurator/assets/icons/banner/solarus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blt8x20ysx6aa" +path="res://.godot/imported/solarus.png-f2d107d75f25ebbf7d1c9144e611c1d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/solarus.png" +dest_files=["res://.godot/imported/solarus.png-f2d107d75f25ebbf7d1c9144e611c1d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/spectravideo.png b/tools/configurator/assets/icons/banner/spectravideo.png new file mode 100644 index 00000000..b999e1ef Binary files /dev/null and b/tools/configurator/assets/icons/banner/spectravideo.png differ diff --git a/tools/configurator/assets/icons/banner/spectravideo.png.import b/tools/configurator/assets/icons/banner/spectravideo.png.import new file mode 100644 index 00000000..5e98bd28 --- /dev/null +++ b/tools/configurator/assets/icons/banner/spectravideo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jrpwp28qof5v" +path="res://.godot/imported/spectravideo.png-1522716fc9c2c44e16dfbc0b8b90d236.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/spectravideo.png" +dest_files=["res://.godot/imported/spectravideo.png-1522716fc9c2c44e16dfbc0b8b90d236.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/steam.png b/tools/configurator/assets/icons/banner/steam.png new file mode 100644 index 00000000..5fe40c8b Binary files /dev/null and b/tools/configurator/assets/icons/banner/steam.png differ diff --git a/tools/configurator/assets/icons/banner/steam.png.import b/tools/configurator/assets/icons/banner/steam.png.import new file mode 100644 index 00000000..c1a63727 --- /dev/null +++ b/tools/configurator/assets/icons/banner/steam.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://caw15b1i5gygl" +path="res://.godot/imported/steam.png-2a50692d2188992036b6d3d8df7130bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/steam.png" +dest_files=["res://.godot/imported/steam.png-2a50692d2188992036b6d3d8df7130bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/stv.png b/tools/configurator/assets/icons/banner/stv.png new file mode 100644 index 00000000..9067c996 Binary files /dev/null and b/tools/configurator/assets/icons/banner/stv.png differ diff --git a/tools/configurator/assets/icons/banner/stv.png.import b/tools/configurator/assets/icons/banner/stv.png.import new file mode 100644 index 00000000..3ad56e68 --- /dev/null +++ b/tools/configurator/assets/icons/banner/stv.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn0clqd0s6ro8" +path="res://.godot/imported/stv.png-b3db1c5209e1f3b7aa47ebff1d63cd9a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/stv.png" +dest_files=["res://.godot/imported/stv.png-b3db1c5209e1f3b7aa47ebff1d63cd9a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/sufami.png b/tools/configurator/assets/icons/banner/sufami.png new file mode 100644 index 00000000..8b5013b8 Binary files /dev/null and b/tools/configurator/assets/icons/banner/sufami.png differ diff --git a/tools/configurator/assets/icons/banner/sufami.png.import b/tools/configurator/assets/icons/banner/sufami.png.import new file mode 100644 index 00000000..4f9ba167 --- /dev/null +++ b/tools/configurator/assets/icons/banner/sufami.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctsmsv50xm0kd" +path="res://.godot/imported/sufami.png-413437d4d65914fd664c087f4a3b2e29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/sufami.png" +dest_files=["res://.godot/imported/sufami.png-413437d4d65914fd664c087f4a3b2e29.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/supergrafx.png b/tools/configurator/assets/icons/banner/supergrafx.png new file mode 100644 index 00000000..270cec63 Binary files /dev/null and b/tools/configurator/assets/icons/banner/supergrafx.png differ diff --git a/tools/configurator/assets/icons/banner/supergrafx.png.import b/tools/configurator/assets/icons/banner/supergrafx.png.import new file mode 100644 index 00000000..a1941337 --- /dev/null +++ b/tools/configurator/assets/icons/banner/supergrafx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by1oeywfvgx1o" +path="res://.godot/imported/supergrafx.png-44693ec571b92e974705360fae31af42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/supergrafx.png" +dest_files=["res://.godot/imported/supergrafx.png-44693ec571b92e974705360fae31af42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/supervision.png b/tools/configurator/assets/icons/banner/supervision.png new file mode 100644 index 00000000..a301de35 Binary files /dev/null and b/tools/configurator/assets/icons/banner/supervision.png differ diff --git a/tools/configurator/assets/icons/banner/supervision.png.import b/tools/configurator/assets/icons/banner/supervision.png.import new file mode 100644 index 00000000..63e689d7 --- /dev/null +++ b/tools/configurator/assets/icons/banner/supervision.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drreiglmkna3d" +path="res://.godot/imported/supervision.png-584b5aca9e602016a567fcc64186d43c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/supervision.png" +dest_files=["res://.godot/imported/supervision.png-584b5aca9e602016a567fcc64186d43c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/supracan.png b/tools/configurator/assets/icons/banner/supracan.png new file mode 100644 index 00000000..8251467e Binary files /dev/null and b/tools/configurator/assets/icons/banner/supracan.png differ diff --git a/tools/configurator/assets/icons/banner/supracan.png.import b/tools/configurator/assets/icons/banner/supracan.png.import new file mode 100644 index 00000000..0292a478 --- /dev/null +++ b/tools/configurator/assets/icons/banner/supracan.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vyrb3tvo6al4" +path="res://.godot/imported/supracan.png-1d0d873839fbb4f9fead527a84339a66.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/supracan.png" +dest_files=["res://.godot/imported/supracan.png-1d0d873839fbb4f9fead527a84339a66.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/switch.png b/tools/configurator/assets/icons/banner/switch.png new file mode 100644 index 00000000..c54cf9da Binary files /dev/null and b/tools/configurator/assets/icons/banner/switch.png differ diff --git a/tools/configurator/assets/icons/banner/switch.png.import b/tools/configurator/assets/icons/banner/switch.png.import new file mode 100644 index 00000000..1dd9f317 --- /dev/null +++ b/tools/configurator/assets/icons/banner/switch.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt484yrr8heeg" +path="res://.godot/imported/switch.png-3196f01074ab50d51bc35cabeb27c4e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/switch.png" +dest_files=["res://.godot/imported/switch.png-3196f01074ab50d51bc35cabeb27c4e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/symbian.png b/tools/configurator/assets/icons/banner/symbian.png new file mode 100644 index 00000000..f6eb4e60 Binary files /dev/null and b/tools/configurator/assets/icons/banner/symbian.png differ diff --git a/tools/configurator/assets/icons/banner/symbian.png.import b/tools/configurator/assets/icons/banner/symbian.png.import new file mode 100644 index 00000000..09ebfabf --- /dev/null +++ b/tools/configurator/assets/icons/banner/symbian.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gs4obfkaqq0f" +path="res://.godot/imported/symbian.png-17e5fb5f34f91d1e976620c49944bff6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/symbian.png" +dest_files=["res://.godot/imported/symbian.png-17e5fb5f34f91d1e976620c49944bff6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/tanodragon.png b/tools/configurator/assets/icons/banner/tanodragon.png new file mode 100644 index 00000000..6e4d33b7 Binary files /dev/null and b/tools/configurator/assets/icons/banner/tanodragon.png differ diff --git a/tools/configurator/assets/icons/banner/tanodragon.png.import b/tools/configurator/assets/icons/banner/tanodragon.png.import new file mode 100644 index 00000000..35be5b25 --- /dev/null +++ b/tools/configurator/assets/icons/banner/tanodragon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3e4tbt2pkhfn" +path="res://.godot/imported/tanodragon.png-60be4c10ccc94112d7ef2bb7b6bd1414.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/tanodragon.png" +dest_files=["res://.godot/imported/tanodragon.png-60be4c10ccc94112d7ef2bb7b6bd1414.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/tg-cd.png b/tools/configurator/assets/icons/banner/tg-cd.png new file mode 100644 index 00000000..0a2c5dc2 Binary files /dev/null and b/tools/configurator/assets/icons/banner/tg-cd.png differ diff --git a/tools/configurator/assets/icons/banner/tg-cd.png.import b/tools/configurator/assets/icons/banner/tg-cd.png.import new file mode 100644 index 00000000..e545a005 --- /dev/null +++ b/tools/configurator/assets/icons/banner/tg-cd.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2mmul0bawc8e" +path="res://.godot/imported/tg-cd.png-653009e0a4bbc444a5e9e62a560c3833.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/tg-cd.png" +dest_files=["res://.godot/imported/tg-cd.png-653009e0a4bbc444a5e9e62a560c3833.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/tg16.png b/tools/configurator/assets/icons/banner/tg16.png new file mode 100644 index 00000000..0d294a15 Binary files /dev/null and b/tools/configurator/assets/icons/banner/tg16.png differ diff --git a/tools/configurator/assets/icons/banner/tg16.png.import b/tools/configurator/assets/icons/banner/tg16.png.import new file mode 100644 index 00000000..6a4ff211 --- /dev/null +++ b/tools/configurator/assets/icons/banner/tg16.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5iwqeht0fdjt" +path="res://.godot/imported/tg16.png-9703ea9312eba89c95efb6741fdd40fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/tg16.png" +dest_files=["res://.godot/imported/tg16.png-9703ea9312eba89c95efb6741fdd40fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/ti99.png b/tools/configurator/assets/icons/banner/ti99.png new file mode 100644 index 00000000..37c3f075 Binary files /dev/null and b/tools/configurator/assets/icons/banner/ti99.png differ diff --git a/tools/configurator/assets/icons/banner/ti99.png.import b/tools/configurator/assets/icons/banner/ti99.png.import new file mode 100644 index 00000000..c00cfbb1 --- /dev/null +++ b/tools/configurator/assets/icons/banner/ti99.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyri5vaeraa56" +path="res://.godot/imported/ti99.png-9d6e8efdf400196da3cbf710ff47b87d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/ti99.png" +dest_files=["res://.godot/imported/ti99.png-9d6e8efdf400196da3cbf710ff47b87d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/tic80.png b/tools/configurator/assets/icons/banner/tic80.png new file mode 100644 index 00000000..a412c9c2 Binary files /dev/null and b/tools/configurator/assets/icons/banner/tic80.png differ diff --git a/tools/configurator/assets/icons/banner/tic80.png.import b/tools/configurator/assets/icons/banner/tic80.png.import new file mode 100644 index 00000000..51424e18 --- /dev/null +++ b/tools/configurator/assets/icons/banner/tic80.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvnqhptwepdig" +path="res://.godot/imported/tic80.png-cb122c6e4ed2fa2421c7154f6c72608e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/tic80.png" +dest_files=["res://.godot/imported/tic80.png-cb122c6e4ed2fa2421c7154f6c72608e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/to8.png b/tools/configurator/assets/icons/banner/to8.png new file mode 100644 index 00000000..ea798dc8 Binary files /dev/null and b/tools/configurator/assets/icons/banner/to8.png differ diff --git a/tools/configurator/assets/icons/banner/to8.png.import b/tools/configurator/assets/icons/banner/to8.png.import new file mode 100644 index 00000000..2b7a9d2f --- /dev/null +++ b/tools/configurator/assets/icons/banner/to8.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyx08bj5hp6t3" +path="res://.godot/imported/to8.png-7a18134a11b1b70329d4e6f9d38c91e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/to8.png" +dest_files=["res://.godot/imported/to8.png-7a18134a11b1b70329d4e6f9d38c91e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/triforce.png b/tools/configurator/assets/icons/banner/triforce.png new file mode 100644 index 00000000..f492d4c4 Binary files /dev/null and b/tools/configurator/assets/icons/banner/triforce.png differ diff --git a/tools/configurator/assets/icons/banner/triforce.png.import b/tools/configurator/assets/icons/banner/triforce.png.import new file mode 100644 index 00000000..d8147e98 --- /dev/null +++ b/tools/configurator/assets/icons/banner/triforce.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs8d8pcsvgrgr" +path="res://.godot/imported/triforce.png-018e36ead348eb565ed1047267452bbf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/triforce.png" +dest_files=["res://.godot/imported/triforce.png-018e36ead348eb565ed1047267452bbf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/trs-80.png b/tools/configurator/assets/icons/banner/trs-80.png new file mode 100644 index 00000000..b6ddae38 Binary files /dev/null and b/tools/configurator/assets/icons/banner/trs-80.png differ diff --git a/tools/configurator/assets/icons/banner/trs-80.png.import b/tools/configurator/assets/icons/banner/trs-80.png.import new file mode 100644 index 00000000..d5709caf --- /dev/null +++ b/tools/configurator/assets/icons/banner/trs-80.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs60hx4fbfj2h" +path="res://.godot/imported/trs-80.png-dd83d97641646b94f71c6410689af2a1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/trs-80.png" +dest_files=["res://.godot/imported/trs-80.png-dd83d97641646b94f71c6410689af2a1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/type-x.png b/tools/configurator/assets/icons/banner/type-x.png new file mode 100644 index 00000000..b987fba9 Binary files /dev/null and b/tools/configurator/assets/icons/banner/type-x.png differ diff --git a/tools/configurator/assets/icons/banner/type-x.png.import b/tools/configurator/assets/icons/banner/type-x.png.import new file mode 100644 index 00000000..7f94cb31 --- /dev/null +++ b/tools/configurator/assets/icons/banner/type-x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3bpymucv7vsi" +path="res://.godot/imported/type-x.png-cec2906f09a7c3b8acb65016ea829d6b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/type-x.png" +dest_files=["res://.godot/imported/type-x.png-cec2906f09a7c3b8acb65016ea829d6b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/uzebox.png b/tools/configurator/assets/icons/banner/uzebox.png new file mode 100644 index 00000000..5d243922 Binary files /dev/null and b/tools/configurator/assets/icons/banner/uzebox.png differ diff --git a/tools/configurator/assets/icons/banner/uzebox.png.import b/tools/configurator/assets/icons/banner/uzebox.png.import new file mode 100644 index 00000000..811d1977 --- /dev/null +++ b/tools/configurator/assets/icons/banner/uzebox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fr2ffyvilgd2" +path="res://.godot/imported/uzebox.png-094ff275ba87989e4f4d948b389accb4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/uzebox.png" +dest_files=["res://.godot/imported/uzebox.png-094ff275ba87989e4f4d948b389accb4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/vectrex.png b/tools/configurator/assets/icons/banner/vectrex.png new file mode 100644 index 00000000..4ea576f8 Binary files /dev/null and b/tools/configurator/assets/icons/banner/vectrex.png differ diff --git a/tools/configurator/assets/icons/banner/vectrex.png.import b/tools/configurator/assets/icons/banner/vectrex.png.import new file mode 100644 index 00000000..062b73bf --- /dev/null +++ b/tools/configurator/assets/icons/banner/vectrex.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nggdk1snemb3" +path="res://.godot/imported/vectrex.png-45dc67ea160c8f71b5024c3b6b592b7f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/vectrex.png" +dest_files=["res://.godot/imported/vectrex.png-45dc67ea160c8f71b5024c3b6b592b7f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/vic20.png b/tools/configurator/assets/icons/banner/vic20.png new file mode 100644 index 00000000..ea167ec1 Binary files /dev/null and b/tools/configurator/assets/icons/banner/vic20.png differ diff --git a/tools/configurator/assets/icons/banner/vic20.png.import b/tools/configurator/assets/icons/banner/vic20.png.import new file mode 100644 index 00000000..ad70fe1e --- /dev/null +++ b/tools/configurator/assets/icons/banner/vic20.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqnfos3fv5gs6" +path="res://.godot/imported/vic20.png-da7e1ee02846bcf5d89dbd834afc4673.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/vic20.png" +dest_files=["res://.godot/imported/vic20.png-da7e1ee02846bcf5d89dbd834afc4673.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/videopac.png b/tools/configurator/assets/icons/banner/videopac.png new file mode 100644 index 00000000..2233a1cb Binary files /dev/null and b/tools/configurator/assets/icons/banner/videopac.png differ diff --git a/tools/configurator/assets/icons/banner/videopac.png.import b/tools/configurator/assets/icons/banner/videopac.png.import new file mode 100644 index 00000000..b20a839c --- /dev/null +++ b/tools/configurator/assets/icons/banner/videopac.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhlngy8akwl0s" +path="res://.godot/imported/videopac.png-dda8023f0da26ecbc9c7c677531611fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/videopac.png" +dest_files=["res://.godot/imported/videopac.png-dda8023f0da26ecbc9c7c677531611fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/virtualboy.png b/tools/configurator/assets/icons/banner/virtualboy.png new file mode 100644 index 00000000..a6b5ca23 Binary files /dev/null and b/tools/configurator/assets/icons/banner/virtualboy.png differ diff --git a/tools/configurator/assets/icons/banner/virtualboy.png.import b/tools/configurator/assets/icons/banner/virtualboy.png.import new file mode 100644 index 00000000..0ccd3265 --- /dev/null +++ b/tools/configurator/assets/icons/banner/virtualboy.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csgj53rme83h4" +path="res://.godot/imported/virtualboy.png-d85b773185416257e1211f0ba0f03d82.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/virtualboy.png" +dest_files=["res://.godot/imported/virtualboy.png-d85b773185416257e1211f0ba0f03d82.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/vpinball.png b/tools/configurator/assets/icons/banner/vpinball.png new file mode 100644 index 00000000..23c275cd Binary files /dev/null and b/tools/configurator/assets/icons/banner/vpinball.png differ diff --git a/tools/configurator/assets/icons/banner/vpinball.png.import b/tools/configurator/assets/icons/banner/vpinball.png.import new file mode 100644 index 00000000..694577c9 --- /dev/null +++ b/tools/configurator/assets/icons/banner/vpinball.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dphkgnmgxgroq" +path="res://.godot/imported/vpinball.png-62579b2a30a1602b456486081f4c726e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/vpinball.png" +dest_files=["res://.godot/imported/vpinball.png-62579b2a30a1602b456486081f4c726e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/vsmile.png b/tools/configurator/assets/icons/banner/vsmile.png new file mode 100644 index 00000000..8247b5da Binary files /dev/null and b/tools/configurator/assets/icons/banner/vsmile.png differ diff --git a/tools/configurator/assets/icons/banner/vsmile.png.import b/tools/configurator/assets/icons/banner/vsmile.png.import new file mode 100644 index 00000000..927f7695 --- /dev/null +++ b/tools/configurator/assets/icons/banner/vsmile.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkv1q0ykpny63" +path="res://.godot/imported/vsmile.png-7046b83fb7c0a46fa926eddd0a257264.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/vsmile.png" +dest_files=["res://.godot/imported/vsmile.png-7046b83fb7c0a46fa926eddd0a257264.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/wasm4.png b/tools/configurator/assets/icons/banner/wasm4.png new file mode 100644 index 00000000..3f832e43 Binary files /dev/null and b/tools/configurator/assets/icons/banner/wasm4.png differ diff --git a/tools/configurator/assets/icons/banner/wasm4.png.import b/tools/configurator/assets/icons/banner/wasm4.png.import new file mode 100644 index 00000000..4b1ef426 --- /dev/null +++ b/tools/configurator/assets/icons/banner/wasm4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2i1i8hmff4mb" +path="res://.godot/imported/wasm4.png-80df759d9afc14fc4563f0bc085176ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/wasm4.png" +dest_files=["res://.godot/imported/wasm4.png-80df759d9afc14fc4563f0bc085176ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/wii.png b/tools/configurator/assets/icons/banner/wii.png new file mode 100644 index 00000000..1f6717e4 Binary files /dev/null and b/tools/configurator/assets/icons/banner/wii.png differ diff --git a/tools/configurator/assets/icons/banner/wii.png.import b/tools/configurator/assets/icons/banner/wii.png.import new file mode 100644 index 00000000..624a18d8 --- /dev/null +++ b/tools/configurator/assets/icons/banner/wii.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk8nvocvpu1v" +path="res://.godot/imported/wii.png-a72e6c2ed346981403e4780509efa8b3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/wii.png" +dest_files=["res://.godot/imported/wii.png-a72e6c2ed346981403e4780509efa8b3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/wiiu.png b/tools/configurator/assets/icons/banner/wiiu.png new file mode 100644 index 00000000..28de293e Binary files /dev/null and b/tools/configurator/assets/icons/banner/wiiu.png differ diff --git a/tools/configurator/assets/icons/banner/wiiu.png.import b/tools/configurator/assets/icons/banner/wiiu.png.import new file mode 100644 index 00000000..3f41f8cf --- /dev/null +++ b/tools/configurator/assets/icons/banner/wiiu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3jldi4s65ii7" +path="res://.godot/imported/wiiu.png-a319ec08286c34375c2a9be94e4c3531.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/wiiu.png" +dest_files=["res://.godot/imported/wiiu.png-a319ec08286c34375c2a9be94e4c3531.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/windows.png b/tools/configurator/assets/icons/banner/windows.png new file mode 100644 index 00000000..6aaaac07 Binary files /dev/null and b/tools/configurator/assets/icons/banner/windows.png differ diff --git a/tools/configurator/assets/icons/banner/windows.png.import b/tools/configurator/assets/icons/banner/windows.png.import new file mode 100644 index 00000000..02cf05b6 --- /dev/null +++ b/tools/configurator/assets/icons/banner/windows.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq437xlmj8cyr" +path="res://.godot/imported/windows.png-bd7cc4b6681d73742ed117926ac6f7df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/windows.png" +dest_files=["res://.godot/imported/windows.png-bd7cc4b6681d73742ed117926ac6f7df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/windows3x.png b/tools/configurator/assets/icons/banner/windows3x.png new file mode 100644 index 00000000..0e4603b8 Binary files /dev/null and b/tools/configurator/assets/icons/banner/windows3x.png differ diff --git a/tools/configurator/assets/icons/banner/windows3x.png.import b/tools/configurator/assets/icons/banner/windows3x.png.import new file mode 100644 index 00000000..d0fa6443 --- /dev/null +++ b/tools/configurator/assets/icons/banner/windows3x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chgc4po1qubuf" +path="res://.godot/imported/windows3x.png-d303a04f641286349b6a648442bb838e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/windows3x.png" +dest_files=["res://.godot/imported/windows3x.png-d303a04f641286349b6a648442bb838e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/windows9x.png b/tools/configurator/assets/icons/banner/windows9x.png new file mode 100644 index 00000000..41e1f959 Binary files /dev/null and b/tools/configurator/assets/icons/banner/windows9x.png differ diff --git a/tools/configurator/assets/icons/banner/windows9x.png.import b/tools/configurator/assets/icons/banner/windows9x.png.import new file mode 100644 index 00000000..d9b5c9d7 --- /dev/null +++ b/tools/configurator/assets/icons/banner/windows9x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4tg1g4fmycqt" +path="res://.godot/imported/windows9x.png-83425d8b867c9c4c07ea596157991ee1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/windows9x.png" +dest_files=["res://.godot/imported/windows9x.png-83425d8b867c9c4c07ea596157991ee1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/wonderswan.png b/tools/configurator/assets/icons/banner/wonderswan.png new file mode 100644 index 00000000..4f78d4e3 Binary files /dev/null and b/tools/configurator/assets/icons/banner/wonderswan.png differ diff --git a/tools/configurator/assets/icons/banner/wonderswan.png.import b/tools/configurator/assets/icons/banner/wonderswan.png.import new file mode 100644 index 00000000..66da5694 --- /dev/null +++ b/tools/configurator/assets/icons/banner/wonderswan.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp3bac6b44ohu" +path="res://.godot/imported/wonderswan.png-b69b7af5a9871333d667300381af2697.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/wonderswan.png" +dest_files=["res://.godot/imported/wonderswan.png-b69b7af5a9871333d667300381af2697.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/wonderswancolor.png b/tools/configurator/assets/icons/banner/wonderswancolor.png new file mode 100644 index 00000000..42bbb7d0 Binary files /dev/null and b/tools/configurator/assets/icons/banner/wonderswancolor.png differ diff --git a/tools/configurator/assets/icons/banner/wonderswancolor.png.import b/tools/configurator/assets/icons/banner/wonderswancolor.png.import new file mode 100644 index 00000000..193555a2 --- /dev/null +++ b/tools/configurator/assets/icons/banner/wonderswancolor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://evagcjruew0l" +path="res://.godot/imported/wonderswancolor.png-f73d3058285b7423b822b0614f22dfc8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/wonderswancolor.png" +dest_files=["res://.godot/imported/wonderswancolor.png-f73d3058285b7423b822b0614f22dfc8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/wrestling.png b/tools/configurator/assets/icons/banner/wrestling.png new file mode 100644 index 00000000..dc5b53ce Binary files /dev/null and b/tools/configurator/assets/icons/banner/wrestling.png differ diff --git a/tools/configurator/assets/icons/banner/wrestling.png.import b/tools/configurator/assets/icons/banner/wrestling.png.import new file mode 100644 index 00000000..3209d61f --- /dev/null +++ b/tools/configurator/assets/icons/banner/wrestling.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://puw4x3p11816" +path="res://.godot/imported/wrestling.png-722a1ecc1d013fd3d7d0e8538db2d8eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/wrestling.png" +dest_files=["res://.godot/imported/wrestling.png-722a1ecc1d013fd3d7d0e8538db2d8eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/x1.png b/tools/configurator/assets/icons/banner/x1.png new file mode 100644 index 00000000..f95595c7 Binary files /dev/null and b/tools/configurator/assets/icons/banner/x1.png differ diff --git a/tools/configurator/assets/icons/banner/x1.png.import b/tools/configurator/assets/icons/banner/x1.png.import new file mode 100644 index 00000000..5bc69949 --- /dev/null +++ b/tools/configurator/assets/icons/banner/x1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du1dfixmy1o47" +path="res://.godot/imported/x1.png-a4017701b2d966626969125722b6a2e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/x1.png" +dest_files=["res://.godot/imported/x1.png-a4017701b2d966626969125722b6a2e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/x68000.png b/tools/configurator/assets/icons/banner/x68000.png new file mode 100644 index 00000000..626ef626 Binary files /dev/null and b/tools/configurator/assets/icons/banner/x68000.png differ diff --git a/tools/configurator/assets/icons/banner/x68000.png.import b/tools/configurator/assets/icons/banner/x68000.png.import new file mode 100644 index 00000000..16e79962 --- /dev/null +++ b/tools/configurator/assets/icons/banner/x68000.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sqb1baqu5jjq" +path="res://.godot/imported/x68000.png-879c34a224655bfa6a036727d38b0b69.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/x68000.png" +dest_files=["res://.godot/imported/x68000.png-879c34a224655bfa6a036727d38b0b69.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/xbox.png b/tools/configurator/assets/icons/banner/xbox.png new file mode 100644 index 00000000..090968b6 Binary files /dev/null and b/tools/configurator/assets/icons/banner/xbox.png differ diff --git a/tools/configurator/assets/icons/banner/xbox.png.import b/tools/configurator/assets/icons/banner/xbox.png.import new file mode 100644 index 00000000..8f3bb8cc --- /dev/null +++ b/tools/configurator/assets/icons/banner/xbox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxjkqcjkya6b0" +path="res://.godot/imported/xbox.png-474dd58c1075f137582856866757c9a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/xbox.png" +dest_files=["res://.godot/imported/xbox.png-474dd58c1075f137582856866757c9a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/xbox.png.kra b/tools/configurator/assets/icons/banner/xbox.png.kra new file mode 100644 index 00000000..4b6c342b Binary files /dev/null and b/tools/configurator/assets/icons/banner/xbox.png.kra differ diff --git a/tools/configurator/assets/icons/banner/xbox.png~ b/tools/configurator/assets/icons/banner/xbox.png~ new file mode 100644 index 00000000..e191bf2a Binary files /dev/null and b/tools/configurator/assets/icons/banner/xbox.png~ differ diff --git a/tools/configurator/assets/icons/banner/xbox360.png b/tools/configurator/assets/icons/banner/xbox360.png new file mode 100644 index 00000000..9d23076d Binary files /dev/null and b/tools/configurator/assets/icons/banner/xbox360.png differ diff --git a/tools/configurator/assets/icons/banner/xbox360.png.import b/tools/configurator/assets/icons/banner/xbox360.png.import new file mode 100644 index 00000000..27603b89 --- /dev/null +++ b/tools/configurator/assets/icons/banner/xbox360.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtpbfd43se1hh" +path="res://.godot/imported/xbox360.png-ffc65da5d2a4105c46000a228ad0f0b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/xbox360.png" +dest_files=["res://.godot/imported/xbox360.png-ffc65da5d2a4105c46000a228ad0f0b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/zelda.png b/tools/configurator/assets/icons/banner/zelda.png new file mode 100644 index 00000000..4bf166d8 Binary files /dev/null and b/tools/configurator/assets/icons/banner/zelda.png differ diff --git a/tools/configurator/assets/icons/banner/zelda.png.import b/tools/configurator/assets/icons/banner/zelda.png.import new file mode 100644 index 00000000..679b34dc --- /dev/null +++ b/tools/configurator/assets/icons/banner/zelda.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k56poj41mi2l" +path="res://.godot/imported/zelda.png-7234f3043d269c5f0752238c47d862a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/zelda.png" +dest_files=["res://.godot/imported/zelda.png-7234f3043d269c5f0752238c47d862a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/zmachine.png b/tools/configurator/assets/icons/banner/zmachine.png new file mode 100644 index 00000000..6e3633d0 Binary files /dev/null and b/tools/configurator/assets/icons/banner/zmachine.png differ diff --git a/tools/configurator/assets/icons/banner/zmachine.png.import b/tools/configurator/assets/icons/banner/zmachine.png.import new file mode 100644 index 00000000..26db4906 --- /dev/null +++ b/tools/configurator/assets/icons/banner/zmachine.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cog1dui1p4p8g" +path="res://.godot/imported/zmachine.png-b98176f00431434aa3087fb7fa07dbc8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/zmachine.png" +dest_files=["res://.godot/imported/zmachine.png-b98176f00431434aa3087fb7fa07dbc8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/zx81.png b/tools/configurator/assets/icons/banner/zx81.png new file mode 100644 index 00000000..992cbaad Binary files /dev/null and b/tools/configurator/assets/icons/banner/zx81.png differ diff --git a/tools/configurator/assets/icons/banner/zx81.png.import b/tools/configurator/assets/icons/banner/zx81.png.import new file mode 100644 index 00000000..c365fe97 --- /dev/null +++ b/tools/configurator/assets/icons/banner/zx81.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btw1805g1bfh7" +path="res://.godot/imported/zx81.png-fc3217902b7249643b6dd7b2c4098cb0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/zx81.png" +dest_files=["res://.godot/imported/zx81.png-fc3217902b7249643b6dd7b2c4098cb0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/zxnext.png b/tools/configurator/assets/icons/banner/zxnext.png new file mode 100644 index 00000000..f0f93804 Binary files /dev/null and b/tools/configurator/assets/icons/banner/zxnext.png differ diff --git a/tools/configurator/assets/icons/banner/zxnext.png.import b/tools/configurator/assets/icons/banner/zxnext.png.import new file mode 100644 index 00000000..48e51c4c --- /dev/null +++ b/tools/configurator/assets/icons/banner/zxnext.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bm3rdeqyudgk1" +path="res://.godot/imported/zxnext.png-16030eb66c758b80d7ac0259efbb6568.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/zxnext.png" +dest_files=["res://.godot/imported/zxnext.png-16030eb66c758b80d7ac0259efbb6568.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/banner/zxspectrum.png b/tools/configurator/assets/icons/banner/zxspectrum.png new file mode 100644 index 00000000..7f28d404 Binary files /dev/null and b/tools/configurator/assets/icons/banner/zxspectrum.png differ diff --git a/tools/configurator/assets/icons/banner/zxspectrum.png.import b/tools/configurator/assets/icons/banner/zxspectrum.png.import new file mode 100644 index 00000000..8916352d --- /dev/null +++ b/tools/configurator/assets/icons/banner/zxspectrum.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blysnwfxlpeor" +path="res://.godot/imported/zxspectrum.png-e4226241e70ed6a55db338978359afeb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/banner/zxspectrum.png" +dest_files=["res://.godot/imported/zxspectrum.png-e4226241e70ed6a55db338978359afeb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/home_made/RetroAchievements_logo_square_color.png b/tools/configurator/assets/icons/home_made/RetroAchievements_logo_square_color.png new file mode 100644 index 00000000..a10c75a9 Binary files /dev/null and b/tools/configurator/assets/icons/home_made/RetroAchievements_logo_square_color.png differ diff --git a/tools/configurator/assets/icons/home_made/RetroAchievements_logo_square_color.png.import b/tools/configurator/assets/icons/home_made/RetroAchievements_logo_square_color.png.import new file mode 100644 index 00000000..86594d44 --- /dev/null +++ b/tools/configurator/assets/icons/home_made/RetroAchievements_logo_square_color.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hh6yudttgfu4" +path="res://.godot/imported/RetroAchievements_logo_square_color.png-64abefe06c0579c28b1065af81a0acca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/home_made/RetroAchievements_logo_square_color.png" +dest_files=["res://.godot/imported/RetroAchievements_logo_square_color.png-64abefe06c0579c28b1065af81a0acca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/home_made/circle_green.svg b/tools/configurator/assets/icons/home_made/circle_green.svg new file mode 100644 index 00000000..f1e315de --- /dev/null +++ b/tools/configurator/assets/icons/home_made/circle_green.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/tools/configurator/assets/icons/home_made/circle_green.svg.import b/tools/configurator/assets/icons/home_made/circle_green.svg.import new file mode 100644 index 00000000..54abef8f --- /dev/null +++ b/tools/configurator/assets/icons/home_made/circle_green.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbj5m2hg6fhxh" +path="res://.godot/imported/circle_green.svg-725bce925d63ccb320f7511bba8f8e12.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/home_made/circle_green.svg" +dest_files=["res://.godot/imported/circle_green.svg-725bce925d63ccb320f7511bba8f8e12.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/tools/configurator/assets/icons/home_made/circle_grey.svg b/tools/configurator/assets/icons/home_made/circle_grey.svg new file mode 100644 index 00000000..40be9d0b --- /dev/null +++ b/tools/configurator/assets/icons/home_made/circle_grey.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/tools/configurator/assets/icons/home_made/circle_grey.svg.import b/tools/configurator/assets/icons/home_made/circle_grey.svg.import new file mode 100644 index 00000000..118be0ce --- /dev/null +++ b/tools/configurator/assets/icons/home_made/circle_grey.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba16fr4i5i1gi" +path="res://.godot/imported/circle_grey.svg-a1c2b91956f9e7745bce030dcab4e663.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/home_made/circle_grey.svg" +dest_files=["res://.godot/imported/circle_grey.svg-a1c2b91956f9e7745bce030dcab4e663.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/License.txt b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/License.txt new file mode 100644 index 00000000..bb5b3a69 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/License.txt @@ -0,0 +1,22 @@ + + + Input Prompts Pixel 16× (1.0) + + Created/distributed by Kenney (www.kenney.nl) + Creation date: 23-09-2021 + + ------------------------------ + + License: (Creative Commons Zero, CC0) + http://creativecommons.org/publicdomain/zero/1.0/ + + This content is free to use in personal, educational and commercial projects. + Support us by crediting Kenney or www.kenney.nl (this is not mandatory) + + ------------------------------ + + Donate: http://support.kenney.nl + Patreon: http://patreon.com/kenney/ + + Follow on Twitter for updates: + http://twitter.com/KenneyNL \ No newline at end of file diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Preview.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Preview.png new file mode 100644 index 00000000..f25d4863 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Preview.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Preview.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Preview.png.import new file mode 100644 index 00000000..caedcd0f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Preview.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsf64mbiyvdng" +path="res://.godot/imported/Preview.png-2c36ea87926202a5d6e77413a7379768.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Preview.png" +dest_files=["res://.godot/imported/Preview.png-2c36ea87926202a5d6e77413a7379768.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tilemap/tilemap.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tilemap/tilemap.png new file mode 100644 index 00000000..a9162494 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tilemap/tilemap.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tilemap/tilemap.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tilemap/tilemap.png.import new file mode 100644 index 00000000..449aaa2d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tilemap/tilemap.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://biamqt15f0pkf" +path="res://.godot/imported/tilemap.png-ebb5af4ad33c359d2addf0c61d25b6e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tilemap/tilemap.png" +dest_files=["res://.godot/imported/tilemap.png-ebb5af4ad33c359d2addf0c61d25b6e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tilemap/tilemap_packed.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tilemap/tilemap_packed.png new file mode 100644 index 00000000..c469ed10 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tilemap/tilemap_packed.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tilemap/tilemap_packed.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tilemap/tilemap_packed.png.import new file mode 100644 index 00000000..af7c0592 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tilemap/tilemap_packed.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bccwaa5icf0f2" +path="res://.godot/imported/tilemap_packed.png-f0b773ec957ea44d45d5e16396d653ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tilemap/tilemap_packed.png" +dest_files=["res://.godot/imported/tilemap_packed.png-f0b773ec957ea44d45d5e16396d653ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0000.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0000.png new file mode 100644 index 00000000..8c81f0b9 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0000.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0000.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0000.png.import new file mode 100644 index 00000000..5274e1e5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0000.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cybgluovwyfme" +path="res://.godot/imported/tile_0000.png-3e59467596a4f904038a0bd7b9f73aa7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0000.png" +dest_files=["res://.godot/imported/tile_0000.png-3e59467596a4f904038a0bd7b9f73aa7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0001.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0001.png new file mode 100644 index 00000000..fec71c47 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0001.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0001.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0001.png.import new file mode 100644 index 00000000..c45ae253 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0001.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cagig8lmv848d" +path="res://.godot/imported/tile_0001.png-73a8601f00993973525f09bb80e08d53.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0001.png" +dest_files=["res://.godot/imported/tile_0001.png-73a8601f00993973525f09bb80e08d53.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0002.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0002.png new file mode 100644 index 00000000..a4518c71 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0002.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0002.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0002.png.import new file mode 100644 index 00000000..19c91102 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0002.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bim2onw1wggxe" +path="res://.godot/imported/tile_0002.png-b772bbb61641513aaf4e57054dccee4c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0002.png" +dest_files=["res://.godot/imported/tile_0002.png-b772bbb61641513aaf4e57054dccee4c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0003.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0003.png new file mode 100644 index 00000000..73a58adf Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0003.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0003.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0003.png.import new file mode 100644 index 00000000..70234edf --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0003.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bohh0s2lc2lpl" +path="res://.godot/imported/tile_0003.png-099818f5f79e0caca80c5a2d0af1e4c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0003.png" +dest_files=["res://.godot/imported/tile_0003.png-099818f5f79e0caca80c5a2d0af1e4c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0004.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0004.png new file mode 100644 index 00000000..9e358dc3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0004.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0004.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0004.png.import new file mode 100644 index 00000000..e17a1e0a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0004.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gt8ajc6n8pnb" +path="res://.godot/imported/tile_0004.png-6d1beb36ce9f92074a5374bb4d5b70c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0004.png" +dest_files=["res://.godot/imported/tile_0004.png-6d1beb36ce9f92074a5374bb4d5b70c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0005.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0005.png new file mode 100644 index 00000000..00b26265 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0005.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0005.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0005.png.import new file mode 100644 index 00000000..b6a6986b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0005.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://28i2y11lcfwr" +path="res://.godot/imported/tile_0005.png-51025285bf5196b2bc80bcab02f9c05f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0005.png" +dest_files=["res://.godot/imported/tile_0005.png-51025285bf5196b2bc80bcab02f9c05f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0006.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0006.png new file mode 100644 index 00000000..729d0716 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0006.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0006.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0006.png.import new file mode 100644 index 00000000..a542bbe1 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0006.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1aitduu0mgto" +path="res://.godot/imported/tile_0006.png-9b4f51cd9c37ae4e12d2981e3098a6fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0006.png" +dest_files=["res://.godot/imported/tile_0006.png-9b4f51cd9c37ae4e12d2981e3098a6fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0007.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0007.png new file mode 100644 index 00000000..00683170 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0007.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0007.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0007.png.import new file mode 100644 index 00000000..24c14a8b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0007.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqv604qfbend1" +path="res://.godot/imported/tile_0007.png-b642da2257e576947f624d732dea7910.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0007.png" +dest_files=["res://.godot/imported/tile_0007.png-b642da2257e576947f624d732dea7910.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0008.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0008.png new file mode 100644 index 00000000..296941b9 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0008.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0008.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0008.png.import new file mode 100644 index 00000000..019333d4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0008.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blxl5d4qyygof" +path="res://.godot/imported/tile_0008.png-b1665b885ac164c8150678cb46f29c85.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0008.png" +dest_files=["res://.godot/imported/tile_0008.png-b1665b885ac164c8150678cb46f29c85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0009.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0009.png new file mode 100644 index 00000000..4c49402c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0009.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0009.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0009.png.import new file mode 100644 index 00000000..c7f4bf94 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0009.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bopd3pbvcoux0" +path="res://.godot/imported/tile_0009.png-c809995da9529cd3379e289fb04d7492.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0009.png" +dest_files=["res://.godot/imported/tile_0009.png-c809995da9529cd3379e289fb04d7492.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0010.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0010.png new file mode 100644 index 00000000..f5de2e6b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0010.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0010.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0010.png.import new file mode 100644 index 00000000..a0811118 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0010.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b63heook3xgmo" +path="res://.godot/imported/tile_0010.png-eabbb5a36bf81261781c463dd60a83bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0010.png" +dest_files=["res://.godot/imported/tile_0010.png-eabbb5a36bf81261781c463dd60a83bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0011.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0011.png new file mode 100644 index 00000000..44f7a50b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0011.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0011.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0011.png.import new file mode 100644 index 00000000..d8f74e11 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0011.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cm7u7ec2f4ky1" +path="res://.godot/imported/tile_0011.png-e7eefd6e14fd19d8ee2e21de253686c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0011.png" +dest_files=["res://.godot/imported/tile_0011.png-e7eefd6e14fd19d8ee2e21de253686c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0012.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0012.png new file mode 100644 index 00000000..4367cd7d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0012.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0012.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0012.png.import new file mode 100644 index 00000000..cd7de67c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0012.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b70mtgbr53e0p" +path="res://.godot/imported/tile_0012.png-26aad6d3a40dcda757a17cfbb5814f76.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0012.png" +dest_files=["res://.godot/imported/tile_0012.png-26aad6d3a40dcda757a17cfbb5814f76.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0013.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0013.png new file mode 100644 index 00000000..dc03eb63 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0013.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0013.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0013.png.import new file mode 100644 index 00000000..006c26d8 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0013.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mvlq05ndbiar" +path="res://.godot/imported/tile_0013.png-3bcb6ac854492585d0b44dfacef6b187.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0013.png" +dest_files=["res://.godot/imported/tile_0013.png-3bcb6ac854492585d0b44dfacef6b187.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0014.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0014.png new file mode 100644 index 00000000..a9075413 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0014.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0014.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0014.png.import new file mode 100644 index 00000000..4685b709 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0014.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kgs06i5mtdj1" +path="res://.godot/imported/tile_0014.png-8d278f8e74dbfaa2386f7d5a80ece3d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0014.png" +dest_files=["res://.godot/imported/tile_0014.png-8d278f8e74dbfaa2386f7d5a80ece3d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0015.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0015.png new file mode 100644 index 00000000..3f0a150b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0015.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0015.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0015.png.import new file mode 100644 index 00000000..01896c47 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0015.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by8op04che5g" +path="res://.godot/imported/tile_0015.png-8cb4644fd66da17aad8badf7e100bb4a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0015.png" +dest_files=["res://.godot/imported/tile_0015.png-8cb4644fd66da17aad8badf7e100bb4a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0016.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0016.png new file mode 100644 index 00000000..00e65730 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0016.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0016.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0016.png.import new file mode 100644 index 00000000..683bd886 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0016.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djhy81hqaeg7q" +path="res://.godot/imported/tile_0016.png-38ea619426a23531b4a00cd21b36a074.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0016.png" +dest_files=["res://.godot/imported/tile_0016.png-38ea619426a23531b4a00cd21b36a074.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0017.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0017.png new file mode 100644 index 00000000..f25834ff Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0017.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0017.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0017.png.import new file mode 100644 index 00000000..f96b499c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0017.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf6j0cnoqtqps" +path="res://.godot/imported/tile_0017.png-ddc0c857f27f9f9b57c0c83a2ede33d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0017.png" +dest_files=["res://.godot/imported/tile_0017.png-ddc0c857f27f9f9b57c0c83a2ede33d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0018.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0018.png new file mode 100644 index 00000000..bc221527 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0018.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0018.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0018.png.import new file mode 100644 index 00000000..094742d1 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0018.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brhn153yne8hl" +path="res://.godot/imported/tile_0018.png-c27aaa6470faee9c23529ffd1ec05d0f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0018.png" +dest_files=["res://.godot/imported/tile_0018.png-c27aaa6470faee9c23529ffd1ec05d0f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0019.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0019.png new file mode 100644 index 00000000..12f21c2f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0019.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0019.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0019.png.import new file mode 100644 index 00000000..7c7e5dcc --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0019.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gefx6hwox45q" +path="res://.godot/imported/tile_0019.png-987ec11bc1ec02f9d73c72bbb862f84e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0019.png" +dest_files=["res://.godot/imported/tile_0019.png-987ec11bc1ec02f9d73c72bbb862f84e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0020.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0020.png new file mode 100644 index 00000000..a4855e61 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0020.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0020.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0020.png.import new file mode 100644 index 00000000..e5b85508 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0020.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sk7ocv8usfme" +path="res://.godot/imported/tile_0020.png-6920996ac2a0f9750ad00688ed1e7245.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0020.png" +dest_files=["res://.godot/imported/tile_0020.png-6920996ac2a0f9750ad00688ed1e7245.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0021.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0021.png new file mode 100644 index 00000000..c9bafb28 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0021.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0021.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0021.png.import new file mode 100644 index 00000000..5542d446 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0021.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ce0wou2ekvqvu" +path="res://.godot/imported/tile_0021.png-a59f40ecd098643c23fe9184529399cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0021.png" +dest_files=["res://.godot/imported/tile_0021.png-a59f40ecd098643c23fe9184529399cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0022.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0022.png new file mode 100644 index 00000000..0271fee3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0022.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0022.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0022.png.import new file mode 100644 index 00000000..af2cc8ef --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0022.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bse8m02osqk4y" +path="res://.godot/imported/tile_0022.png-d6101326cd179a32e4b240b6c9dac7de.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0022.png" +dest_files=["res://.godot/imported/tile_0022.png-d6101326cd179a32e4b240b6c9dac7de.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0023.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0023.png new file mode 100644 index 00000000..bee0f8cb Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0023.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0023.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0023.png.import new file mode 100644 index 00000000..fe9f5b6f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0023.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rhbf80u77rso" +path="res://.godot/imported/tile_0023.png-4be7531b7fce2d12ac7767327fc77cac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0023.png" +dest_files=["res://.godot/imported/tile_0023.png-4be7531b7fce2d12ac7767327fc77cac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0024.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0024.png new file mode 100644 index 00000000..baf1a9e7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0024.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0024.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0024.png.import new file mode 100644 index 00000000..8b038f27 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0024.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bge4wqt3vvgyi" +path="res://.godot/imported/tile_0024.png-b0523d9639e12538aa3c8d1c3a2eb2d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0024.png" +dest_files=["res://.godot/imported/tile_0024.png-b0523d9639e12538aa3c8d1c3a2eb2d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0025.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0025.png new file mode 100644 index 00000000..2c6a39ca Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0025.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0025.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0025.png.import new file mode 100644 index 00000000..d42453ad --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0025.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xq8ebclk2ps0" +path="res://.godot/imported/tile_0025.png-4e2e594c3845c403baa6dbabf23d4089.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0025.png" +dest_files=["res://.godot/imported/tile_0025.png-4e2e594c3845c403baa6dbabf23d4089.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0026.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0026.png new file mode 100644 index 00000000..44a9b5e4 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0026.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0026.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0026.png.import new file mode 100644 index 00000000..e2e644e2 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0026.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i501n0btbdiq" +path="res://.godot/imported/tile_0026.png-b8a63973e20d0173ecd80f4768116403.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0026.png" +dest_files=["res://.godot/imported/tile_0026.png-b8a63973e20d0173ecd80f4768116403.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0027.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0027.png new file mode 100644 index 00000000..c17bfc03 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0027.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0027.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0027.png.import new file mode 100644 index 00000000..c395440a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0027.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k5d7ycqixjid" +path="res://.godot/imported/tile_0027.png-76522b820dc1dad619280ce6e3d05252.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0027.png" +dest_files=["res://.godot/imported/tile_0027.png-76522b820dc1dad619280ce6e3d05252.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0028.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0028.png new file mode 100644 index 00000000..560df5ea Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0028.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0028.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0028.png.import new file mode 100644 index 00000000..3a08d333 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0028.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3r5h13c1m7eo" +path="res://.godot/imported/tile_0028.png-8ff9eb5f6a456425a1b575c7e557dc99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0028.png" +dest_files=["res://.godot/imported/tile_0028.png-8ff9eb5f6a456425a1b575c7e557dc99.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0029.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0029.png new file mode 100644 index 00000000..35b7857b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0029.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0029.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0029.png.import new file mode 100644 index 00000000..2c7c9dd2 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0029.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drqpchehxbcw2" +path="res://.godot/imported/tile_0029.png-4506fc9ade0e4c5f9f975a48cb78be32.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0029.png" +dest_files=["res://.godot/imported/tile_0029.png-4506fc9ade0e4c5f9f975a48cb78be32.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0030.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0030.png new file mode 100644 index 00000000..1c33fa64 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0030.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0030.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0030.png.import new file mode 100644 index 00000000..7fc832f1 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0030.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjmxnad5kdxv6" +path="res://.godot/imported/tile_0030.png-0ab5b69a23682b0a2cce4a5aeef324ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0030.png" +dest_files=["res://.godot/imported/tile_0030.png-0ab5b69a23682b0a2cce4a5aeef324ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0031.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0031.png new file mode 100644 index 00000000..62b1dd91 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0031.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0031.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0031.png.import new file mode 100644 index 00000000..141cbe20 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0031.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byulfbfrn33b4" +path="res://.godot/imported/tile_0031.png-b2aefc7ddc69c7b172d90319ae91b71d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0031.png" +dest_files=["res://.godot/imported/tile_0031.png-b2aefc7ddc69c7b172d90319ae91b71d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0032.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0032.png new file mode 100644 index 00000000..bde1a324 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0032.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0032.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0032.png.import new file mode 100644 index 00000000..a0568fcd --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0032.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbd4uqatg6pjp" +path="res://.godot/imported/tile_0032.png-743416ac5dc0349b3427da0416766ad5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0032.png" +dest_files=["res://.godot/imported/tile_0032.png-743416ac5dc0349b3427da0416766ad5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0033.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0033.png new file mode 100644 index 00000000..ad6a08e8 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0033.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0033.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0033.png.import new file mode 100644 index 00000000..a7a85c2f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0033.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdso2jwyeqrmd" +path="res://.godot/imported/tile_0033.png-9e0cae5a6022cff6083d56c80843ca05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0033.png" +dest_files=["res://.godot/imported/tile_0033.png-9e0cae5a6022cff6083d56c80843ca05.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0034.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0034.png new file mode 100644 index 00000000..b41d3fe4 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0034.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0034.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0034.png.import new file mode 100644 index 00000000..7c70be15 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0034.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdye8i4ewr5ot" +path="res://.godot/imported/tile_0034.png-e2a87e1089c55ada71ed3b522ad1db62.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0034.png" +dest_files=["res://.godot/imported/tile_0034.png-e2a87e1089c55ada71ed3b522ad1db62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0035.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0035.png new file mode 100644 index 00000000..937003f0 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0035.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0035.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0035.png.import new file mode 100644 index 00000000..8909bdff --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0035.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fh5ly2csqrrc" +path="res://.godot/imported/tile_0035.png-3361544614ad0db0ec1738dd7b78d28c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0035.png" +dest_files=["res://.godot/imported/tile_0035.png-3361544614ad0db0ec1738dd7b78d28c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0036.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0036.png new file mode 100644 index 00000000..260bddad Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0036.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0036.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0036.png.import new file mode 100644 index 00000000..9e9d4591 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0036.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3axs8l38bryd" +path="res://.godot/imported/tile_0036.png-819a0079a61c3bf622fcf4337b7e23bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0036.png" +dest_files=["res://.godot/imported/tile_0036.png-819a0079a61c3bf622fcf4337b7e23bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0037.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0037.png new file mode 100644 index 00000000..6fffb87c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0037.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0037.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0037.png.import new file mode 100644 index 00000000..2fcc435b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0037.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://he4jg4n5hb2l" +path="res://.godot/imported/tile_0037.png-c8a4e5a196d15a3b8ae9e7b9d06d38b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0037.png" +dest_files=["res://.godot/imported/tile_0037.png-c8a4e5a196d15a3b8ae9e7b9d06d38b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0038.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0038.png new file mode 100644 index 00000000..3c08af1c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0038.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0038.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0038.png.import new file mode 100644 index 00000000..f1883c9e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0038.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg7icu0dndes1" +path="res://.godot/imported/tile_0038.png-da9548595e09f1c9d4c91ae4de5fb350.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0038.png" +dest_files=["res://.godot/imported/tile_0038.png-da9548595e09f1c9d4c91ae4de5fb350.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0039.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0039.png new file mode 100644 index 00000000..0d186403 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0039.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0039.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0039.png.import new file mode 100644 index 00000000..5adf3ed5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0039.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cy8n6b5yfqthp" +path="res://.godot/imported/tile_0039.png-2e1974abc176b12106393e3caf390f86.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0039.png" +dest_files=["res://.godot/imported/tile_0039.png-2e1974abc176b12106393e3caf390f86.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0040.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0040.png new file mode 100644 index 00000000..624bce23 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0040.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0040.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0040.png.import new file mode 100644 index 00000000..5b8c74a4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0040.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7e2lvme02lgh" +path="res://.godot/imported/tile_0040.png-8966e261a43fbafcbe489aca45a233d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0040.png" +dest_files=["res://.godot/imported/tile_0040.png-8966e261a43fbafcbe489aca45a233d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0041.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0041.png new file mode 100644 index 00000000..fab38b4d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0041.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0041.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0041.png.import new file mode 100644 index 00000000..6af66a09 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0041.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daf448b6s2f30" +path="res://.godot/imported/tile_0041.png-873c52fe4f21f207064d71f987fac361.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0041.png" +dest_files=["res://.godot/imported/tile_0041.png-873c52fe4f21f207064d71f987fac361.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0042.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0042.png new file mode 100644 index 00000000..c326feb7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0042.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0042.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0042.png.import new file mode 100644 index 00000000..502f4f7c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0042.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyumvh0ixwrbl" +path="res://.godot/imported/tile_0042.png-09a8f38545b7b6cf402bc4411c764dc7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0042.png" +dest_files=["res://.godot/imported/tile_0042.png-09a8f38545b7b6cf402bc4411c764dc7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0043.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0043.png new file mode 100644 index 00000000..9663dc1a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0043.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0043.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0043.png.import new file mode 100644 index 00000000..269dc629 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0043.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cc7ohmfxafe78" +path="res://.godot/imported/tile_0043.png-f581d8feec87d2fc46229facc5d8b2c9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0043.png" +dest_files=["res://.godot/imported/tile_0043.png-f581d8feec87d2fc46229facc5d8b2c9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0044.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0044.png new file mode 100644 index 00000000..35da859a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0044.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0044.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0044.png.import new file mode 100644 index 00000000..6eccfc40 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0044.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj5p6oa4tbh3l" +path="res://.godot/imported/tile_0044.png-633f6c883a7424963d5705ff3c9fe7bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0044.png" +dest_files=["res://.godot/imported/tile_0044.png-633f6c883a7424963d5705ff3c9fe7bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0045.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0045.png new file mode 100644 index 00000000..96e569d0 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0045.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0045.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0045.png.import new file mode 100644 index 00000000..d5c92d79 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0045.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjw5uccsiprpo" +path="res://.godot/imported/tile_0045.png-71419b3b4edecc16ca8c239b8116f312.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0045.png" +dest_files=["res://.godot/imported/tile_0045.png-71419b3b4edecc16ca8c239b8116f312.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0046.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0046.png new file mode 100644 index 00000000..8a77911d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0046.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0046.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0046.png.import new file mode 100644 index 00000000..9de3953e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0046.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhuvrj0p0nu8t" +path="res://.godot/imported/tile_0046.png-aa8e70f1d91d87cf849e918975c5e2da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0046.png" +dest_files=["res://.godot/imported/tile_0046.png-aa8e70f1d91d87cf849e918975c5e2da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0047.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0047.png new file mode 100644 index 00000000..dea39c2c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0047.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0047.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0047.png.import new file mode 100644 index 00000000..bf7ca107 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0047.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn11vcrybtor4" +path="res://.godot/imported/tile_0047.png-37a6ece88c67de96a11530d0e3e8e516.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0047.png" +dest_files=["res://.godot/imported/tile_0047.png-37a6ece88c67de96a11530d0e3e8e516.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0048.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0048.png new file mode 100644 index 00000000..80053a01 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0048.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0048.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0048.png.import new file mode 100644 index 00000000..f4402ee6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0048.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs8lh31kh7jv1" +path="res://.godot/imported/tile_0048.png-4bdbaca7d82fa941e9db2f75610df50a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0048.png" +dest_files=["res://.godot/imported/tile_0048.png-4bdbaca7d82fa941e9db2f75610df50a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0049.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0049.png new file mode 100644 index 00000000..2d2fea2d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0049.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0049.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0049.png.import new file mode 100644 index 00000000..7ccdc7ac --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0049.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ewsr5bqe7gcr" +path="res://.godot/imported/tile_0049.png-b9e329be03c16979228c9a326c806310.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0049.png" +dest_files=["res://.godot/imported/tile_0049.png-b9e329be03c16979228c9a326c806310.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0050.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0050.png new file mode 100644 index 00000000..1980d3ad Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0050.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0050.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0050.png.import new file mode 100644 index 00000000..802cff46 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0050.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da6e8m0kx265j" +path="res://.godot/imported/tile_0050.png-bb65f199a97734d985aee5e89fcb8896.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0050.png" +dest_files=["res://.godot/imported/tile_0050.png-bb65f199a97734d985aee5e89fcb8896.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0051.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0051.png new file mode 100644 index 00000000..90801774 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0051.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0051.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0051.png.import new file mode 100644 index 00000000..a490bf9e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0051.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5v61j7m5ei1k" +path="res://.godot/imported/tile_0051.png-b63ea2394ba17f2b1f4807efd728f866.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0051.png" +dest_files=["res://.godot/imported/tile_0051.png-b63ea2394ba17f2b1f4807efd728f866.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0052.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0052.png new file mode 100644 index 00000000..cb6298bb Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0052.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0052.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0052.png.import new file mode 100644 index 00000000..5aac006a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0052.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxl1m44cnv25u" +path="res://.godot/imported/tile_0052.png-18335f5e1d3882eb931467280f4febd9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0052.png" +dest_files=["res://.godot/imported/tile_0052.png-18335f5e1d3882eb931467280f4febd9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0053.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0053.png new file mode 100644 index 00000000..9812e858 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0053.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0053.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0053.png.import new file mode 100644 index 00000000..930c34d8 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0053.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j0r8u38dea0x" +path="res://.godot/imported/tile_0053.png-eabf3011e840fe90c715f9765f2f739a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0053.png" +dest_files=["res://.godot/imported/tile_0053.png-eabf3011e840fe90c715f9765f2f739a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0054.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0054.png new file mode 100644 index 00000000..6ff77832 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0054.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0054.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0054.png.import new file mode 100644 index 00000000..3adb5fd8 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0054.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c265ab751mtl7" +path="res://.godot/imported/tile_0054.png-07dd9acccd859573a445a008cb0c7254.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0054.png" +dest_files=["res://.godot/imported/tile_0054.png-07dd9acccd859573a445a008cb0c7254.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0055.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0055.png new file mode 100644 index 00000000..ee87662f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0055.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0055.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0055.png.import new file mode 100644 index 00000000..e39fac3e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0055.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt03dg5sf1ms3" +path="res://.godot/imported/tile_0055.png-5992b0f986a4a38b0d08073f2194a3ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0055.png" +dest_files=["res://.godot/imported/tile_0055.png-5992b0f986a4a38b0d08073f2194a3ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0056.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0056.png new file mode 100644 index 00000000..d3638349 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0056.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0056.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0056.png.import new file mode 100644 index 00000000..59445f10 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0056.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1nrn6g4xdhmg" +path="res://.godot/imported/tile_0056.png-5167b79decbef1b3e4a5feaa4e6bb327.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0056.png" +dest_files=["res://.godot/imported/tile_0056.png-5167b79decbef1b3e4a5feaa4e6bb327.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0057.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0057.png new file mode 100644 index 00000000..019f596e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0057.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0057.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0057.png.import new file mode 100644 index 00000000..0a7e7284 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0057.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4ow3v0mavdte" +path="res://.godot/imported/tile_0057.png-6f8367d1936933bcff196a1dabb7d25b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0057.png" +dest_files=["res://.godot/imported/tile_0057.png-6f8367d1936933bcff196a1dabb7d25b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0058.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0058.png new file mode 100644 index 00000000..700d1006 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0058.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0058.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0058.png.import new file mode 100644 index 00000000..fecf3fbc --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0058.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwy1vmj6u57fk" +path="res://.godot/imported/tile_0058.png-982542fa2f31cc8d572f76a0d2e1e215.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0058.png" +dest_files=["res://.godot/imported/tile_0058.png-982542fa2f31cc8d572f76a0d2e1e215.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0059.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0059.png new file mode 100644 index 00000000..e9b0015a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0059.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0059.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0059.png.import new file mode 100644 index 00000000..6e44cf72 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0059.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d38ivthq85scr" +path="res://.godot/imported/tile_0059.png-0a372a7e4644247fda131613102732aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0059.png" +dest_files=["res://.godot/imported/tile_0059.png-0a372a7e4644247fda131613102732aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0060.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0060.png new file mode 100644 index 00000000..74c7baf2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0060.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0060.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0060.png.import new file mode 100644 index 00000000..77143fda --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0060.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmnvqb0w0ka8u" +path="res://.godot/imported/tile_0060.png-5190ba3aecdeef5f0515e739adf107ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0060.png" +dest_files=["res://.godot/imported/tile_0060.png-5190ba3aecdeef5f0515e739adf107ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0061.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0061.png new file mode 100644 index 00000000..496c6388 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0061.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0061.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0061.png.import new file mode 100644 index 00000000..4cddbb11 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0061.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtrv0silx4n50" +path="res://.godot/imported/tile_0061.png-81049fc9b8b2acee15c64488cad8d2d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0061.png" +dest_files=["res://.godot/imported/tile_0061.png-81049fc9b8b2acee15c64488cad8d2d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0062.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0062.png new file mode 100644 index 00000000..afde0034 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0062.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0062.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0062.png.import new file mode 100644 index 00000000..5e403b04 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0062.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dliv53766qyr2" +path="res://.godot/imported/tile_0062.png-f1f06f280fbde2a5aa4f692e6ffe0c9e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0062.png" +dest_files=["res://.godot/imported/tile_0062.png-f1f06f280fbde2a5aa4f692e6ffe0c9e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0063.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0063.png new file mode 100644 index 00000000..778c9804 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0063.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0063.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0063.png.import new file mode 100644 index 00000000..ed46cb43 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0063.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk7ldrb10r154" +path="res://.godot/imported/tile_0063.png-731337f80da5fd572b5b0a6aa4d34c29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0063.png" +dest_files=["res://.godot/imported/tile_0063.png-731337f80da5fd572b5b0a6aa4d34c29.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0064.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0064.png new file mode 100644 index 00000000..0ccd036e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0064.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0064.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0064.png.import new file mode 100644 index 00000000..05522850 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0064.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daui0205bjsf" +path="res://.godot/imported/tile_0064.png-8e6983cb10df47c0c75b704036d7a49a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0064.png" +dest_files=["res://.godot/imported/tile_0064.png-8e6983cb10df47c0c75b704036d7a49a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0065.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0065.png new file mode 100644 index 00000000..ee2a0d7e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0065.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0065.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0065.png.import new file mode 100644 index 00000000..3b4c025a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0065.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pho4komiwsdl" +path="res://.godot/imported/tile_0065.png-58ff93395c0feac2b4a1568f3fdd1f7e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0065.png" +dest_files=["res://.godot/imported/tile_0065.png-58ff93395c0feac2b4a1568f3fdd1f7e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0066.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0066.png new file mode 100644 index 00000000..aac6831f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0066.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0066.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0066.png.import new file mode 100644 index 00000000..bd21fb1d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0066.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp4wewv2uwvno" +path="res://.godot/imported/tile_0066.png-b04409d3e7af1d9f6202336b972bbefb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0066.png" +dest_files=["res://.godot/imported/tile_0066.png-b04409d3e7af1d9f6202336b972bbefb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0067.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0067.png new file mode 100644 index 00000000..96eb251f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0067.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0067.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0067.png.import new file mode 100644 index 00000000..92529f6f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0067.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dypf6n204cvjk" +path="res://.godot/imported/tile_0067.png-2ffd602ba12d2f9893b50273dbbdc3ef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0067.png" +dest_files=["res://.godot/imported/tile_0067.png-2ffd602ba12d2f9893b50273dbbdc3ef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0068.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0068.png new file mode 100644 index 00000000..f140f9c0 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0068.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0068.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0068.png.import new file mode 100644 index 00000000..5ca577fd --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0068.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo3gm8hqjcosj" +path="res://.godot/imported/tile_0068.png-76c2871915fc8b4f388780ea72b643f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0068.png" +dest_files=["res://.godot/imported/tile_0068.png-76c2871915fc8b4f388780ea72b643f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0069.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0069.png new file mode 100644 index 00000000..b6a69e80 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0069.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0069.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0069.png.import new file mode 100644 index 00000000..6fb45a42 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0069.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://txqjkmursdqf" +path="res://.godot/imported/tile_0069.png-dc28cfa61ff3732decc18330a63968e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0069.png" +dest_files=["res://.godot/imported/tile_0069.png-dc28cfa61ff3732decc18330a63968e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0070.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0070.png new file mode 100644 index 00000000..981f16b5 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0070.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0070.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0070.png.import new file mode 100644 index 00000000..85d3b6e4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0070.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://desjc1x5rp36l" +path="res://.godot/imported/tile_0070.png-3aefb6ea68400665cb607115999e32f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0070.png" +dest_files=["res://.godot/imported/tile_0070.png-3aefb6ea68400665cb607115999e32f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0071.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0071.png new file mode 100644 index 00000000..452d3c68 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0071.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0071.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0071.png.import new file mode 100644 index 00000000..57e0fbbe --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0071.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj6gypt3tko8y" +path="res://.godot/imported/tile_0071.png-d9d09aec515a316b61047c6c2e257723.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0071.png" +dest_files=["res://.godot/imported/tile_0071.png-d9d09aec515a316b61047c6c2e257723.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0072.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0072.png new file mode 100644 index 00000000..4aac318a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0072.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0072.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0072.png.import new file mode 100644 index 00000000..b207d490 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0072.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyfyhm63vqly6" +path="res://.godot/imported/tile_0072.png-edae317366fbb13d7b17875fb4a209e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0072.png" +dest_files=["res://.godot/imported/tile_0072.png-edae317366fbb13d7b17875fb4a209e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0073.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0073.png new file mode 100644 index 00000000..da691c91 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0073.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0073.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0073.png.import new file mode 100644 index 00000000..796096ef --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0073.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnscvw0ug3itf" +path="res://.godot/imported/tile_0073.png-0a4b4cc4c64361489556b5d38fad3aab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0073.png" +dest_files=["res://.godot/imported/tile_0073.png-0a4b4cc4c64361489556b5d38fad3aab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0074.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0074.png new file mode 100644 index 00000000..48297e36 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0074.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0074.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0074.png.import new file mode 100644 index 00000000..2e95d53a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0074.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ce24ccsoxmgo1" +path="res://.godot/imported/tile_0074.png-9ed272652826cb29864a67a01b49c810.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0074.png" +dest_files=["res://.godot/imported/tile_0074.png-9ed272652826cb29864a67a01b49c810.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0075.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0075.png new file mode 100644 index 00000000..fab38b4d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0075.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0075.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0075.png.import new file mode 100644 index 00000000..1694c94b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0075.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx3khx27g8xb5" +path="res://.godot/imported/tile_0075.png-b0815f3d5169ee7b70fe31eb3e597b39.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0075.png" +dest_files=["res://.godot/imported/tile_0075.png-b0815f3d5169ee7b70fe31eb3e597b39.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0076.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0076.png new file mode 100644 index 00000000..7802850e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0076.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0076.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0076.png.import new file mode 100644 index 00000000..b615472f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0076.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blm008j6oqfce" +path="res://.godot/imported/tile_0076.png-e1c8a1425c9502fd1ba5c7b537c6cefe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0076.png" +dest_files=["res://.godot/imported/tile_0076.png-e1c8a1425c9502fd1ba5c7b537c6cefe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0077.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0077.png new file mode 100644 index 00000000..3d681693 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0077.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0077.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0077.png.import new file mode 100644 index 00000000..91295269 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0077.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f8g2s48ahrrq" +path="res://.godot/imported/tile_0077.png-ca477f360ab7cde9b7122ea31daaee32.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0077.png" +dest_files=["res://.godot/imported/tile_0077.png-ca477f360ab7cde9b7122ea31daaee32.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0078.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0078.png new file mode 100644 index 00000000..793156de Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0078.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0078.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0078.png.import new file mode 100644 index 00000000..90e78ecf --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0078.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctqim2idh70rf" +path="res://.godot/imported/tile_0078.png-3da290e64bd098f5e383e9f4064f998c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0078.png" +dest_files=["res://.godot/imported/tile_0078.png-3da290e64bd098f5e383e9f4064f998c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0079.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0079.png new file mode 100644 index 00000000..1f6fc2db Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0079.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0079.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0079.png.import new file mode 100644 index 00000000..2c824e42 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0079.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ce00fnm3rkdt6" +path="res://.godot/imported/tile_0079.png-c4c5b68bd6a6ac23dfc6e6e525485496.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0079.png" +dest_files=["res://.godot/imported/tile_0079.png-c4c5b68bd6a6ac23dfc6e6e525485496.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0080.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0080.png new file mode 100644 index 00000000..5d7d1c55 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0080.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0080.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0080.png.import new file mode 100644 index 00000000..e3bfe1d3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0080.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw8kgohibtd7s" +path="res://.godot/imported/tile_0080.png-ad5ba8a342c51dd4a984968f9895f0b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0080.png" +dest_files=["res://.godot/imported/tile_0080.png-ad5ba8a342c51dd4a984968f9895f0b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0081.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0081.png new file mode 100644 index 00000000..027fc070 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0081.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0081.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0081.png.import new file mode 100644 index 00000000..b2a238fa --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0081.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d32aa6sk8xwia" +path="res://.godot/imported/tile_0081.png-61d6a008c334c69a1b2ddf7022b9b7f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0081.png" +dest_files=["res://.godot/imported/tile_0081.png-61d6a008c334c69a1b2ddf7022b9b7f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0082.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0082.png new file mode 100644 index 00000000..3418db79 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0082.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0082.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0082.png.import new file mode 100644 index 00000000..1c464244 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0082.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1vhm4mfom3wb" +path="res://.godot/imported/tile_0082.png-d303e709ee8542968e50cdfef2e24b0c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0082.png" +dest_files=["res://.godot/imported/tile_0082.png-d303e709ee8542968e50cdfef2e24b0c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0083.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0083.png new file mode 100644 index 00000000..16b54dd6 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0083.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0083.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0083.png.import new file mode 100644 index 00000000..c714f40c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0083.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8j2a2psctmql" +path="res://.godot/imported/tile_0083.png-748e40e2e2873c120dd1f3d40559817d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0083.png" +dest_files=["res://.godot/imported/tile_0083.png-748e40e2e2873c120dd1f3d40559817d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0084.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0084.png new file mode 100644 index 00000000..230d9b93 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0084.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0084.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0084.png.import new file mode 100644 index 00000000..fa3e0ba5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0084.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpu2ouhedw5jv" +path="res://.godot/imported/tile_0084.png-1c0f435c1587fded17d3b64ae1f5d0ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0084.png" +dest_files=["res://.godot/imported/tile_0084.png-1c0f435c1587fded17d3b64ae1f5d0ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0085.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0085.png new file mode 100644 index 00000000..d8425116 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0085.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0085.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0085.png.import new file mode 100644 index 00000000..ce991d3c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0085.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c712avwa50nyh" +path="res://.godot/imported/tile_0085.png-c4bbd6a7753483328c722c68bc4d4d8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0085.png" +dest_files=["res://.godot/imported/tile_0085.png-c4bbd6a7753483328c722c68bc4d4d8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0086.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0086.png new file mode 100644 index 00000000..c6b16ccc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0086.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0086.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0086.png.import new file mode 100644 index 00000000..b3dd1cb2 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0086.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6dajmtadehy4" +path="res://.godot/imported/tile_0086.png-2742998f4efea00049ccc0b37e427d78.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0086.png" +dest_files=["res://.godot/imported/tile_0086.png-2742998f4efea00049ccc0b37e427d78.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0087.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0087.png new file mode 100644 index 00000000..55faa930 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0087.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0087.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0087.png.import new file mode 100644 index 00000000..773b8a6f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0087.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo1558tby4qbq" +path="res://.godot/imported/tile_0087.png-103b531bb7b35a04a6cbafdb3077ec1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0087.png" +dest_files=["res://.godot/imported/tile_0087.png-103b531bb7b35a04a6cbafdb3077ec1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0088.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0088.png new file mode 100644 index 00000000..f5b2a0ec Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0088.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0088.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0088.png.import new file mode 100644 index 00000000..634c44f6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0088.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://30fnpu8hqe3a" +path="res://.godot/imported/tile_0088.png-c13056efe81927c322d6cd4d8e5e6a6e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0088.png" +dest_files=["res://.godot/imported/tile_0088.png-c13056efe81927c322d6cd4d8e5e6a6e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0089.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0089.png new file mode 100644 index 00000000..b1337edb Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0089.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0089.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0089.png.import new file mode 100644 index 00000000..64ac1313 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0089.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbvtu55g3itqs" +path="res://.godot/imported/tile_0089.png-9731a4276b7b5baff5523d8bfbd9baf5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0089.png" +dest_files=["res://.godot/imported/tile_0089.png-9731a4276b7b5baff5523d8bfbd9baf5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0090.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0090.png new file mode 100644 index 00000000..58a8b496 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0090.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0090.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0090.png.import new file mode 100644 index 00000000..b784cd17 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0090.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ciu2ir4yo3h3w" +path="res://.godot/imported/tile_0090.png-a73bf8052848bdd307b1569abd1c2e5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0090.png" +dest_files=["res://.godot/imported/tile_0090.png-a73bf8052848bdd307b1569abd1c2e5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0091.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0091.png new file mode 100644 index 00000000..ba929997 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0091.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0091.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0091.png.import new file mode 100644 index 00000000..5c0c6266 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0091.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpuahighua43u" +path="res://.godot/imported/tile_0091.png-f818f1971bd514e1583612b9efb7c263.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0091.png" +dest_files=["res://.godot/imported/tile_0091.png-f818f1971bd514e1583612b9efb7c263.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0092.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0092.png new file mode 100644 index 00000000..34b5cf5a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0092.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0092.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0092.png.import new file mode 100644 index 00000000..8516527a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0092.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4eeob14jt60y" +path="res://.godot/imported/tile_0092.png-843c2859f7b232edb9d1a8cf05e44762.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0092.png" +dest_files=["res://.godot/imported/tile_0092.png-843c2859f7b232edb9d1a8cf05e44762.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0093.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0093.png new file mode 100644 index 00000000..74c7baf2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0093.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0093.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0093.png.import new file mode 100644 index 00000000..1395e043 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0093.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hi1lowns3yyn" +path="res://.godot/imported/tile_0093.png-84a509c266bd657321f2425f4af39afe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0093.png" +dest_files=["res://.godot/imported/tile_0093.png-84a509c266bd657321f2425f4af39afe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0094.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0094.png new file mode 100644 index 00000000..8ba217dc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0094.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0094.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0094.png.import new file mode 100644 index 00000000..5ce6268f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0094.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://plhkbrbxve25" +path="res://.godot/imported/tile_0094.png-f415c1a8bce1fb243c403edabc6a5888.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0094.png" +dest_files=["res://.godot/imported/tile_0094.png-f415c1a8bce1fb243c403edabc6a5888.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0095.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0095.png new file mode 100644 index 00000000..cf12c36c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0095.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0095.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0095.png.import new file mode 100644 index 00000000..fecd193d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0095.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmipbq7rjkl7s" +path="res://.godot/imported/tile_0095.png-77a568c169e4b5e7b90581c604b7d51c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0095.png" +dest_files=["res://.godot/imported/tile_0095.png-77a568c169e4b5e7b90581c604b7d51c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0096.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0096.png new file mode 100644 index 00000000..f2e37588 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0096.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0096.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0096.png.import new file mode 100644 index 00000000..2abfcf7f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0096.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b20gvbkaxrsa0" +path="res://.godot/imported/tile_0096.png-9cfb895213aec53827d4e77ed607d3a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0096.png" +dest_files=["res://.godot/imported/tile_0096.png-9cfb895213aec53827d4e77ed607d3a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0097.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0097.png new file mode 100644 index 00000000..6a42f455 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0097.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0097.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0097.png.import new file mode 100644 index 00000000..b318a26b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0097.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ci058n25qjvcd" +path="res://.godot/imported/tile_0097.png-963e638c57e0defd68656d82b720bd8a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0097.png" +dest_files=["res://.godot/imported/tile_0097.png-963e638c57e0defd68656d82b720bd8a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0098.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0098.png new file mode 100644 index 00000000..ebb7519c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0098.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0098.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0098.png.import new file mode 100644 index 00000000..108563ab --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0098.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b82rnctvrnww4" +path="res://.godot/imported/tile_0098.png-9db11437b2a09ebccddac546dcbad340.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0098.png" +dest_files=["res://.godot/imported/tile_0098.png-9db11437b2a09ebccddac546dcbad340.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0099.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0099.png new file mode 100644 index 00000000..ad51d23a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0099.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0099.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0099.png.import new file mode 100644 index 00000000..a01168c2 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0099.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3f86gori7ly8" +path="res://.godot/imported/tile_0099.png-649657d089c69e5ecdeca0caa929fdf0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0099.png" +dest_files=["res://.godot/imported/tile_0099.png-649657d089c69e5ecdeca0caa929fdf0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0100.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0100.png new file mode 100644 index 00000000..64b06f5d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0100.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0100.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0100.png.import new file mode 100644 index 00000000..400540cc --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0100.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0cdiujuhby0n" +path="res://.godot/imported/tile_0100.png-1ba70217efea5f42305888d9e69efa64.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0100.png" +dest_files=["res://.godot/imported/tile_0100.png-1ba70217efea5f42305888d9e69efa64.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0101.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0101.png new file mode 100644 index 00000000..84b503e2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0101.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0101.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0101.png.import new file mode 100644 index 00000000..d44c93c3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0101.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dffawagoxwmm5" +path="res://.godot/imported/tile_0101.png-612188bc6de1c5922cefa9e3a451a09e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0101.png" +dest_files=["res://.godot/imported/tile_0101.png-612188bc6de1c5922cefa9e3a451a09e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0102.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0102.png new file mode 100644 index 00000000..61cdd0ae Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0102.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0102.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0102.png.import new file mode 100644 index 00000000..c42047eb --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0102.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0od3pihse4cv" +path="res://.godot/imported/tile_0102.png-57099f4c3d0b1c58e47e2b1cc9e6d94b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0102.png" +dest_files=["res://.godot/imported/tile_0102.png-57099f4c3d0b1c58e47e2b1cc9e6d94b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0103.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0103.png new file mode 100644 index 00000000..8311169e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0103.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0103.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0103.png.import new file mode 100644 index 00000000..888f4743 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0103.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d03171s86qfkr" +path="res://.godot/imported/tile_0103.png-8f7b25fa388db1127593e20bbb72d8db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0103.png" +dest_files=["res://.godot/imported/tile_0103.png-8f7b25fa388db1127593e20bbb72d8db.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0104.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0104.png new file mode 100644 index 00000000..69e51881 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0104.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0104.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0104.png.import new file mode 100644 index 00000000..0c64bbf1 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0104.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgvc3xagofq8s" +path="res://.godot/imported/tile_0104.png-0ac21fda5c386f58e211e360ce693116.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0104.png" +dest_files=["res://.godot/imported/tile_0104.png-0ac21fda5c386f58e211e360ce693116.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0105.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0105.png new file mode 100644 index 00000000..11fefd4d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0105.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0105.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0105.png.import new file mode 100644 index 00000000..4de9cfaa --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0105.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hwl36wchmqj3" +path="res://.godot/imported/tile_0105.png-723b22f84c330e37852d64e1a4055ffa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0105.png" +dest_files=["res://.godot/imported/tile_0105.png-723b22f84c330e37852d64e1a4055ffa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0106.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0106.png new file mode 100644 index 00000000..6c4379f1 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0106.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0106.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0106.png.import new file mode 100644 index 00000000..d1257e4e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0106.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rt60j2yi6qb6" +path="res://.godot/imported/tile_0106.png-198c136ab753e80293ba2979a0101de1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0106.png" +dest_files=["res://.godot/imported/tile_0106.png-198c136ab753e80293ba2979a0101de1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0107.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0107.png new file mode 100644 index 00000000..548c31c0 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0107.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0107.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0107.png.import new file mode 100644 index 00000000..8661bbf8 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0107.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cirex0sdywf5x" +path="res://.godot/imported/tile_0107.png-ffae01379b91d0ca2109495a1d566ce4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0107.png" +dest_files=["res://.godot/imported/tile_0107.png-ffae01379b91d0ca2109495a1d566ce4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0108.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0108.png new file mode 100644 index 00000000..df558ee2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0108.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0108.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0108.png.import new file mode 100644 index 00000000..f25cdf3f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0108.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2circ2y87yav" +path="res://.godot/imported/tile_0108.png-207f1508c780f76d48c58dc878992f80.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0108.png" +dest_files=["res://.godot/imported/tile_0108.png-207f1508c780f76d48c58dc878992f80.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0109.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0109.png new file mode 100644 index 00000000..0d9d46a4 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0109.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0109.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0109.png.import new file mode 100644 index 00000000..b0b7b4e4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0109.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://18shcpoewkc7" +path="res://.godot/imported/tile_0109.png-79a929b6adbfa48bf4f5adffc5b893cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0109.png" +dest_files=["res://.godot/imported/tile_0109.png-79a929b6adbfa48bf4f5adffc5b893cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0110.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0110.png new file mode 100644 index 00000000..0a540e9e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0110.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0110.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0110.png.import new file mode 100644 index 00000000..4a8a2c62 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0110.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cefniw1pg6gvg" +path="res://.godot/imported/tile_0110.png-32529a8d5b0e8b85b3e922655c5d15ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0110.png" +dest_files=["res://.godot/imported/tile_0110.png-32529a8d5b0e8b85b3e922655c5d15ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0111.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0111.png new file mode 100644 index 00000000..39330b07 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0111.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0111.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0111.png.import new file mode 100644 index 00000000..b0e1b9db --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0111.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mh2c25qrexis" +path="res://.godot/imported/tile_0111.png-9105c337b6db8f5d7a58bcbc6543bdec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0111.png" +dest_files=["res://.godot/imported/tile_0111.png-9105c337b6db8f5d7a58bcbc6543bdec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0112.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0112.png new file mode 100644 index 00000000..64808cc1 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0112.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0112.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0112.png.import new file mode 100644 index 00000000..f24cd6cc --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0112.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iemhqi7dbnta" +path="res://.godot/imported/tile_0112.png-d0bf8e0ce8ace832b69d6f450b5d5019.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0112.png" +dest_files=["res://.godot/imported/tile_0112.png-d0bf8e0ce8ace832b69d6f450b5d5019.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0113.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0113.png new file mode 100644 index 00000000..dab0e732 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0113.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0113.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0113.png.import new file mode 100644 index 00000000..6b19b5d6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0113.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj6iqf1ouilux" +path="res://.godot/imported/tile_0113.png-ee0b70fef5611c8160af9db0599db3b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0113.png" +dest_files=["res://.godot/imported/tile_0113.png-ee0b70fef5611c8160af9db0599db3b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0114.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0114.png new file mode 100644 index 00000000..958a8c40 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0114.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0114.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0114.png.import new file mode 100644 index 00000000..346d981a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0114.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3n76765mk5r8" +path="res://.godot/imported/tile_0114.png-4e71e6007a96cf6fc931684bc56e707d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0114.png" +dest_files=["res://.godot/imported/tile_0114.png-4e71e6007a96cf6fc931684bc56e707d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0115.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0115.png new file mode 100644 index 00000000..3440f94f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0115.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0115.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0115.png.import new file mode 100644 index 00000000..18568e0a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0115.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bndlihh00j2u6" +path="res://.godot/imported/tile_0115.png-a54fed062207349bda079bd69df58138.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0115.png" +dest_files=["res://.godot/imported/tile_0115.png-a54fed062207349bda079bd69df58138.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0116.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0116.png new file mode 100644 index 00000000..7a9e3a05 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0116.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0116.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0116.png.import new file mode 100644 index 00000000..142d3198 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0116.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbgtcjfkn00fg" +path="res://.godot/imported/tile_0116.png-e61c070f3972372ba56a09bd4814637e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0116.png" +dest_files=["res://.godot/imported/tile_0116.png-e61c070f3972372ba56a09bd4814637e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0117.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0117.png new file mode 100644 index 00000000..fa862418 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0117.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0117.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0117.png.import new file mode 100644 index 00000000..d6441c54 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0117.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wmyws03xlkl3" +path="res://.godot/imported/tile_0117.png-2a9094b0249ce3135709cee1111b7893.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0117.png" +dest_files=["res://.godot/imported/tile_0117.png-2a9094b0249ce3135709cee1111b7893.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0118.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0118.png new file mode 100644 index 00000000..9605c279 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0118.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0118.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0118.png.import new file mode 100644 index 00000000..e068233a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0118.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2b4l4ygih4wh" +path="res://.godot/imported/tile_0118.png-e5aff44d3d93f3db2e9b2cdd8cdd05ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0118.png" +dest_files=["res://.godot/imported/tile_0118.png-e5aff44d3d93f3db2e9b2cdd8cdd05ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0119.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0119.png new file mode 100644 index 00000000..c0ea4d4f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0119.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0119.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0119.png.import new file mode 100644 index 00000000..a6964c75 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0119.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e5und2b8588w" +path="res://.godot/imported/tile_0119.png-be006584d958af8d443d5e81a95a853f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0119.png" +dest_files=["res://.godot/imported/tile_0119.png-be006584d958af8d443d5e81a95a853f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0120.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0120.png new file mode 100644 index 00000000..58f767e6 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0120.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0120.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0120.png.import new file mode 100644 index 00000000..98e66460 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0120.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do45k6bokik4b" +path="res://.godot/imported/tile_0120.png-91745e6b1ee7f1211ccd32116a269026.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0120.png" +dest_files=["res://.godot/imported/tile_0120.png-91745e6b1ee7f1211ccd32116a269026.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0121.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0121.png new file mode 100644 index 00000000..978cc70d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0121.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0121.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0121.png.import new file mode 100644 index 00000000..c8f178a5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0121.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://47h45dl3un16" +path="res://.godot/imported/tile_0121.png-50e7fbe9734a9f440d6e8102392a4ef7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0121.png" +dest_files=["res://.godot/imported/tile_0121.png-50e7fbe9734a9f440d6e8102392a4ef7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0122.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0122.png new file mode 100644 index 00000000..9670cdb2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0122.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0122.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0122.png.import new file mode 100644 index 00000000..0c91ea09 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0122.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3mkj8fi8lasa" +path="res://.godot/imported/tile_0122.png-1084de039b36bee7146f1585289119af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0122.png" +dest_files=["res://.godot/imported/tile_0122.png-1084de039b36bee7146f1585289119af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0123.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0123.png new file mode 100644 index 00000000..2b952466 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0123.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0123.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0123.png.import new file mode 100644 index 00000000..c472f2ac --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0123.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cftevgvu0xrhx" +path="res://.godot/imported/tile_0123.png-253499e54bb9f0a59de48e17d472ad0a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0123.png" +dest_files=["res://.godot/imported/tile_0123.png-253499e54bb9f0a59de48e17d472ad0a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0124.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0124.png new file mode 100644 index 00000000..fb2b6404 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0124.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0124.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0124.png.import new file mode 100644 index 00000000..acb74fa2 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0124.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bauvlwwu1q3of" +path="res://.godot/imported/tile_0124.png-88ce19a1d73a2ef13478be2dca91dae3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0124.png" +dest_files=["res://.godot/imported/tile_0124.png-88ce19a1d73a2ef13478be2dca91dae3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0125.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0125.png new file mode 100644 index 00000000..587bb054 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0125.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0125.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0125.png.import new file mode 100644 index 00000000..cada46fb --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0125.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3ayfts4ycw81" +path="res://.godot/imported/tile_0125.png-4e4d792428576924c826916af40bf48e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0125.png" +dest_files=["res://.godot/imported/tile_0125.png-4e4d792428576924c826916af40bf48e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0126.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0126.png new file mode 100644 index 00000000..1eacc5bf Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0126.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0126.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0126.png.import new file mode 100644 index 00000000..50e3a193 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0126.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdjjiphcqqbfl" +path="res://.godot/imported/tile_0126.png-b4f91afca6cee6da98b74c2cc87e922a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0126.png" +dest_files=["res://.godot/imported/tile_0126.png-b4f91afca6cee6da98b74c2cc87e922a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0127.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0127.png new file mode 100644 index 00000000..faeda5de Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0127.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0127.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0127.png.import new file mode 100644 index 00000000..e46d0078 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0127.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dookenp0dmnjv" +path="res://.godot/imported/tile_0127.png-b77354b995d2a4a038ea3c676faf7699.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0127.png" +dest_files=["res://.godot/imported/tile_0127.png-b77354b995d2a4a038ea3c676faf7699.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0128.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0128.png new file mode 100644 index 00000000..36bb3c93 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0128.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0128.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0128.png.import new file mode 100644 index 00000000..29a4f556 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0128.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://big3qlplixn61" +path="res://.godot/imported/tile_0128.png-70e838a223616d2a7ab4a481915af901.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0128.png" +dest_files=["res://.godot/imported/tile_0128.png-70e838a223616d2a7ab4a481915af901.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0129.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0129.png new file mode 100644 index 00000000..d22d9577 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0129.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0129.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0129.png.import new file mode 100644 index 00000000..c6bf1148 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0129.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7ayddnb2e3io" +path="res://.godot/imported/tile_0129.png-6e74ebc689e1dd12aafc72117ef2659c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0129.png" +dest_files=["res://.godot/imported/tile_0129.png-6e74ebc689e1dd12aafc72117ef2659c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0130.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0130.png new file mode 100644 index 00000000..6e05508b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0130.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0130.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0130.png.import new file mode 100644 index 00000000..1cb96b9d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0130.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nssdynns737u" +path="res://.godot/imported/tile_0130.png-128ea41aca2914bcd4a9be3998e20cde.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0130.png" +dest_files=["res://.godot/imported/tile_0130.png-128ea41aca2914bcd4a9be3998e20cde.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0131.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0131.png new file mode 100644 index 00000000..eaecb1b3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0131.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0131.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0131.png.import new file mode 100644 index 00000000..1a32bf41 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0131.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddo8nio5ssgyy" +path="res://.godot/imported/tile_0131.png-ca9b751fe061acb506b36ae09df52ece.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0131.png" +dest_files=["res://.godot/imported/tile_0131.png-ca9b751fe061acb506b36ae09df52ece.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0132.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0132.png new file mode 100644 index 00000000..4520e95d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0132.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0132.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0132.png.import new file mode 100644 index 00000000..3f20609a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0132.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjw8qt8d2udq6" +path="res://.godot/imported/tile_0132.png-c87b4588eb3aa6d3a61a2c056140cc47.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0132.png" +dest_files=["res://.godot/imported/tile_0132.png-c87b4588eb3aa6d3a61a2c056140cc47.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0133.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0133.png new file mode 100644 index 00000000..47e5fe17 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0133.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0133.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0133.png.import new file mode 100644 index 00000000..95e92d20 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0133.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://t5fo2ot3xyli" +path="res://.godot/imported/tile_0133.png-4de365df60593047a5626e36aed17108.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0133.png" +dest_files=["res://.godot/imported/tile_0133.png-4de365df60593047a5626e36aed17108.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0134.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0134.png new file mode 100644 index 00000000..b6415985 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0134.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0134.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0134.png.import new file mode 100644 index 00000000..f3ef2c0b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0134.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy3pt60ik0idm" +path="res://.godot/imported/tile_0134.png-292e70a8e5f3727167034e6d110e9a49.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0134.png" +dest_files=["res://.godot/imported/tile_0134.png-292e70a8e5f3727167034e6d110e9a49.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0135.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0135.png new file mode 100644 index 00000000..c3638e13 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0135.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0135.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0135.png.import new file mode 100644 index 00000000..e92d09de --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0135.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cln7mqivgpbst" +path="res://.godot/imported/tile_0135.png-3bd48d88fe1db154b8987d3a947c3ae0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0135.png" +dest_files=["res://.godot/imported/tile_0135.png-3bd48d88fe1db154b8987d3a947c3ae0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0136.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0136.png new file mode 100644 index 00000000..8f5361be Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0136.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0136.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0136.png.import new file mode 100644 index 00000000..9d534b48 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0136.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://15fmviwcaxql" +path="res://.godot/imported/tile_0136.png-bbd822d86c1b7452643772e47ca6a7e4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0136.png" +dest_files=["res://.godot/imported/tile_0136.png-bbd822d86c1b7452643772e47ca6a7e4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0137.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0137.png new file mode 100644 index 00000000..57e33ac8 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0137.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0137.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0137.png.import new file mode 100644 index 00000000..878f2743 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0137.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl5er60uui7m3" +path="res://.godot/imported/tile_0137.png-c229de323af3e780cb000d7d4d30e204.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0137.png" +dest_files=["res://.godot/imported/tile_0137.png-c229de323af3e780cb000d7d4d30e204.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0138.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0138.png new file mode 100644 index 00000000..47f3a148 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0138.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0138.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0138.png.import new file mode 100644 index 00000000..3611fb25 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0138.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwxwmu8dxxdcb" +path="res://.godot/imported/tile_0138.png-f1432c99ac8ee46a7856067946d383a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0138.png" +dest_files=["res://.godot/imported/tile_0138.png-f1432c99ac8ee46a7856067946d383a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0139.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0139.png new file mode 100644 index 00000000..23b8c9ba Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0139.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0139.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0139.png.import new file mode 100644 index 00000000..8b1798e3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0139.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u0qtvngh42m2" +path="res://.godot/imported/tile_0139.png-cc56f52a6421fd35288e2bda4714e2b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0139.png" +dest_files=["res://.godot/imported/tile_0139.png-cc56f52a6421fd35288e2bda4714e2b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0140.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0140.png new file mode 100644 index 00000000..974105cc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0140.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0140.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0140.png.import new file mode 100644 index 00000000..24d0fdb0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0140.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vblh6cpfxgp" +path="res://.godot/imported/tile_0140.png-0dd6cfba9b71a00415f60d252bcd02cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0140.png" +dest_files=["res://.godot/imported/tile_0140.png-0dd6cfba9b71a00415f60d252bcd02cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0141.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0141.png new file mode 100644 index 00000000..86a1bb9d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0141.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0141.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0141.png.import new file mode 100644 index 00000000..681f075a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0141.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnqxs0cftld3d" +path="res://.godot/imported/tile_0141.png-c109c02173a718b891a7a8b1ee6bf740.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0141.png" +dest_files=["res://.godot/imported/tile_0141.png-c109c02173a718b891a7a8b1ee6bf740.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0142.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0142.png new file mode 100644 index 00000000..b2386cf2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0142.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0142.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0142.png.import new file mode 100644 index 00000000..193cbeef --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0142.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ggfamnmseb0f" +path="res://.godot/imported/tile_0142.png-cf7b5c37c81c05fd5c5fe90fb8d7dd7b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0142.png" +dest_files=["res://.godot/imported/tile_0142.png-cf7b5c37c81c05fd5c5fe90fb8d7dd7b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0143.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0143.png new file mode 100644 index 00000000..0d9d46a4 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0143.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0143.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0143.png.import new file mode 100644 index 00000000..4b75121a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0143.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnqpc1f0p87di" +path="res://.godot/imported/tile_0143.png-9a673f8ddae254f7c9fd8a6a16f7fa9c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0143.png" +dest_files=["res://.godot/imported/tile_0143.png-9a673f8ddae254f7c9fd8a6a16f7fa9c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0144.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0144.png new file mode 100644 index 00000000..37ae6905 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0144.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0144.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0144.png.import new file mode 100644 index 00000000..c8936501 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0144.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bajqqwq3lacox" +path="res://.godot/imported/tile_0144.png-85f64bc033450ccb3a36e6cd327bae8b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0144.png" +dest_files=["res://.godot/imported/tile_0144.png-85f64bc033450ccb3a36e6cd327bae8b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0145.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0145.png new file mode 100644 index 00000000..32c99067 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0145.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0145.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0145.png.import new file mode 100644 index 00000000..61ec7113 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0145.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgvt7bpds3bi4" +path="res://.godot/imported/tile_0145.png-827ac6f4f0b454216562d46333659210.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0145.png" +dest_files=["res://.godot/imported/tile_0145.png-827ac6f4f0b454216562d46333659210.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0146.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0146.png new file mode 100644 index 00000000..50d1f3fb Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0146.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0146.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0146.png.import new file mode 100644 index 00000000..08980f85 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0146.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r6f1rdkhjgg3" +path="res://.godot/imported/tile_0146.png-1bd9e10023114a9ea7667309d9c10330.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0146.png" +dest_files=["res://.godot/imported/tile_0146.png-1bd9e10023114a9ea7667309d9c10330.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0147.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0147.png new file mode 100644 index 00000000..2e22136d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0147.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0147.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0147.png.import new file mode 100644 index 00000000..aeb62204 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0147.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4i0opp5qpttj" +path="res://.godot/imported/tile_0147.png-161d62d12deaac965ce2e41ba974c5e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0147.png" +dest_files=["res://.godot/imported/tile_0147.png-161d62d12deaac965ce2e41ba974c5e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0148.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0148.png new file mode 100644 index 00000000..b80e40af Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0148.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0148.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0148.png.import new file mode 100644 index 00000000..90d1c1d4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0148.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wnqsa7bm1v4h" +path="res://.godot/imported/tile_0148.png-72963e35ea955812e91fe2181b5f3488.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0148.png" +dest_files=["res://.godot/imported/tile_0148.png-72963e35ea955812e91fe2181b5f3488.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0149.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0149.png new file mode 100644 index 00000000..48ce6d72 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0149.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0149.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0149.png.import new file mode 100644 index 00000000..4e5d2d45 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0149.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do6rwhspsvhsa" +path="res://.godot/imported/tile_0149.png-d0a67f8aaf8598cb1e4a43d633e7df5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0149.png" +dest_files=["res://.godot/imported/tile_0149.png-d0a67f8aaf8598cb1e4a43d633e7df5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0150.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0150.png new file mode 100644 index 00000000..8d75aa45 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0150.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0150.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0150.png.import new file mode 100644 index 00000000..c09f0af2 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0150.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cub3hj5swy8m5" +path="res://.godot/imported/tile_0150.png-10d3fc4dfead9a851be313ab589e19c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0150.png" +dest_files=["res://.godot/imported/tile_0150.png-10d3fc4dfead9a851be313ab589e19c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0151.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0151.png new file mode 100644 index 00000000..d709059f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0151.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0151.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0151.png.import new file mode 100644 index 00000000..bc00b9d4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0151.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db87cq42agfbn" +path="res://.godot/imported/tile_0151.png-1b025082b057488a3fc1e12c66831b81.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0151.png" +dest_files=["res://.godot/imported/tile_0151.png-1b025082b057488a3fc1e12c66831b81.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0152.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0152.png new file mode 100644 index 00000000..0846347a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0152.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0152.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0152.png.import new file mode 100644 index 00000000..519b9c28 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0152.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7eof24lg8lg2" +path="res://.godot/imported/tile_0152.png-dc5b9aac376e5d500fcb1a7e411b25b3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0152.png" +dest_files=["res://.godot/imported/tile_0152.png-dc5b9aac376e5d500fcb1a7e411b25b3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0153.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0153.png new file mode 100644 index 00000000..460711df Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0153.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0153.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0153.png.import new file mode 100644 index 00000000..dd7f1aa9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0153.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcbkr3my0h2x5" +path="res://.godot/imported/tile_0153.png-8e2926dc89d16f14f3665c50dbf18c70.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0153.png" +dest_files=["res://.godot/imported/tile_0153.png-8e2926dc89d16f14f3665c50dbf18c70.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0154.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0154.png new file mode 100644 index 00000000..48a2db7b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0154.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0154.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0154.png.import new file mode 100644 index 00000000..f1d568bc --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0154.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by0j6yddghty1" +path="res://.godot/imported/tile_0154.png-631365def73c68751c442087e40c3cc5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0154.png" +dest_files=["res://.godot/imported/tile_0154.png-631365def73c68751c442087e40c3cc5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0155.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0155.png new file mode 100644 index 00000000..a4a4856e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0155.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0155.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0155.png.import new file mode 100644 index 00000000..a494c7f3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0155.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1nvy661v2cnc" +path="res://.godot/imported/tile_0155.png-b5c472ec95ac6798036f323651515e0c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0155.png" +dest_files=["res://.godot/imported/tile_0155.png-b5c472ec95ac6798036f323651515e0c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0156.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0156.png new file mode 100644 index 00000000..192237fb Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0156.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0156.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0156.png.import new file mode 100644 index 00000000..7d6bff71 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0156.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvja1nym1tdcx" +path="res://.godot/imported/tile_0156.png-5df3b552496bd6924589327e03453fcf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0156.png" +dest_files=["res://.godot/imported/tile_0156.png-5df3b552496bd6924589327e03453fcf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0157.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0157.png new file mode 100644 index 00000000..21fc5c7d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0157.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0157.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0157.png.import new file mode 100644 index 00000000..37d72249 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0157.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jr5wnn7l8pxy" +path="res://.godot/imported/tile_0157.png-8552db1105b2a4e2e419fd468d027a29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0157.png" +dest_files=["res://.godot/imported/tile_0157.png-8552db1105b2a4e2e419fd468d027a29.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0158.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0158.png new file mode 100644 index 00000000..35676f27 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0158.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0158.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0158.png.import new file mode 100644 index 00000000..ecedf8ef --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0158.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqy0wcyq7u433" +path="res://.godot/imported/tile_0158.png-fc37686aa795d5592c9be37874b45f04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0158.png" +dest_files=["res://.godot/imported/tile_0158.png-fc37686aa795d5592c9be37874b45f04.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0159.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0159.png new file mode 100644 index 00000000..a6619d03 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0159.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0159.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0159.png.import new file mode 100644 index 00000000..20a35895 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0159.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c14k4l524illk" +path="res://.godot/imported/tile_0159.png-b7e3ecae3c1669b80dc0b85e2e38a7c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0159.png" +dest_files=["res://.godot/imported/tile_0159.png-b7e3ecae3c1669b80dc0b85e2e38a7c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0160.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0160.png new file mode 100644 index 00000000..c63675c4 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0160.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0160.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0160.png.import new file mode 100644 index 00000000..4883a167 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0160.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cunoc5pd4mnb7" +path="res://.godot/imported/tile_0160.png-9c9c58f514c7a56c275fd1b88e9969bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0160.png" +dest_files=["res://.godot/imported/tile_0160.png-9c9c58f514c7a56c275fd1b88e9969bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0161.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0161.png new file mode 100644 index 00000000..3ed92cc8 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0161.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0161.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0161.png.import new file mode 100644 index 00000000..08f7221c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0161.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dihc8q7ux1443" +path="res://.godot/imported/tile_0161.png-7117dfa8154e50c4fd02b5cfe9dfdd2b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0161.png" +dest_files=["res://.godot/imported/tile_0161.png-7117dfa8154e50c4fd02b5cfe9dfdd2b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0162.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0162.png new file mode 100644 index 00000000..e652507c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0162.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0162.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0162.png.import new file mode 100644 index 00000000..f37aa3ca --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0162.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kkx3tvt4ool1" +path="res://.godot/imported/tile_0162.png-3925e28a99ef2a3a6281bc2640fee3d4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0162.png" +dest_files=["res://.godot/imported/tile_0162.png-3925e28a99ef2a3a6281bc2640fee3d4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0163.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0163.png new file mode 100644 index 00000000..27afb27d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0163.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0163.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0163.png.import new file mode 100644 index 00000000..737954be --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0163.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bngf31tpwr68c" +path="res://.godot/imported/tile_0163.png-a42941db5f0f426fb7dcf9d5a0803e00.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0163.png" +dest_files=["res://.godot/imported/tile_0163.png-a42941db5f0f426fb7dcf9d5a0803e00.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0164.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0164.png new file mode 100644 index 00000000..0df02b16 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0164.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0164.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0164.png.import new file mode 100644 index 00000000..9b3b0c59 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0164.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyfqqe86jtlnk" +path="res://.godot/imported/tile_0164.png-2e18a942e5c6ff07676a56f7cfcd3b92.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0164.png" +dest_files=["res://.godot/imported/tile_0164.png-2e18a942e5c6ff07676a56f7cfcd3b92.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0165.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0165.png new file mode 100644 index 00000000..8376eaf5 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0165.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0165.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0165.png.import new file mode 100644 index 00000000..567926b4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0165.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxayrvjplcyrc" +path="res://.godot/imported/tile_0165.png-3f47b02c7d9fe695e68466d270623f1c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0165.png" +dest_files=["res://.godot/imported/tile_0165.png-3f47b02c7d9fe695e68466d270623f1c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0166.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0166.png new file mode 100644 index 00000000..c0ea4d4f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0166.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0166.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0166.png.import new file mode 100644 index 00000000..5f0a54ed --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0166.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://co7ehmjh1kstu" +path="res://.godot/imported/tile_0166.png-9d5a43e9bff22533b0596ac3aca84dc7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0166.png" +dest_files=["res://.godot/imported/tile_0166.png-9d5a43e9bff22533b0596ac3aca84dc7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0167.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0167.png new file mode 100644 index 00000000..2c397d7c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0167.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0167.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0167.png.import new file mode 100644 index 00000000..429d2c14 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0167.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cojdeoilpdtge" +path="res://.godot/imported/tile_0167.png-840863809b121d7ab085f33ac19955bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0167.png" +dest_files=["res://.godot/imported/tile_0167.png-840863809b121d7ab085f33ac19955bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0168.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0168.png new file mode 100644 index 00000000..99e44fd1 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0168.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0168.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0168.png.import new file mode 100644 index 00000000..92eea2a8 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0168.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bf2oytbldsdkq" +path="res://.godot/imported/tile_0168.png-c5389e3a36ea11a977e5fe4b55f3e0ee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0168.png" +dest_files=["res://.godot/imported/tile_0168.png-c5389e3a36ea11a977e5fe4b55f3e0ee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0169.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0169.png new file mode 100644 index 00000000..67ad8661 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0169.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0169.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0169.png.import new file mode 100644 index 00000000..fde5f847 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0169.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cudnp7sco0hr3" +path="res://.godot/imported/tile_0169.png-5edeb233907110147f38e30acdcb6a60.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0169.png" +dest_files=["res://.godot/imported/tile_0169.png-5edeb233907110147f38e30acdcb6a60.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0170.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0170.png new file mode 100644 index 00000000..ec98f2f1 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0170.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0170.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0170.png.import new file mode 100644 index 00000000..6ad02b99 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0170.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ua5h6f6jyhi6" +path="res://.godot/imported/tile_0170.png-bb77140c0c28301e1b89cedf5fe65c5f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0170.png" +dest_files=["res://.godot/imported/tile_0170.png-bb77140c0c28301e1b89cedf5fe65c5f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0171.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0171.png new file mode 100644 index 00000000..342882d2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0171.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0171.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0171.png.import new file mode 100644 index 00000000..60ec5a49 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0171.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjw0tlaq1gdg" +path="res://.godot/imported/tile_0171.png-33bcc32d019866d5a188412440089dde.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0171.png" +dest_files=["res://.godot/imported/tile_0171.png-33bcc32d019866d5a188412440089dde.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0172.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0172.png new file mode 100644 index 00000000..e4abfe0b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0172.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0172.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0172.png.import new file mode 100644 index 00000000..974ca13d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0172.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://can3c687q3plf" +path="res://.godot/imported/tile_0172.png-856ee5472d7e315bfcc9216d1784f462.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0172.png" +dest_files=["res://.godot/imported/tile_0172.png-856ee5472d7e315bfcc9216d1784f462.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0173.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0173.png new file mode 100644 index 00000000..3be93a26 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0173.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0173.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0173.png.import new file mode 100644 index 00000000..dba650da --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0173.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m2g1ev8f1i7v" +path="res://.godot/imported/tile_0173.png-c33a0100b419aaf030e7ee5389ccbc3f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0173.png" +dest_files=["res://.godot/imported/tile_0173.png-c33a0100b419aaf030e7ee5389ccbc3f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0174.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0174.png new file mode 100644 index 00000000..e1eea0f6 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0174.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0174.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0174.png.import new file mode 100644 index 00000000..0a8582fb --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0174.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfwjd308sd4wv" +path="res://.godot/imported/tile_0174.png-448b98778ac824a29dd56565fa0fd446.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0174.png" +dest_files=["res://.godot/imported/tile_0174.png-448b98778ac824a29dd56565fa0fd446.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0175.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0175.png new file mode 100644 index 00000000..3a573833 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0175.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0175.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0175.png.import new file mode 100644 index 00000000..33322f88 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0175.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df8y3vtidgebd" +path="res://.godot/imported/tile_0175.png-6662407a7395774b61bbe31c9b6fd61f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0175.png" +dest_files=["res://.godot/imported/tile_0175.png-6662407a7395774b61bbe31c9b6fd61f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0176.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0176.png new file mode 100644 index 00000000..014eb5fc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0176.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0176.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0176.png.import new file mode 100644 index 00000000..7774eeb9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0176.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuhiolucyexqq" +path="res://.godot/imported/tile_0176.png-2553c14ab098dbb38c01fe83e7e99d72.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0176.png" +dest_files=["res://.godot/imported/tile_0176.png-2553c14ab098dbb38c01fe83e7e99d72.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0177.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0177.png new file mode 100644 index 00000000..8fe7a049 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0177.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0177.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0177.png.import new file mode 100644 index 00000000..36436a7b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0177.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yjiu0rokvkh8" +path="res://.godot/imported/tile_0177.png-688fc3f3ffe5ef1d9d1507a45e95f3eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0177.png" +dest_files=["res://.godot/imported/tile_0177.png-688fc3f3ffe5ef1d9d1507a45e95f3eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0178.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0178.png new file mode 100644 index 00000000..9c65881a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0178.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0178.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0178.png.import new file mode 100644 index 00000000..58c004ac --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0178.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3ft6q5yqte1a" +path="res://.godot/imported/tile_0178.png-2b448daf36bb629c5f627f7a308c26b3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0178.png" +dest_files=["res://.godot/imported/tile_0178.png-2b448daf36bb629c5f627f7a308c26b3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0179.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0179.png new file mode 100644 index 00000000..71adeeaf Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0179.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0179.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0179.png.import new file mode 100644 index 00000000..c9565c26 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0179.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cju15iypbfjyb" +path="res://.godot/imported/tile_0179.png-2c7c49965aa16e5976d2e7aee7d016ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0179.png" +dest_files=["res://.godot/imported/tile_0179.png-2c7c49965aa16e5976d2e7aee7d016ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0180.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0180.png new file mode 100644 index 00000000..02049bc2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0180.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0180.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0180.png.import new file mode 100644 index 00000000..d304d766 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0180.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh4x7vcg6fjrh" +path="res://.godot/imported/tile_0180.png-a6b08ca5bde1e2e358ccc90dd0aa5eca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0180.png" +dest_files=["res://.godot/imported/tile_0180.png-a6b08ca5bde1e2e358ccc90dd0aa5eca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0181.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0181.png new file mode 100644 index 00000000..0fe29dc1 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0181.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0181.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0181.png.import new file mode 100644 index 00000000..cc332cff --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0181.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0cgenpwxiyvi" +path="res://.godot/imported/tile_0181.png-ab617f224b43e823032cdcfabeba81ca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0181.png" +dest_files=["res://.godot/imported/tile_0181.png-ab617f224b43e823032cdcfabeba81ca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0182.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0182.png new file mode 100644 index 00000000..29293d9f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0182.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0182.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0182.png.import new file mode 100644 index 00000000..c9b91d01 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0182.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyen2qtiixxuc" +path="res://.godot/imported/tile_0182.png-1f43100cc81ddad4b0187c217a556730.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0182.png" +dest_files=["res://.godot/imported/tile_0182.png-1f43100cc81ddad4b0187c217a556730.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0183.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0183.png new file mode 100644 index 00000000..806f22ea Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0183.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0183.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0183.png.import new file mode 100644 index 00000000..4ed75fe3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0183.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfln8cv2nbcro" +path="res://.godot/imported/tile_0183.png-f47c1d8745d12ea2078a75ef9f059847.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0183.png" +dest_files=["res://.godot/imported/tile_0183.png-f47c1d8745d12ea2078a75ef9f059847.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0184.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0184.png new file mode 100644 index 00000000..b92bea9f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0184.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0184.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0184.png.import new file mode 100644 index 00000000..7f2d26b5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0184.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8xf3i36n0v1m" +path="res://.godot/imported/tile_0184.png-21c98a069c71c981ea82ae6bebdff28f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0184.png" +dest_files=["res://.godot/imported/tile_0184.png-21c98a069c71c981ea82ae6bebdff28f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0185.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0185.png new file mode 100644 index 00000000..f4492c11 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0185.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0185.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0185.png.import new file mode 100644 index 00000000..4b1fcd4e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0185.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gy28psddnold" +path="res://.godot/imported/tile_0185.png-6507c08c9ffd0478a0b0e0aae9a764d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0185.png" +dest_files=["res://.godot/imported/tile_0185.png-6507c08c9ffd0478a0b0e0aae9a764d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0186.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0186.png new file mode 100644 index 00000000..3d763354 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0186.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0186.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0186.png.import new file mode 100644 index 00000000..b707a841 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0186.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvlod532mqn6j" +path="res://.godot/imported/tile_0186.png-d85246a24635875de40496ec8d67fbdc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0186.png" +dest_files=["res://.godot/imported/tile_0186.png-d85246a24635875de40496ec8d67fbdc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0187.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0187.png new file mode 100644 index 00000000..7482062f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0187.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0187.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0187.png.import new file mode 100644 index 00000000..204d3009 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0187.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chm878n7xdyum" +path="res://.godot/imported/tile_0187.png-959aaf5fc51a86f3ed69239fb2237f1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0187.png" +dest_files=["res://.godot/imported/tile_0187.png-959aaf5fc51a86f3ed69239fb2237f1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0188.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0188.png new file mode 100644 index 00000000..999e5fb3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0188.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0188.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0188.png.import new file mode 100644 index 00000000..cb49bbcb --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0188.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dixhdqg2lk5lc" +path="res://.godot/imported/tile_0188.png-b9b8ae25b95f6fcd25e715bb0dbbfa5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0188.png" +dest_files=["res://.godot/imported/tile_0188.png-b9b8ae25b95f6fcd25e715bb0dbbfa5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0189.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0189.png new file mode 100644 index 00000000..3ad0174b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0189.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0189.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0189.png.import new file mode 100644 index 00000000..7021fc8b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0189.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df17ht3km3jjy" +path="res://.godot/imported/tile_0189.png-dcca355fa88baa9456dcf8450fca0b7d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0189.png" +dest_files=["res://.godot/imported/tile_0189.png-dcca355fa88baa9456dcf8450fca0b7d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0190.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0190.png new file mode 100644 index 00000000..999e5fb3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0190.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0190.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0190.png.import new file mode 100644 index 00000000..8e877d3d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0190.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8yu1odrv1603" +path="res://.godot/imported/tile_0190.png-a5ab85082f875880cd971b65c70fff9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0190.png" +dest_files=["res://.godot/imported/tile_0190.png-a5ab85082f875880cd971b65c70fff9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0191.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0191.png new file mode 100644 index 00000000..94e9fda9 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0191.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0191.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0191.png.import new file mode 100644 index 00000000..07847ba0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0191.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5611oeuve30k" +path="res://.godot/imported/tile_0191.png-c3aa692cc37cd14e0a8bf8ab7485b98f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0191.png" +dest_files=["res://.godot/imported/tile_0191.png-c3aa692cc37cd14e0a8bf8ab7485b98f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0192.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0192.png new file mode 100644 index 00000000..999e5fb3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0192.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0192.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0192.png.import new file mode 100644 index 00000000..3b972ee6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0192.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://la0w7euanb7t" +path="res://.godot/imported/tile_0192.png-e6d57f8806c1e990564d3ed326b31b09.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0192.png" +dest_files=["res://.godot/imported/tile_0192.png-e6d57f8806c1e990564d3ed326b31b09.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0193.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0193.png new file mode 100644 index 00000000..6da1df6a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0193.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0193.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0193.png.import new file mode 100644 index 00000000..7fc02029 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0193.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6l0ymt7311aw" +path="res://.godot/imported/tile_0193.png-17d7c86d200f39499396865581192929.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0193.png" +dest_files=["res://.godot/imported/tile_0193.png-17d7c86d200f39499396865581192929.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0194.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0194.png new file mode 100644 index 00000000..999e5fb3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0194.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0194.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0194.png.import new file mode 100644 index 00000000..30022249 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0194.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjfodhls7slgf" +path="res://.godot/imported/tile_0194.png-4786984db9ef3aa4dcf31014cca91999.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0194.png" +dest_files=["res://.godot/imported/tile_0194.png-4786984db9ef3aa4dcf31014cca91999.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0195.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0195.png new file mode 100644 index 00000000..717255be Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0195.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0195.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0195.png.import new file mode 100644 index 00000000..21cb3f65 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0195.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nymes4urpa52" +path="res://.godot/imported/tile_0195.png-20d74baf2713d360081e1f966f9ff36f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0195.png" +dest_files=["res://.godot/imported/tile_0195.png-20d74baf2713d360081e1f966f9ff36f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0196.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0196.png new file mode 100644 index 00000000..999e5fb3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0196.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0196.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0196.png.import new file mode 100644 index 00000000..bf2ae2d4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0196.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1wm3aat4fit6" +path="res://.godot/imported/tile_0196.png-bebe36be92d7322c5090f3a3ccc2b200.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0196.png" +dest_files=["res://.godot/imported/tile_0196.png-bebe36be92d7322c5090f3a3ccc2b200.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0197.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0197.png new file mode 100644 index 00000000..212daecd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0197.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0197.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0197.png.import new file mode 100644 index 00000000..d73c9a89 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0197.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnn0pkj3logq8" +path="res://.godot/imported/tile_0197.png-370ce20a125a2f972c1c1dfce2f37520.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0197.png" +dest_files=["res://.godot/imported/tile_0197.png-370ce20a125a2f972c1c1dfce2f37520.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0198.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0198.png new file mode 100644 index 00000000..1fe5b1b3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0198.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0198.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0198.png.import new file mode 100644 index 00000000..9a146dc3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0198.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bquhg7567dl1o" +path="res://.godot/imported/tile_0198.png-ad2d251cf0aa92e28c3ee0073354283a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0198.png" +dest_files=["res://.godot/imported/tile_0198.png-ad2d251cf0aa92e28c3ee0073354283a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0199.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0199.png new file mode 100644 index 00000000..efb0b219 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0199.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0199.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0199.png.import new file mode 100644 index 00000000..9ad87583 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0199.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbol6tq8wtasg" +path="res://.godot/imported/tile_0199.png-8abddb5c64492bf90c8848e625047584.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0199.png" +dest_files=["res://.godot/imported/tile_0199.png-8abddb5c64492bf90c8848e625047584.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0200.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0200.png new file mode 100644 index 00000000..ec4094f7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0200.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0200.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0200.png.import new file mode 100644 index 00000000..59283bdc --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0200.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bigvqs021k2oy" +path="res://.godot/imported/tile_0200.png-737eca7a0bf00fdff783aaae2fbc93b4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0200.png" +dest_files=["res://.godot/imported/tile_0200.png-737eca7a0bf00fdff783aaae2fbc93b4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0201.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0201.png new file mode 100644 index 00000000..0540be5e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0201.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0201.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0201.png.import new file mode 100644 index 00000000..e8b808c1 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0201.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df2khceblr647" +path="res://.godot/imported/tile_0201.png-025361a0c22c2ece7ee28ce615184bca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0201.png" +dest_files=["res://.godot/imported/tile_0201.png-025361a0c22c2ece7ee28ce615184bca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0202.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0202.png new file mode 100644 index 00000000..e743ed7c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0202.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0202.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0202.png.import new file mode 100644 index 00000000..8bc30f3c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0202.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4i82ypoxsn3f" +path="res://.godot/imported/tile_0202.png-2ad1f252fe80a4fa851e71cbf5c3037f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0202.png" +dest_files=["res://.godot/imported/tile_0202.png-2ad1f252fe80a4fa851e71cbf5c3037f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0203.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0203.png new file mode 100644 index 00000000..0e3bd51c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0203.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0203.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0203.png.import new file mode 100644 index 00000000..f66208b6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0203.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cktwroeadj5ro" +path="res://.godot/imported/tile_0203.png-d1d95fed07e87f09a3786cc378e5b7a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0203.png" +dest_files=["res://.godot/imported/tile_0203.png-d1d95fed07e87f09a3786cc378e5b7a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0204.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0204.png new file mode 100644 index 00000000..216555d3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0204.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0204.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0204.png.import new file mode 100644 index 00000000..33a886fb --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0204.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vq11kvfj76rn" +path="res://.godot/imported/tile_0204.png-d9c260bd7af998e7c55fbe4fcd875299.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0204.png" +dest_files=["res://.godot/imported/tile_0204.png-d9c260bd7af998e7c55fbe4fcd875299.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0205.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0205.png new file mode 100644 index 00000000..2e6624dd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0205.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0205.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0205.png.import new file mode 100644 index 00000000..966336ff --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0205.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djk5ub2lye24y" +path="res://.godot/imported/tile_0205.png-e9b159322b80908085d373cbcbd98423.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0205.png" +dest_files=["res://.godot/imported/tile_0205.png-e9b159322b80908085d373cbcbd98423.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0206.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0206.png new file mode 100644 index 00000000..d760e91f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0206.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0206.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0206.png.import new file mode 100644 index 00000000..ea80a63c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0206.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw20hpkkexmq5" +path="res://.godot/imported/tile_0206.png-8efe8a7a715f087778cffaa5017028b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0206.png" +dest_files=["res://.godot/imported/tile_0206.png-8efe8a7a715f087778cffaa5017028b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0207.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0207.png new file mode 100644 index 00000000..7c325189 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0207.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0207.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0207.png.import new file mode 100644 index 00000000..88ba53ec --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0207.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4gjquh6chp5x" +path="res://.godot/imported/tile_0207.png-e11d65304cdd3567d00c0927d3a1f0b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0207.png" +dest_files=["res://.godot/imported/tile_0207.png-e11d65304cdd3567d00c0927d3a1f0b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0208.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0208.png new file mode 100644 index 00000000..5b2cabf9 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0208.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0208.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0208.png.import new file mode 100644 index 00000000..ac5d79f1 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0208.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csnvce5cp5o21" +path="res://.godot/imported/tile_0208.png-1f844bf99f12e407f024eac29e24288e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0208.png" +dest_files=["res://.godot/imported/tile_0208.png-1f844bf99f12e407f024eac29e24288e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0209.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0209.png new file mode 100644 index 00000000..dda4c097 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0209.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0209.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0209.png.import new file mode 100644 index 00000000..e0fa93f7 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0209.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7dghrcdp2ib" +path="res://.godot/imported/tile_0209.png-d088130119c8d1a31a4f05c1df57f81e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0209.png" +dest_files=["res://.godot/imported/tile_0209.png-d088130119c8d1a31a4f05c1df57f81e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0210.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0210.png new file mode 100644 index 00000000..56d7435e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0210.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0210.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0210.png.import new file mode 100644 index 00000000..98ef9000 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0210.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdou4g7tj3x0f" +path="res://.godot/imported/tile_0210.png-fd2fb6901d72f04e35a28a5f277e7e2f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0210.png" +dest_files=["res://.godot/imported/tile_0210.png-fd2fb6901d72f04e35a28a5f277e7e2f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0211.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0211.png new file mode 100644 index 00000000..8843815f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0211.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0211.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0211.png.import new file mode 100644 index 00000000..7e72f1f5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0211.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb5vsuigi0gda" +path="res://.godot/imported/tile_0211.png-705501584de6c049eb13f67d5bf95faa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0211.png" +dest_files=["res://.godot/imported/tile_0211.png-705501584de6c049eb13f67d5bf95faa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0212.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0212.png new file mode 100644 index 00000000..a828cdcb Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0212.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0212.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0212.png.import new file mode 100644 index 00000000..e54cec67 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0212.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gk3lmlbwke08" +path="res://.godot/imported/tile_0212.png-d8d12c5469e5f4b7d9d8de48aacc847b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0212.png" +dest_files=["res://.godot/imported/tile_0212.png-d8d12c5469e5f4b7d9d8de48aacc847b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0213.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0213.png new file mode 100644 index 00000000..e0471c88 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0213.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0213.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0213.png.import new file mode 100644 index 00000000..8fca1d77 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0213.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm85h5r4t7q5a" +path="res://.godot/imported/tile_0213.png-678a1255232a77e4a36784012c0c0b54.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0213.png" +dest_files=["res://.godot/imported/tile_0213.png-678a1255232a77e4a36784012c0c0b54.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0214.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0214.png new file mode 100644 index 00000000..1e8ed4c2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0214.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0214.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0214.png.import new file mode 100644 index 00000000..23d038fb --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0214.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb56d23mbaofs" +path="res://.godot/imported/tile_0214.png-0beaf68dc533eff2cad97e42d6ca040b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0214.png" +dest_files=["res://.godot/imported/tile_0214.png-0beaf68dc533eff2cad97e42d6ca040b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0215.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0215.png new file mode 100644 index 00000000..b8a4eae1 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0215.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0215.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0215.png.import new file mode 100644 index 00000000..96e344a2 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0215.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg75hp6k3fpiq" +path="res://.godot/imported/tile_0215.png-bb954fd3c9fbf2d29dbffba1c8e5cb60.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0215.png" +dest_files=["res://.godot/imported/tile_0215.png-bb954fd3c9fbf2d29dbffba1c8e5cb60.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0216.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0216.png new file mode 100644 index 00000000..584ede8c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0216.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0216.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0216.png.import new file mode 100644 index 00000000..8fb5f12c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0216.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckd0s5plti73i" +path="res://.godot/imported/tile_0216.png-60f28a2de6854972f3b7f67d24384cad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0216.png" +dest_files=["res://.godot/imported/tile_0216.png-60f28a2de6854972f3b7f67d24384cad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0217.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0217.png new file mode 100644 index 00000000..b5ef7ef3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0217.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0217.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0217.png.import new file mode 100644 index 00000000..ee499bda --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0217.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds8jubr6enp1i" +path="res://.godot/imported/tile_0217.png-b374d6b7b7802a3272930924ee163e6d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0217.png" +dest_files=["res://.godot/imported/tile_0217.png-b374d6b7b7802a3272930924ee163e6d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0218.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0218.png new file mode 100644 index 00000000..418109e8 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0218.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0218.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0218.png.import new file mode 100644 index 00000000..b7c0296b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0218.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba268kog5s6a0" +path="res://.godot/imported/tile_0218.png-ed331d96d51c1b220adf0138582af2fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0218.png" +dest_files=["res://.godot/imported/tile_0218.png-ed331d96d51c1b220adf0138582af2fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0219.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0219.png new file mode 100644 index 00000000..4fea1a8d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0219.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0219.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0219.png.import new file mode 100644 index 00000000..d34a06d6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0219.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cncme2o3r6rgx" +path="res://.godot/imported/tile_0219.png-f2517f8b1fd73b1b3ef0fb3882a78800.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0219.png" +dest_files=["res://.godot/imported/tile_0219.png-f2517f8b1fd73b1b3ef0fb3882a78800.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0220.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0220.png new file mode 100644 index 00000000..664a91eb Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0220.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0220.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0220.png.import new file mode 100644 index 00000000..8467c352 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0220.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr5os2k64s1ub" +path="res://.godot/imported/tile_0220.png-4b36a60442dfacb357611b0907e864bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0220.png" +dest_files=["res://.godot/imported/tile_0220.png-4b36a60442dfacb357611b0907e864bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0221.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0221.png new file mode 100644 index 00000000..c104f740 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0221.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0221.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0221.png.import new file mode 100644 index 00000000..a0015756 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0221.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmt3c06p206qh" +path="res://.godot/imported/tile_0221.png-051f1d2abce6131061af467cdea092f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0221.png" +dest_files=["res://.godot/imported/tile_0221.png-051f1d2abce6131061af467cdea092f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0222.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0222.png new file mode 100644 index 00000000..2ae69103 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0222.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0222.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0222.png.import new file mode 100644 index 00000000..1c54c924 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0222.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxis74yaed3vf" +path="res://.godot/imported/tile_0222.png-2f3c49e9fa97d501b2daa9e98baef00a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0222.png" +dest_files=["res://.godot/imported/tile_0222.png-2f3c49e9fa97d501b2daa9e98baef00a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0223.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0223.png new file mode 100644 index 00000000..5a9e7fc1 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0223.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0223.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0223.png.import new file mode 100644 index 00000000..c9584a8c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0223.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djb3eitxpfv28" +path="res://.godot/imported/tile_0223.png-766dbb7a01e3c5d0d6da5e89c39212e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0223.png" +dest_files=["res://.godot/imported/tile_0223.png-766dbb7a01e3c5d0d6da5e89c39212e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0224.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0224.png new file mode 100644 index 00000000..6f710b22 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0224.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0224.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0224.png.import new file mode 100644 index 00000000..916e2ebc --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0224.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckdql4so75hl1" +path="res://.godot/imported/tile_0224.png-2608df0cc2e55b2e3955e851ef050e42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0224.png" +dest_files=["res://.godot/imported/tile_0224.png-2608df0cc2e55b2e3955e851ef050e42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0225.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0225.png new file mode 100644 index 00000000..e6fac2a2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0225.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0225.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0225.png.import new file mode 100644 index 00000000..68dbcfff --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0225.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnhtm5pnn5qtt" +path="res://.godot/imported/tile_0225.png-82270ae6fc397604bc712484402ce11c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0225.png" +dest_files=["res://.godot/imported/tile_0225.png-82270ae6fc397604bc712484402ce11c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0226.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0226.png new file mode 100644 index 00000000..61309a59 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0226.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0226.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0226.png.import new file mode 100644 index 00000000..04082819 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0226.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbpc714iiq3yg" +path="res://.godot/imported/tile_0226.png-ac8e00ba75e76b7340767c71b7bc7c0f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0226.png" +dest_files=["res://.godot/imported/tile_0226.png-ac8e00ba75e76b7340767c71b7bc7c0f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0227.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0227.png new file mode 100644 index 00000000..dd1d2a17 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0227.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0227.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0227.png.import new file mode 100644 index 00000000..b6d68688 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0227.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j6wl6ea123gv" +path="res://.godot/imported/tile_0227.png-4cbe47565719fc5d420aa70f22b3cc18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0227.png" +dest_files=["res://.godot/imported/tile_0227.png-4cbe47565719fc5d420aa70f22b3cc18.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0228.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0228.png new file mode 100644 index 00000000..55e9b6cd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0228.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0228.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0228.png.import new file mode 100644 index 00000000..09658eb2 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0228.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbhu3livs2ixp" +path="res://.godot/imported/tile_0228.png-31dc5a429b597d8f294e986c058228bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0228.png" +dest_files=["res://.godot/imported/tile_0228.png-31dc5a429b597d8f294e986c058228bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0229.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0229.png new file mode 100644 index 00000000..acc28508 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0229.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0229.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0229.png.import new file mode 100644 index 00000000..a0ae21c0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0229.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pdda4toj5uk5" +path="res://.godot/imported/tile_0229.png-bc53942171c0c02503db3df4470da9ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0229.png" +dest_files=["res://.godot/imported/tile_0229.png-bc53942171c0c02503db3df4470da9ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0230.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0230.png new file mode 100644 index 00000000..6b8443ab Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0230.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0230.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0230.png.import new file mode 100644 index 00000000..3715260d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0230.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3chmxal670kg" +path="res://.godot/imported/tile_0230.png-a92ab8ea1015dcfeb32704cb6cfa8072.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0230.png" +dest_files=["res://.godot/imported/tile_0230.png-a92ab8ea1015dcfeb32704cb6cfa8072.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0231.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0231.png new file mode 100644 index 00000000..6e7c7f19 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0231.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0231.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0231.png.import new file mode 100644 index 00000000..de81d31c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0231.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8tao0u7smyba" +path="res://.godot/imported/tile_0231.png-24dfcc17081acb04ae765afc535dbf00.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0231.png" +dest_files=["res://.godot/imported/tile_0231.png-24dfcc17081acb04ae765afc535dbf00.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0232.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0232.png new file mode 100644 index 00000000..c28790e2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0232.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0232.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0232.png.import new file mode 100644 index 00000000..11d607be --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0232.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by3x354y22vb8" +path="res://.godot/imported/tile_0232.png-febde5b70e1602fa89b1a4d9f487c670.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0232.png" +dest_files=["res://.godot/imported/tile_0232.png-febde5b70e1602fa89b1a4d9f487c670.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0233.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0233.png new file mode 100644 index 00000000..ad4a5d12 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0233.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0233.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0233.png.import new file mode 100644 index 00000000..42afa8e0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0233.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnii5o00dyomw" +path="res://.godot/imported/tile_0233.png-9b6b9dfba03dfa61aa7652cbd683faa8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0233.png" +dest_files=["res://.godot/imported/tile_0233.png-9b6b9dfba03dfa61aa7652cbd683faa8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0234.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0234.png new file mode 100644 index 00000000..228962b5 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0234.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0234.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0234.png.import new file mode 100644 index 00000000..cc8481bd --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0234.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://63nh7s4r4c4c" +path="res://.godot/imported/tile_0234.png-645907ac8d2d8cef352fec54f8d567f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0234.png" +dest_files=["res://.godot/imported/tile_0234.png-645907ac8d2d8cef352fec54f8d567f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0235.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0235.png new file mode 100644 index 00000000..1d5893f9 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0235.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0235.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0235.png.import new file mode 100644 index 00000000..d46d33bc --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0235.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw8nif71m1v3q" +path="res://.godot/imported/tile_0235.png-3b3f4c8bf69c0aa40db99c5f5247e01f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0235.png" +dest_files=["res://.godot/imported/tile_0235.png-3b3f4c8bf69c0aa40db99c5f5247e01f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0236.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0236.png new file mode 100644 index 00000000..83f98a98 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0236.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0236.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0236.png.import new file mode 100644 index 00000000..5e14a0ff --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0236.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dp5ij2650sukv" +path="res://.godot/imported/tile_0236.png-1372cc7fbb8bace80772fa483952c461.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0236.png" +dest_files=["res://.godot/imported/tile_0236.png-1372cc7fbb8bace80772fa483952c461.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0237.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0237.png new file mode 100644 index 00000000..96eb251f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0237.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0237.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0237.png.import new file mode 100644 index 00000000..ee513c31 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0237.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmrg1kh42rnp4" +path="res://.godot/imported/tile_0237.png-083bad22c41f613b7dca15cfb13fda96.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0237.png" +dest_files=["res://.godot/imported/tile_0237.png-083bad22c41f613b7dca15cfb13fda96.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0238.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0238.png new file mode 100644 index 00000000..b53e647c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0238.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0238.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0238.png.import new file mode 100644 index 00000000..2702040b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0238.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hhl0fe8418lu" +path="res://.godot/imported/tile_0238.png-7ca35707842ad7f406211672cfbe7645.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0238.png" +dest_files=["res://.godot/imported/tile_0238.png-7ca35707842ad7f406211672cfbe7645.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0239.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0239.png new file mode 100644 index 00000000..5576e5aa Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0239.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0239.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0239.png.import new file mode 100644 index 00000000..dfb4acd7 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0239.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chvqdfpu3mmhs" +path="res://.godot/imported/tile_0239.png-8767e7ccfb90baac9da48bb331f7934d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0239.png" +dest_files=["res://.godot/imported/tile_0239.png-8767e7ccfb90baac9da48bb331f7934d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0240.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0240.png new file mode 100644 index 00000000..018d4417 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0240.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0240.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0240.png.import new file mode 100644 index 00000000..cfbd3de2 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0240.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cy24wa27jkv7a" +path="res://.godot/imported/tile_0240.png-4c00a5a2d32a88ed3ddfbb426df5beb8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0240.png" +dest_files=["res://.godot/imported/tile_0240.png-4c00a5a2d32a88ed3ddfbb426df5beb8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0241.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0241.png new file mode 100644 index 00000000..1d8e0274 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0241.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0241.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0241.png.import new file mode 100644 index 00000000..f26c9e41 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0241.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1utwg0rrlvij" +path="res://.godot/imported/tile_0241.png-1eab394351bec057d99bac551f01c90f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0241.png" +dest_files=["res://.godot/imported/tile_0241.png-1eab394351bec057d99bac551f01c90f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0242.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0242.png new file mode 100644 index 00000000..d5077888 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0242.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0242.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0242.png.import new file mode 100644 index 00000000..347f693b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0242.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bu26m08hbp8h1" +path="res://.godot/imported/tile_0242.png-800cec9275fc3bc533837194d9420ff8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0242.png" +dest_files=["res://.godot/imported/tile_0242.png-800cec9275fc3bc533837194d9420ff8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0243.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0243.png new file mode 100644 index 00000000..2d1377d3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0243.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0243.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0243.png.import new file mode 100644 index 00000000..a24f7b80 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0243.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3r21408jiy0c" +path="res://.godot/imported/tile_0243.png-0e317d0e8b2011d3c5b9e0ab07f3cc84.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0243.png" +dest_files=["res://.godot/imported/tile_0243.png-0e317d0e8b2011d3c5b9e0ab07f3cc84.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0244.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0244.png new file mode 100644 index 00000000..3787ebda Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0244.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0244.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0244.png.import new file mode 100644 index 00000000..627b67ae --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0244.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnpbew84a20r3" +path="res://.godot/imported/tile_0244.png-ba955ed267871ac17d2266ca960d9ab0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0244.png" +dest_files=["res://.godot/imported/tile_0244.png-ba955ed267871ac17d2266ca960d9ab0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0245.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0245.png new file mode 100644 index 00000000..e688e28e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0245.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0245.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0245.png.import new file mode 100644 index 00000000..b4bec513 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0245.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2ojd1p4a7k5o" +path="res://.godot/imported/tile_0245.png-b9d88b0f67da26d45490f4a5006d5b8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0245.png" +dest_files=["res://.godot/imported/tile_0245.png-b9d88b0f67da26d45490f4a5006d5b8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0246.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0246.png new file mode 100644 index 00000000..10edd406 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0246.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0246.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0246.png.import new file mode 100644 index 00000000..24ef4921 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0246.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://beojjodsmavu3" +path="res://.godot/imported/tile_0246.png-26e3aceb7d515288785aed0beb142c64.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0246.png" +dest_files=["res://.godot/imported/tile_0246.png-26e3aceb7d515288785aed0beb142c64.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0247.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0247.png new file mode 100644 index 00000000..e3c7f3ea Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0247.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0247.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0247.png.import new file mode 100644 index 00000000..893b9eb8 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0247.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j0ldwe4f6ev0" +path="res://.godot/imported/tile_0247.png-a64d52bb15265ffb34e6b16308ad8294.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0247.png" +dest_files=["res://.godot/imported/tile_0247.png-a64d52bb15265ffb34e6b16308ad8294.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0248.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0248.png new file mode 100644 index 00000000..bcd7f871 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0248.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0248.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0248.png.import new file mode 100644 index 00000000..03f1b32b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0248.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1rs253ststkw" +path="res://.godot/imported/tile_0248.png-ec4803ca1c0549618a4ea925b3641c17.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0248.png" +dest_files=["res://.godot/imported/tile_0248.png-ec4803ca1c0549618a4ea925b3641c17.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0249.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0249.png new file mode 100644 index 00000000..ea5fba31 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0249.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0249.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0249.png.import new file mode 100644 index 00000000..91f51ca0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0249.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5bmx1a5g4a2u" +path="res://.godot/imported/tile_0249.png-f77036513e61c3323ca878d900f6f069.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0249.png" +dest_files=["res://.godot/imported/tile_0249.png-f77036513e61c3323ca878d900f6f069.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0250.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0250.png new file mode 100644 index 00000000..5f352f64 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0250.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0250.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0250.png.import new file mode 100644 index 00000000..f6513631 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0250.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cckt37geuyw1k" +path="res://.godot/imported/tile_0250.png-0e6bd90bdcf4f671559c49ca92d72773.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0250.png" +dest_files=["res://.godot/imported/tile_0250.png-0e6bd90bdcf4f671559c49ca92d72773.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0251.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0251.png new file mode 100644 index 00000000..3a697dd7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0251.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0251.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0251.png.import new file mode 100644 index 00000000..f4a8c09c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0251.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3cmty4o7lchs" +path="res://.godot/imported/tile_0251.png-192ab7ca7889fbf684ffe9da5409ea82.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0251.png" +dest_files=["res://.godot/imported/tile_0251.png-192ab7ca7889fbf684ffe9da5409ea82.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0252.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0252.png new file mode 100644 index 00000000..45b0761f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0252.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0252.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0252.png.import new file mode 100644 index 00000000..82021cf4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0252.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtawa3p8jg3qm" +path="res://.godot/imported/tile_0252.png-0454efd7443fc41b905a03a6cbc13d4b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0252.png" +dest_files=["res://.godot/imported/tile_0252.png-0454efd7443fc41b905a03a6cbc13d4b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0253.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0253.png new file mode 100644 index 00000000..c2d7d354 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0253.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0253.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0253.png.import new file mode 100644 index 00000000..ed447b76 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0253.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmque55slpleu" +path="res://.godot/imported/tile_0253.png-5769666645346686e8683fea8072952e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0253.png" +dest_files=["res://.godot/imported/tile_0253.png-5769666645346686e8683fea8072952e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0254.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0254.png new file mode 100644 index 00000000..64987372 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0254.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0254.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0254.png.import new file mode 100644 index 00000000..e78661e6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0254.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqgu6xulgj2o3" +path="res://.godot/imported/tile_0254.png-b2c2c4f93882247ab841098ae4bc46df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0254.png" +dest_files=["res://.godot/imported/tile_0254.png-b2c2c4f93882247ab841098ae4bc46df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0255.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0255.png new file mode 100644 index 00000000..a2efb56f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0255.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0255.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0255.png.import new file mode 100644 index 00000000..d198048a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0255.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c71vc1c7y8135" +path="res://.godot/imported/tile_0255.png-8cac31b2d591be832b0882aeec90d786.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0255.png" +dest_files=["res://.godot/imported/tile_0255.png-8cac31b2d591be832b0882aeec90d786.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0256.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0256.png new file mode 100644 index 00000000..d8ce61e5 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0256.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0256.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0256.png.import new file mode 100644 index 00000000..8632778d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0256.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckmydsw2g631v" +path="res://.godot/imported/tile_0256.png-973ab3b711f2c448318a6b30ffec5ce4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0256.png" +dest_files=["res://.godot/imported/tile_0256.png-973ab3b711f2c448318a6b30ffec5ce4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0257.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0257.png new file mode 100644 index 00000000..8a398022 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0257.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0257.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0257.png.import new file mode 100644 index 00000000..53617d25 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0257.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbxeibsm35ewk" +path="res://.godot/imported/tile_0257.png-c6599c99211c42b984fae3ea829f3e8b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0257.png" +dest_files=["res://.godot/imported/tile_0257.png-c6599c99211c42b984fae3ea829f3e8b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0258.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0258.png new file mode 100644 index 00000000..cfb4b3fb Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0258.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0258.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0258.png.import new file mode 100644 index 00000000..a1a88918 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0258.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmgd6rskkxvlc" +path="res://.godot/imported/tile_0258.png-6630bdfa5527f3bd63136b18abcbba0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0258.png" +dest_files=["res://.godot/imported/tile_0258.png-6630bdfa5527f3bd63136b18abcbba0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0259.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0259.png new file mode 100644 index 00000000..68dc4d89 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0259.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0259.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0259.png.import new file mode 100644 index 00000000..382b1202 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0259.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cse23qdq6n8wy" +path="res://.godot/imported/tile_0259.png-7b6fec28ed80880479af42595bf1c38e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0259.png" +dest_files=["res://.godot/imported/tile_0259.png-7b6fec28ed80880479af42595bf1c38e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0260.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0260.png new file mode 100644 index 00000000..2f871bc4 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0260.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0260.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0260.png.import new file mode 100644 index 00000000..aa51e7b8 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0260.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0ugtayxbuc2j" +path="res://.godot/imported/tile_0260.png-953a8420e169f098dbd0ddd57901d030.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0260.png" +dest_files=["res://.godot/imported/tile_0260.png-953a8420e169f098dbd0ddd57901d030.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0261.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0261.png new file mode 100644 index 00000000..8d712fdc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0261.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0261.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0261.png.import new file mode 100644 index 00000000..cf7ace2d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0261.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6uanqe0midp" +path="res://.godot/imported/tile_0261.png-656213596ec5be9fb080440bde5517d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0261.png" +dest_files=["res://.godot/imported/tile_0261.png-656213596ec5be9fb080440bde5517d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0262.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0262.png new file mode 100644 index 00000000..4dcd496d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0262.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0262.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0262.png.import new file mode 100644 index 00000000..3eec3da3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0262.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds8shhx2x7qnn" +path="res://.godot/imported/tile_0262.png-9aa7a28b00a41602c727ed2679c157d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0262.png" +dest_files=["res://.godot/imported/tile_0262.png-9aa7a28b00a41602c727ed2679c157d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0263.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0263.png new file mode 100644 index 00000000..589b244a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0263.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0263.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0263.png.import new file mode 100644 index 00000000..16b9deef --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0263.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d36sdi7ar8w48" +path="res://.godot/imported/tile_0263.png-579cce7c2d4dba2908afef6ba84f3e99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0263.png" +dest_files=["res://.godot/imported/tile_0263.png-579cce7c2d4dba2908afef6ba84f3e99.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0264.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0264.png new file mode 100644 index 00000000..67b39da8 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0264.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0264.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0264.png.import new file mode 100644 index 00000000..5527a3f4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0264.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0113rnw0uqnc" +path="res://.godot/imported/tile_0264.png-41307a15222e71e3e64c0ff2a7ee0022.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0264.png" +dest_files=["res://.godot/imported/tile_0264.png-41307a15222e71e3e64c0ff2a7ee0022.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0265.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0265.png new file mode 100644 index 00000000..ebdb8a5d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0265.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0265.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0265.png.import new file mode 100644 index 00000000..43b8ada1 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0265.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwhw34vrqpslh" +path="res://.godot/imported/tile_0265.png-b50ad4a9d46e2b2d39adf918069c3ccc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0265.png" +dest_files=["res://.godot/imported/tile_0265.png-b50ad4a9d46e2b2d39adf918069c3ccc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0266.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0266.png new file mode 100644 index 00000000..de218d73 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0266.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0266.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0266.png.import new file mode 100644 index 00000000..ceb55cfd --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0266.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlclc1bnr4ohd" +path="res://.godot/imported/tile_0266.png-4714593b83f7a97ebaf5e4b11cd3efc1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0266.png" +dest_files=["res://.godot/imported/tile_0266.png-4714593b83f7a97ebaf5e4b11cd3efc1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0267.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0267.png new file mode 100644 index 00000000..d9dea7f3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0267.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0267.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0267.png.import new file mode 100644 index 00000000..256c224d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0267.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://emu78mll1rkf" +path="res://.godot/imported/tile_0267.png-652258b34d8c8c3978e305e8efac03f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0267.png" +dest_files=["res://.godot/imported/tile_0267.png-652258b34d8c8c3978e305e8efac03f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0268.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0268.png new file mode 100644 index 00000000..0f8caeb1 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0268.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0268.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0268.png.import new file mode 100644 index 00000000..166815db --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0268.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2n2m6bdtl3gm" +path="res://.godot/imported/tile_0268.png-571657d18b45d970fcc9769ebff91472.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0268.png" +dest_files=["res://.godot/imported/tile_0268.png-571657d18b45d970fcc9769ebff91472.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0269.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0269.png new file mode 100644 index 00000000..a69cc0f2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0269.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0269.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0269.png.import new file mode 100644 index 00000000..de24f268 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0269.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0e8d8t50ixdm" +path="res://.godot/imported/tile_0269.png-b3962e2d1a51e02b8447c3d0d3c98c5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0269.png" +dest_files=["res://.godot/imported/tile_0269.png-b3962e2d1a51e02b8447c3d0d3c98c5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0270.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0270.png new file mode 100644 index 00000000..9a0ca8d3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0270.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0270.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0270.png.import new file mode 100644 index 00000000..55a34dfb --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0270.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5o0yiylwfq0t" +path="res://.godot/imported/tile_0270.png-d453f5063e253678debc0424b3544a3f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0270.png" +dest_files=["res://.godot/imported/tile_0270.png-d453f5063e253678debc0424b3544a3f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0271.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0271.png new file mode 100644 index 00000000..c8618b14 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0271.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0271.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0271.png.import new file mode 100644 index 00000000..735af6e9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0271.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mjwbmnig0blw" +path="res://.godot/imported/tile_0271.png-20f3088ff44d5634ade8249c2d8a5a37.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0271.png" +dest_files=["res://.godot/imported/tile_0271.png-20f3088ff44d5634ade8249c2d8a5a37.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0272.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0272.png new file mode 100644 index 00000000..e7b2464f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0272.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0272.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0272.png.import new file mode 100644 index 00000000..a1f0f2c2 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0272.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjumv8kwnjgpy" +path="res://.godot/imported/tile_0272.png-3d7b4d470659581ef09b5858d9a124c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0272.png" +dest_files=["res://.godot/imported/tile_0272.png-3d7b4d470659581ef09b5858d9a124c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0273.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0273.png new file mode 100644 index 00000000..674bab03 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0273.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0273.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0273.png.import new file mode 100644 index 00000000..9dd394d6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0273.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccjxxvraeb8p6" +path="res://.godot/imported/tile_0273.png-5c1e4c50f8857a7a1cb9605bfa19c787.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0273.png" +dest_files=["res://.godot/imported/tile_0273.png-5c1e4c50f8857a7a1cb9605bfa19c787.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0274.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0274.png new file mode 100644 index 00000000..857fc463 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0274.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0274.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0274.png.import new file mode 100644 index 00000000..ddceecdc --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0274.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doi5kt7yl25xr" +path="res://.godot/imported/tile_0274.png-162ff4f9910d6e6a507db73b01601d67.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0274.png" +dest_files=["res://.godot/imported/tile_0274.png-162ff4f9910d6e6a507db73b01601d67.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0275.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0275.png new file mode 100644 index 00000000..1516ba57 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0275.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0275.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0275.png.import new file mode 100644 index 00000000..d38fa579 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0275.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r68nmk7w31bd" +path="res://.godot/imported/tile_0275.png-143aa0c48271f24d9bbf8206d787a4bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0275.png" +dest_files=["res://.godot/imported/tile_0275.png-143aa0c48271f24d9bbf8206d787a4bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0276.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0276.png new file mode 100644 index 00000000..92af0841 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0276.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0276.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0276.png.import new file mode 100644 index 00000000..4acc2643 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0276.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck02jj8rwanw" +path="res://.godot/imported/tile_0276.png-100a3247e34f21787c86e757ac568f32.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0276.png" +dest_files=["res://.godot/imported/tile_0276.png-100a3247e34f21787c86e757ac568f32.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0277.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0277.png new file mode 100644 index 00000000..bcd5ef3c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0277.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0277.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0277.png.import new file mode 100644 index 00000000..b047aebe --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0277.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc4gulb8qglpt" +path="res://.godot/imported/tile_0277.png-6237e3088ae0d114d1f1c08e0a1bb73f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0277.png" +dest_files=["res://.godot/imported/tile_0277.png-6237e3088ae0d114d1f1c08e0a1bb73f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0278.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0278.png new file mode 100644 index 00000000..744ac4e7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0278.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0278.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0278.png.import new file mode 100644 index 00000000..ca00870c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0278.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxy8tamqxh88g" +path="res://.godot/imported/tile_0278.png-4381dd4032b946cc46dc7c6d6a79116c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0278.png" +dest_files=["res://.godot/imported/tile_0278.png-4381dd4032b946cc46dc7c6d6a79116c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0279.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0279.png new file mode 100644 index 00000000..e688e28e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0279.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0279.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0279.png.import new file mode 100644 index 00000000..01edd0a9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0279.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s4v2wosh3fd4" +path="res://.godot/imported/tile_0279.png-6872bebdf6491cbbd0bb84247853227b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0279.png" +dest_files=["res://.godot/imported/tile_0279.png-6872bebdf6491cbbd0bb84247853227b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0280.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0280.png new file mode 100644 index 00000000..ecbb7572 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0280.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0280.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0280.png.import new file mode 100644 index 00000000..302784fd --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0280.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj5cqx4hbvoh7" +path="res://.godot/imported/tile_0280.png-11ebcd727ed25fe62aa87c2c9d2eeb10.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0280.png" +dest_files=["res://.godot/imported/tile_0280.png-11ebcd727ed25fe62aa87c2c9d2eeb10.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0281.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0281.png new file mode 100644 index 00000000..08117bcb Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0281.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0281.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0281.png.import new file mode 100644 index 00000000..0f515b30 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0281.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsugi8vawncxr" +path="res://.godot/imported/tile_0281.png-1c68a4bfd2a48e6964e882a99557bc86.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0281.png" +dest_files=["res://.godot/imported/tile_0281.png-1c68a4bfd2a48e6964e882a99557bc86.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0282.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0282.png new file mode 100644 index 00000000..c806cd17 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0282.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0282.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0282.png.import new file mode 100644 index 00000000..444b7add --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0282.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds7j7r0b4nx88" +path="res://.godot/imported/tile_0282.png-720b8acdc621b6274352b669e662b49c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0282.png" +dest_files=["res://.godot/imported/tile_0282.png-720b8acdc621b6274352b669e662b49c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0283.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0283.png new file mode 100644 index 00000000..a6ec1068 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0283.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0283.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0283.png.import new file mode 100644 index 00000000..b15a9890 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0283.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dteg3muw2k3nn" +path="res://.godot/imported/tile_0283.png-8b4be6cbc1301c01fd371abb45f24253.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0283.png" +dest_files=["res://.godot/imported/tile_0283.png-8b4be6cbc1301c01fd371abb45f24253.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0284.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0284.png new file mode 100644 index 00000000..4a5c03db Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0284.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0284.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0284.png.import new file mode 100644 index 00000000..343898e8 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0284.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bui611m3no5f" +path="res://.godot/imported/tile_0284.png-717b8907147753f37b28a3182f804725.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0284.png" +dest_files=["res://.godot/imported/tile_0284.png-717b8907147753f37b28a3182f804725.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0285.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0285.png new file mode 100644 index 00000000..844beaa2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0285.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0285.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0285.png.import new file mode 100644 index 00000000..746b2b8e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0285.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bta3stn0rp8j6" +path="res://.godot/imported/tile_0285.png-7c2393a538d49b3d50a74256db9f1ae0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0285.png" +dest_files=["res://.godot/imported/tile_0285.png-7c2393a538d49b3d50a74256db9f1ae0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0286.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0286.png new file mode 100644 index 00000000..11b34b7a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0286.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0286.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0286.png.import new file mode 100644 index 00000000..57d1a9a3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0286.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c14100piqby8q" +path="res://.godot/imported/tile_0286.png-74ca7aeb2f45bbf8bd8f0a0a3b60905b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0286.png" +dest_files=["res://.godot/imported/tile_0286.png-74ca7aeb2f45bbf8bd8f0a0a3b60905b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0287.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0287.png new file mode 100644 index 00000000..dbc41089 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0287.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0287.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0287.png.import new file mode 100644 index 00000000..f31277a1 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0287.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wuficn1vrnne" +path="res://.godot/imported/tile_0287.png-b52ce924bec8cc9d8637a0cea87dacaf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0287.png" +dest_files=["res://.godot/imported/tile_0287.png-b52ce924bec8cc9d8637a0cea87dacaf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0288.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0288.png new file mode 100644 index 00000000..107b1854 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0288.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0288.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0288.png.import new file mode 100644 index 00000000..f046f8ea --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0288.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rcioklf0ca2o" +path="res://.godot/imported/tile_0288.png-a98f418f148de1060f0f7ab860a1e424.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0288.png" +dest_files=["res://.godot/imported/tile_0288.png-a98f418f148de1060f0f7ab860a1e424.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0289.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0289.png new file mode 100644 index 00000000..437e0458 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0289.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0289.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0289.png.import new file mode 100644 index 00000000..9459b2df --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0289.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duky51exalbpw" +path="res://.godot/imported/tile_0289.png-a73f9940753b1a6649bc08a0ec930b5a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0289.png" +dest_files=["res://.godot/imported/tile_0289.png-a73f9940753b1a6649bc08a0ec930b5a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0290.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0290.png new file mode 100644 index 00000000..e5db8dcd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0290.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0290.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0290.png.import new file mode 100644 index 00000000..83cf6e8e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0290.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b018strhuynuo" +path="res://.godot/imported/tile_0290.png-9d9c1ee48a3bc81d8af5c9894f3ada64.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0290.png" +dest_files=["res://.godot/imported/tile_0290.png-9d9c1ee48a3bc81d8af5c9894f3ada64.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0291.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0291.png new file mode 100644 index 00000000..5dfa9651 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0291.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0291.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0291.png.import new file mode 100644 index 00000000..6317754f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0291.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4chhb3fskhyn" +path="res://.godot/imported/tile_0291.png-c3d195f825577278572c85a5966783ef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0291.png" +dest_files=["res://.godot/imported/tile_0291.png-c3d195f825577278572c85a5966783ef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0292.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0292.png new file mode 100644 index 00000000..76d139ac Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0292.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0292.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0292.png.import new file mode 100644 index 00000000..1d964d5f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0292.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfitkxufrqj6p" +path="res://.godot/imported/tile_0292.png-38327d14520469f518f731fc6ecfe388.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0292.png" +dest_files=["res://.godot/imported/tile_0292.png-38327d14520469f518f731fc6ecfe388.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0293.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0293.png new file mode 100644 index 00000000..2b40121e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0293.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0293.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0293.png.import new file mode 100644 index 00000000..bbf87176 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0293.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cttcn6y6dmefl" +path="res://.godot/imported/tile_0293.png-25787fe808857e5386bd733fdbee5bb8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0293.png" +dest_files=["res://.godot/imported/tile_0293.png-25787fe808857e5386bd733fdbee5bb8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0294.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0294.png new file mode 100644 index 00000000..6ea84877 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0294.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0294.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0294.png.import new file mode 100644 index 00000000..34df8124 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0294.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bma1gw73tlpit" +path="res://.godot/imported/tile_0294.png-80cece8d20c61094abe7f3acebc7e8ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0294.png" +dest_files=["res://.godot/imported/tile_0294.png-80cece8d20c61094abe7f3acebc7e8ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0295.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0295.png new file mode 100644 index 00000000..ddea86f8 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0295.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0295.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0295.png.import new file mode 100644 index 00000000..90fd4a7e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0295.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://30hoar4caeok" +path="res://.godot/imported/tile_0295.png-008f888c6f0188ad9a050369cfc005cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0295.png" +dest_files=["res://.godot/imported/tile_0295.png-008f888c6f0188ad9a050369cfc005cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0296.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0296.png new file mode 100644 index 00000000..a596aa7e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0296.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0296.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0296.png.import new file mode 100644 index 00000000..75b26a42 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0296.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqnnabrv8v042" +path="res://.godot/imported/tile_0296.png-103da0f2aed870f6c0df383f47fbf4bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0296.png" +dest_files=["res://.godot/imported/tile_0296.png-103da0f2aed870f6c0df383f47fbf4bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0297.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0297.png new file mode 100644 index 00000000..fe086ed6 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0297.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0297.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0297.png.import new file mode 100644 index 00000000..9126c1d1 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0297.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2giiaxncx5sj" +path="res://.godot/imported/tile_0297.png-f094b7d0fb4b0e0b2bb61ca0e5764edc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0297.png" +dest_files=["res://.godot/imported/tile_0297.png-f094b7d0fb4b0e0b2bb61ca0e5764edc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0298.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0298.png new file mode 100644 index 00000000..09015659 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0298.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0298.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0298.png.import new file mode 100644 index 00000000..a5456b47 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0298.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvx32mtjjrm40" +path="res://.godot/imported/tile_0298.png-970031460bff96bd54024bcdef236f9a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0298.png" +dest_files=["res://.godot/imported/tile_0298.png-970031460bff96bd54024bcdef236f9a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0299.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0299.png new file mode 100644 index 00000000..34a13b18 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0299.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0299.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0299.png.import new file mode 100644 index 00000000..155ae0b3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0299.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgt6aiccut1i4" +path="res://.godot/imported/tile_0299.png-5934ce78dcae77cd1a14093b9196d120.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0299.png" +dest_files=["res://.godot/imported/tile_0299.png-5934ce78dcae77cd1a14093b9196d120.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0300.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0300.png new file mode 100644 index 00000000..e60dbb30 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0300.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0300.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0300.png.import new file mode 100644 index 00000000..907fe0d7 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0300.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3317le517jw" +path="res://.godot/imported/tile_0300.png-de22ad1e43155a6a709c62649e6b6e6a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0300.png" +dest_files=["res://.godot/imported/tile_0300.png-de22ad1e43155a6a709c62649e6b6e6a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0301.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0301.png new file mode 100644 index 00000000..99002d87 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0301.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0301.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0301.png.import new file mode 100644 index 00000000..cd34d724 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0301.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl6qqpyqjvpow" +path="res://.godot/imported/tile_0301.png-90fff975dd2c4d7a77694202da2ccc97.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0301.png" +dest_files=["res://.godot/imported/tile_0301.png-90fff975dd2c4d7a77694202da2ccc97.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0302.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0302.png new file mode 100644 index 00000000..358bb52e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0302.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0302.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0302.png.import new file mode 100644 index 00000000..b0943fa7 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0302.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://31srelwr1wpl" +path="res://.godot/imported/tile_0302.png-863a5f0790a953b7a2669fd4a984b5d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0302.png" +dest_files=["res://.godot/imported/tile_0302.png-863a5f0790a953b7a2669fd4a984b5d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0303.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0303.png new file mode 100644 index 00000000..12fcaaa8 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0303.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0303.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0303.png.import new file mode 100644 index 00000000..859872df --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0303.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brfrhv4r2smfg" +path="res://.godot/imported/tile_0303.png-4f35c017c6c0b58ebab7a9c2113cfffb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0303.png" +dest_files=["res://.godot/imported/tile_0303.png-4f35c017c6c0b58ebab7a9c2113cfffb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0304.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0304.png new file mode 100644 index 00000000..f58d9017 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0304.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0304.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0304.png.import new file mode 100644 index 00000000..ebff3318 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0304.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b82b1brdjglok" +path="res://.godot/imported/tile_0304.png-7bc6c17c73a569ac84d32654dfb20b59.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0304.png" +dest_files=["res://.godot/imported/tile_0304.png-7bc6c17c73a569ac84d32654dfb20b59.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0305.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0305.png new file mode 100644 index 00000000..dc20f579 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0305.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0305.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0305.png.import new file mode 100644 index 00000000..f3324359 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0305.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bspwk4j0h7mwg" +path="res://.godot/imported/tile_0305.png-48391a46beffd259c424d17b3f7dbdc1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0305.png" +dest_files=["res://.godot/imported/tile_0305.png-48391a46beffd259c424d17b3f7dbdc1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0306.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0306.png new file mode 100644 index 00000000..484e4216 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0306.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0306.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0306.png.import new file mode 100644 index 00000000..c0de280a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0306.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bliia7wsfa0v8" +path="res://.godot/imported/tile_0306.png-17820285272e5cad9040c5fc4534619f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0306.png" +dest_files=["res://.godot/imported/tile_0306.png-17820285272e5cad9040c5fc4534619f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0307.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0307.png new file mode 100644 index 00000000..af9533b3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0307.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0307.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0307.png.import new file mode 100644 index 00000000..61fe9cc3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0307.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l7ijjauoxlwd" +path="res://.godot/imported/tile_0307.png-f6a7a0a29b2077b7aee31bb3c5da6837.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0307.png" +dest_files=["res://.godot/imported/tile_0307.png-f6a7a0a29b2077b7aee31bb3c5da6837.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0308.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0308.png new file mode 100644 index 00000000..1fc3292b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0308.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0308.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0308.png.import new file mode 100644 index 00000000..48158811 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0308.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qxh10cqrhv52" +path="res://.godot/imported/tile_0308.png-fb07a8c1ff96803e9b778cfc7a3097f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0308.png" +dest_files=["res://.godot/imported/tile_0308.png-fb07a8c1ff96803e9b778cfc7a3097f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0309.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0309.png new file mode 100644 index 00000000..fa79f6bc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0309.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0309.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0309.png.import new file mode 100644 index 00000000..e3da99dd --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0309.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kb6i3gsv62vf" +path="res://.godot/imported/tile_0309.png-3e0f782cd76bdf6dca8f70fd90ab48fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0309.png" +dest_files=["res://.godot/imported/tile_0309.png-3e0f782cd76bdf6dca8f70fd90ab48fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0310.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0310.png new file mode 100644 index 00000000..8a8d204e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0310.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0310.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0310.png.import new file mode 100644 index 00000000..c46c9a49 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0310.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cflsvd0jej4pk" +path="res://.godot/imported/tile_0310.png-8d0aa18d43e61a6d412b848e5d264072.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0310.png" +dest_files=["res://.godot/imported/tile_0310.png-8d0aa18d43e61a6d412b848e5d264072.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0311.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0311.png new file mode 100644 index 00000000..bc2adcc5 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0311.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0311.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0311.png.import new file mode 100644 index 00000000..c52f60c0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0311.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbkm30qcuxqkv" +path="res://.godot/imported/tile_0311.png-27f481f6187ea711e41dcd8e21f54c3b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0311.png" +dest_files=["res://.godot/imported/tile_0311.png-27f481f6187ea711e41dcd8e21f54c3b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0312.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0312.png new file mode 100644 index 00000000..e5330a85 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0312.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0312.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0312.png.import new file mode 100644 index 00000000..67232e4f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0312.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crat25ksm76cv" +path="res://.godot/imported/tile_0312.png-13074453f39b9c165f13c0c037214697.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0312.png" +dest_files=["res://.godot/imported/tile_0312.png-13074453f39b9c165f13c0c037214697.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0313.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0313.png new file mode 100644 index 00000000..fa79f6bc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0313.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0313.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0313.png.import new file mode 100644 index 00000000..e27cc4be --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0313.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4kbnwc61iusc" +path="res://.godot/imported/tile_0313.png-964e57abeb68ff627ad11805f20b5130.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0313.png" +dest_files=["res://.godot/imported/tile_0313.png-964e57abeb68ff627ad11805f20b5130.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0314.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0314.png new file mode 100644 index 00000000..eb8db249 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0314.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0314.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0314.png.import new file mode 100644 index 00000000..5dc88909 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0314.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://woshb56fdajq" +path="res://.godot/imported/tile_0314.png-d8c4fc07e24ba21330eb0b729cb53397.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0314.png" +dest_files=["res://.godot/imported/tile_0314.png-d8c4fc07e24ba21330eb0b729cb53397.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0315.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0315.png new file mode 100644 index 00000000..d7bae332 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0315.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0315.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0315.png.import new file mode 100644 index 00000000..2c7bd5e7 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0315.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfve1x8f116ep" +path="res://.godot/imported/tile_0315.png-a04a4721fbc99a0add84c03ed210ab75.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0315.png" +dest_files=["res://.godot/imported/tile_0315.png-a04a4721fbc99a0add84c03ed210ab75.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0316.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0316.png new file mode 100644 index 00000000..6077361c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0316.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0316.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0316.png.import new file mode 100644 index 00000000..f6d5ca67 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0316.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjov4i51cui1r" +path="res://.godot/imported/tile_0316.png-e58b58a2114a1b37c9bb4f711d7ce127.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0316.png" +dest_files=["res://.godot/imported/tile_0316.png-e58b58a2114a1b37c9bb4f711d7ce127.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0317.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0317.png new file mode 100644 index 00000000..6558c786 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0317.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0317.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0317.png.import new file mode 100644 index 00000000..b0ea7d09 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0317.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7o5w7b7wf0ot" +path="res://.godot/imported/tile_0317.png-da947f22a22f6e585d0817abf5d9182e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0317.png" +dest_files=["res://.godot/imported/tile_0317.png-da947f22a22f6e585d0817abf5d9182e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0318.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0318.png new file mode 100644 index 00000000..ded5139c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0318.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0318.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0318.png.import new file mode 100644 index 00000000..9ea8a79d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0318.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqxqhpp1vmr1q" +path="res://.godot/imported/tile_0318.png-2295b2914345a7114943b54399516616.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0318.png" +dest_files=["res://.godot/imported/tile_0318.png-2295b2914345a7114943b54399516616.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0319.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0319.png new file mode 100644 index 00000000..a2214e47 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0319.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0319.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0319.png.import new file mode 100644 index 00000000..8fd277df --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0319.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ecofbd720fxx" +path="res://.godot/imported/tile_0319.png-fbd85e8a5fabc6c6c023d324d694c557.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0319.png" +dest_files=["res://.godot/imported/tile_0319.png-fbd85e8a5fabc6c6c023d324d694c557.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0320.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0320.png new file mode 100644 index 00000000..34414c69 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0320.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0320.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0320.png.import new file mode 100644 index 00000000..ece2115c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0320.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do1vje4h0m2g2" +path="res://.godot/imported/tile_0320.png-bd1a34f90b49b01a5d6789781fd9965a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0320.png" +dest_files=["res://.godot/imported/tile_0320.png-bd1a34f90b49b01a5d6789781fd9965a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0321.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0321.png new file mode 100644 index 00000000..e0f4647e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0321.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0321.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0321.png.import new file mode 100644 index 00000000..3f4aa979 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0321.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw3j1hohdaybw" +path="res://.godot/imported/tile_0321.png-5c95f1b000564c5eeb09dcabdd6d2ff1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0321.png" +dest_files=["res://.godot/imported/tile_0321.png-5c95f1b000564c5eeb09dcabdd6d2ff1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0322.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0322.png new file mode 100644 index 00000000..d071144f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0322.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0322.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0322.png.import new file mode 100644 index 00000000..b4922d90 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0322.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfktb6kewdbu7" +path="res://.godot/imported/tile_0322.png-a65bb40c38337b713c8c994fc41a4a15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0322.png" +dest_files=["res://.godot/imported/tile_0322.png-a65bb40c38337b713c8c994fc41a4a15.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0323.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0323.png new file mode 100644 index 00000000..ed0110ae Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0323.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0323.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0323.png.import new file mode 100644 index 00000000..1e46564a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0323.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dghdsk0i31jnl" +path="res://.godot/imported/tile_0323.png-56d481996e0064025713ab5b974ce29d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0323.png" +dest_files=["res://.godot/imported/tile_0323.png-56d481996e0064025713ab5b974ce29d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0324.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0324.png new file mode 100644 index 00000000..8ae97e32 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0324.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0324.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0324.png.import new file mode 100644 index 00000000..1ceab863 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0324.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgkd812bno31m" +path="res://.godot/imported/tile_0324.png-0ce0e1f6bd2a2405d8f8da5408843622.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0324.png" +dest_files=["res://.godot/imported/tile_0324.png-0ce0e1f6bd2a2405d8f8da5408843622.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0325.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0325.png new file mode 100644 index 00000000..77b4f930 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0325.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0325.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0325.png.import new file mode 100644 index 00000000..da43b8c5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0325.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djekknr1kdrjx" +path="res://.godot/imported/tile_0325.png-09f78ae1a52bb4c4ba7ecb30ee50c1a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0325.png" +dest_files=["res://.godot/imported/tile_0325.png-09f78ae1a52bb4c4ba7ecb30ee50c1a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0326.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0326.png new file mode 100644 index 00000000..dbf8c4d7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0326.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0326.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0326.png.import new file mode 100644 index 00000000..8f3d2e91 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0326.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjky5etxxbdi2" +path="res://.godot/imported/tile_0326.png-63d0d2788cde60af3cf826f99a5ef4ee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0326.png" +dest_files=["res://.godot/imported/tile_0326.png-63d0d2788cde60af3cf826f99a5ef4ee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0327.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0327.png new file mode 100644 index 00000000..64ba5e38 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0327.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0327.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0327.png.import new file mode 100644 index 00000000..fb07e3cf --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0327.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drw0mo5nifeb6" +path="res://.godot/imported/tile_0327.png-36b430972b7cf7174cf0fcec36d2a41a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0327.png" +dest_files=["res://.godot/imported/tile_0327.png-36b430972b7cf7174cf0fcec36d2a41a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0328.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0328.png new file mode 100644 index 00000000..5dc24850 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0328.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0328.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0328.png.import new file mode 100644 index 00000000..d91d7fe5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0328.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jl1mx0bwtg72" +path="res://.godot/imported/tile_0328.png-509ff18a97f6a2bc86bdeb5a952fdc1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0328.png" +dest_files=["res://.godot/imported/tile_0328.png-509ff18a97f6a2bc86bdeb5a952fdc1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0329.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0329.png new file mode 100644 index 00000000..dd52f4f7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0329.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0329.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0329.png.import new file mode 100644 index 00000000..5dea3775 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0329.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dml852rn60m8w" +path="res://.godot/imported/tile_0329.png-6d89c3ce13e4ea76dfe9631b4f679601.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0329.png" +dest_files=["res://.godot/imported/tile_0329.png-6d89c3ce13e4ea76dfe9631b4f679601.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0330.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0330.png new file mode 100644 index 00000000..68850b72 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0330.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0330.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0330.png.import new file mode 100644 index 00000000..0f590134 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0330.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bij1c8na36w07" +path="res://.godot/imported/tile_0330.png-6cb27dc4b8c349c0a239b193d508a831.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0330.png" +dest_files=["res://.godot/imported/tile_0330.png-6cb27dc4b8c349c0a239b193d508a831.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0331.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0331.png new file mode 100644 index 00000000..a3f07147 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0331.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0331.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0331.png.import new file mode 100644 index 00000000..654f14a1 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0331.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mwkt54vk0fkw" +path="res://.godot/imported/tile_0331.png-6b8f6088c6b63f5d9268ecefe3bab47b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0331.png" +dest_files=["res://.godot/imported/tile_0331.png-6b8f6088c6b63f5d9268ecefe3bab47b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0332.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0332.png new file mode 100644 index 00000000..80eabcaf Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0332.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0332.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0332.png.import new file mode 100644 index 00000000..6a251376 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0332.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bobemdlr3oksn" +path="res://.godot/imported/tile_0332.png-48936de462fb09342888709dc6f4e0a1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0332.png" +dest_files=["res://.godot/imported/tile_0332.png-48936de462fb09342888709dc6f4e0a1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0333.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0333.png new file mode 100644 index 00000000..660a303c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0333.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0333.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0333.png.import new file mode 100644 index 00000000..f9f85325 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0333.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt0ewi8ikmwr7" +path="res://.godot/imported/tile_0333.png-751e5ecab36b47918e4b8420be3de4a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0333.png" +dest_files=["res://.godot/imported/tile_0333.png-751e5ecab36b47918e4b8420be3de4a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0334.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0334.png new file mode 100644 index 00000000..5bf54789 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0334.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0334.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0334.png.import new file mode 100644 index 00000000..dea693f0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0334.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://26mx5lvuym74" +path="res://.godot/imported/tile_0334.png-0f4a7340a0eee634e94976f1edcb2884.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0334.png" +dest_files=["res://.godot/imported/tile_0334.png-0f4a7340a0eee634e94976f1edcb2884.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0335.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0335.png new file mode 100644 index 00000000..3991717e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0335.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0335.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0335.png.import new file mode 100644 index 00000000..8f247fc3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0335.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c816t5rtpvbsd" +path="res://.godot/imported/tile_0335.png-5180511e9c312dd6531a37309dfe2d1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0335.png" +dest_files=["res://.godot/imported/tile_0335.png-5180511e9c312dd6531a37309dfe2d1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0336.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0336.png new file mode 100644 index 00000000..38dc15ac Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0336.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0336.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0336.png.import new file mode 100644 index 00000000..073d0672 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0336.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byufs3yftwsnj" +path="res://.godot/imported/tile_0336.png-75cb96c0fbe06986ee53995b6f5cf0b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0336.png" +dest_files=["res://.godot/imported/tile_0336.png-75cb96c0fbe06986ee53995b6f5cf0b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0337.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0337.png new file mode 100644 index 00000000..d46ef1a3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0337.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0337.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0337.png.import new file mode 100644 index 00000000..d9050a1e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0337.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dugiswhm4a0tu" +path="res://.godot/imported/tile_0337.png-4de1fbee375c1760f19a929b062018ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0337.png" +dest_files=["res://.godot/imported/tile_0337.png-4de1fbee375c1760f19a929b062018ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0338.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0338.png new file mode 100644 index 00000000..af5f21f1 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0338.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0338.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0338.png.import new file mode 100644 index 00000000..d729b712 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0338.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ip8i4qfbq5la" +path="res://.godot/imported/tile_0338.png-365b5a84ba3d9e931c772219971e138c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0338.png" +dest_files=["res://.godot/imported/tile_0338.png-365b5a84ba3d9e931c772219971e138c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0339.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0339.png new file mode 100644 index 00000000..a8db3b29 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0339.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0339.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0339.png.import new file mode 100644 index 00000000..1b97e211 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0339.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1ow0ijfdoy63" +path="res://.godot/imported/tile_0339.png-a9228762cf6d6cabf1acf99cdebab22c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0339.png" +dest_files=["res://.godot/imported/tile_0339.png-a9228762cf6d6cabf1acf99cdebab22c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0340.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0340.png new file mode 100644 index 00000000..e80a9873 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0340.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0340.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0340.png.import new file mode 100644 index 00000000..52bf9d3b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0340.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj4n5b30t2wgi" +path="res://.godot/imported/tile_0340.png-b71e9fb467300adafa4e74a512ddf2b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0340.png" +dest_files=["res://.godot/imported/tile_0340.png-b71e9fb467300adafa4e74a512ddf2b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0341.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0341.png new file mode 100644 index 00000000..fe83b78f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0341.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0341.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0341.png.import new file mode 100644 index 00000000..3114a6e3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0341.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtgh7s3xrp7kd" +path="res://.godot/imported/tile_0341.png-55a69c943970d21608f32cc48ef36518.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0341.png" +dest_files=["res://.godot/imported/tile_0341.png-55a69c943970d21608f32cc48ef36518.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0342.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0342.png new file mode 100644 index 00000000..38319a25 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0342.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0342.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0342.png.import new file mode 100644 index 00000000..17047a32 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0342.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsluk0fx2vomy" +path="res://.godot/imported/tile_0342.png-b3e19e38059f69745f2aea7ef9bf6c11.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0342.png" +dest_files=["res://.godot/imported/tile_0342.png-b3e19e38059f69745f2aea7ef9bf6c11.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0343.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0343.png new file mode 100644 index 00000000..96d1352f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0343.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0343.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0343.png.import new file mode 100644 index 00000000..06676df4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0343.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cioxltoapvlje" +path="res://.godot/imported/tile_0343.png-2a1ff803088ee20aa32b1a8e21bcd2f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0343.png" +dest_files=["res://.godot/imported/tile_0343.png-2a1ff803088ee20aa32b1a8e21bcd2f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0344.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0344.png new file mode 100644 index 00000000..8a49232f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0344.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0344.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0344.png.import new file mode 100644 index 00000000..8896d5b4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0344.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e0nu05w55rc4" +path="res://.godot/imported/tile_0344.png-33f838f0d98b31825d46b4d607feb25c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0344.png" +dest_files=["res://.godot/imported/tile_0344.png-33f838f0d98b31825d46b4d607feb25c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0345.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0345.png new file mode 100644 index 00000000..7815e341 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0345.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0345.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0345.png.import new file mode 100644 index 00000000..fbabe60e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0345.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vrc6amsxk4ir" +path="res://.godot/imported/tile_0345.png-670467b77115a0dd278349b931cc8b29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0345.png" +dest_files=["res://.godot/imported/tile_0345.png-670467b77115a0dd278349b931cc8b29.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0346.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0346.png new file mode 100644 index 00000000..6cbe1f41 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0346.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0346.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0346.png.import new file mode 100644 index 00000000..e30f3e4b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0346.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmsrp5j5pd2it" +path="res://.godot/imported/tile_0346.png-817abf72ad53124987bbc23fece1b755.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0346.png" +dest_files=["res://.godot/imported/tile_0346.png-817abf72ad53124987bbc23fece1b755.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0347.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0347.png new file mode 100644 index 00000000..96d1352f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0347.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0347.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0347.png.import new file mode 100644 index 00000000..74aebc06 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0347.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq401ack8g2ui" +path="res://.godot/imported/tile_0347.png-1290dbb3d95d42b6511b182ca3b1b6be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0347.png" +dest_files=["res://.godot/imported/tile_0347.png-1290dbb3d95d42b6511b182ca3b1b6be.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0348.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0348.png new file mode 100644 index 00000000..d1c634bc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0348.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0348.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0348.png.import new file mode 100644 index 00000000..fc125669 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0348.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0w1te4k76hns" +path="res://.godot/imported/tile_0348.png-1f2da0a1a9c136f31f86596550adcaa5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0348.png" +dest_files=["res://.godot/imported/tile_0348.png-1f2da0a1a9c136f31f86596550adcaa5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0349.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0349.png new file mode 100644 index 00000000..953ce4c6 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0349.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0349.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0349.png.import new file mode 100644 index 00000000..31cbb7e5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0349.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bud47wxm20gmk" +path="res://.godot/imported/tile_0349.png-190044fd65a0d4c525a20c32c2fb0aeb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0349.png" +dest_files=["res://.godot/imported/tile_0349.png-190044fd65a0d4c525a20c32c2fb0aeb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0350.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0350.png new file mode 100644 index 00000000..f74a9a02 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0350.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0350.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0350.png.import new file mode 100644 index 00000000..b4b5e90d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0350.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cu0l1830rrisj" +path="res://.godot/imported/tile_0350.png-0bd66b2d840714a935533aa9719f6d73.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0350.png" +dest_files=["res://.godot/imported/tile_0350.png-0bd66b2d840714a935533aa9719f6d73.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0351.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0351.png new file mode 100644 index 00000000..11f388f3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0351.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0351.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0351.png.import new file mode 100644 index 00000000..2064b572 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0351.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6ns8c1blvflf" +path="res://.godot/imported/tile_0351.png-5e0d9fefa71d1b294e12903d8b77554b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0351.png" +dest_files=["res://.godot/imported/tile_0351.png-5e0d9fefa71d1b294e12903d8b77554b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0352.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0352.png new file mode 100644 index 00000000..9f5dadb5 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0352.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0352.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0352.png.import new file mode 100644 index 00000000..301bbc8f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0352.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c45xo2555oyds" +path="res://.godot/imported/tile_0352.png-62b715fba4141e8939c3b49d74a9b018.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0352.png" +dest_files=["res://.godot/imported/tile_0352.png-62b715fba4141e8939c3b49d74a9b018.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0353.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0353.png new file mode 100644 index 00000000..504eca24 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0353.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0353.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0353.png.import new file mode 100644 index 00000000..8128a243 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0353.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo830uh8etuwj" +path="res://.godot/imported/tile_0353.png-d191a3e72ab5bea4566fb02449eb644c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0353.png" +dest_files=["res://.godot/imported/tile_0353.png-d191a3e72ab5bea4566fb02449eb644c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0354.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0354.png new file mode 100644 index 00000000..4d5e4248 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0354.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0354.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0354.png.import new file mode 100644 index 00000000..3084b383 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0354.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btoekjj7x2v2v" +path="res://.godot/imported/tile_0354.png-613c99fadef7263e878aff3e20a5f572.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0354.png" +dest_files=["res://.godot/imported/tile_0354.png-613c99fadef7263e878aff3e20a5f572.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0355.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0355.png new file mode 100644 index 00000000..e07d4b42 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0355.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0355.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0355.png.import new file mode 100644 index 00000000..4e954d7f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0355.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cusdhbq0gghlp" +path="res://.godot/imported/tile_0355.png-cc04989f723c17ce3fc66c19aad43130.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0355.png" +dest_files=["res://.godot/imported/tile_0355.png-cc04989f723c17ce3fc66c19aad43130.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0356.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0356.png new file mode 100644 index 00000000..e8568f04 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0356.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0356.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0356.png.import new file mode 100644 index 00000000..a7388360 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0356.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwnmbu7k6aldr" +path="res://.godot/imported/tile_0356.png-0efdc369991dd4a16616e3fe5ae18603.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0356.png" +dest_files=["res://.godot/imported/tile_0356.png-0efdc369991dd4a16616e3fe5ae18603.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0357.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0357.png new file mode 100644 index 00000000..e202f881 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0357.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0357.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0357.png.import new file mode 100644 index 00000000..907c4b19 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0357.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://54g1frhvatms" +path="res://.godot/imported/tile_0357.png-1537d0fe8fba388318417abfe75d020e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0357.png" +dest_files=["res://.godot/imported/tile_0357.png-1537d0fe8fba388318417abfe75d020e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0358.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0358.png new file mode 100644 index 00000000..46ee0118 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0358.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0358.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0358.png.import new file mode 100644 index 00000000..df1bee62 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0358.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8ccqeuvrjdk" +path="res://.godot/imported/tile_0358.png-fdbdc8c02237112167ca2f9df4d98fcc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0358.png" +dest_files=["res://.godot/imported/tile_0358.png-fdbdc8c02237112167ca2f9df4d98fcc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0359.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0359.png new file mode 100644 index 00000000..81d76dbc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0359.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0359.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0359.png.import new file mode 100644 index 00000000..aa0e97a0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0359.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxlaspu6irkvx" +path="res://.godot/imported/tile_0359.png-59e66c53380a865cfebe1f0bf9bac6d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0359.png" +dest_files=["res://.godot/imported/tile_0359.png-59e66c53380a865cfebe1f0bf9bac6d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0360.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0360.png new file mode 100644 index 00000000..88ad1b11 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0360.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0360.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0360.png.import new file mode 100644 index 00000000..a2505472 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0360.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctvylll683jc5" +path="res://.godot/imported/tile_0360.png-4501a5bdc93739178dac8365ca98c630.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0360.png" +dest_files=["res://.godot/imported/tile_0360.png-4501a5bdc93739178dac8365ca98c630.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0361.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0361.png new file mode 100644 index 00000000..14094475 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0361.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0361.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0361.png.import new file mode 100644 index 00000000..df785173 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0361.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://craoypx3yrd62" +path="res://.godot/imported/tile_0361.png-3f282a9138e31b5ea7a2cf872dc333e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0361.png" +dest_files=["res://.godot/imported/tile_0361.png-3f282a9138e31b5ea7a2cf872dc333e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0362.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0362.png new file mode 100644 index 00000000..b88a3858 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0362.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0362.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0362.png.import new file mode 100644 index 00000000..afdbb98c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0362.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3f7xox4bxnsu" +path="res://.godot/imported/tile_0362.png-a041ce0b68fa0898af986564958a729f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0362.png" +dest_files=["res://.godot/imported/tile_0362.png-a041ce0b68fa0898af986564958a729f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0363.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0363.png new file mode 100644 index 00000000..4c4b26ea Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0363.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0363.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0363.png.import new file mode 100644 index 00000000..7a590d25 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0363.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn8oho8kfckwp" +path="res://.godot/imported/tile_0363.png-fb8f8f25c0be46401ea0bca526b4c42b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0363.png" +dest_files=["res://.godot/imported/tile_0363.png-fb8f8f25c0be46401ea0bca526b4c42b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0364.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0364.png new file mode 100644 index 00000000..912b0b6f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0364.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0364.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0364.png.import new file mode 100644 index 00000000..98cf4ab4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0364.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcv58entqkll2" +path="res://.godot/imported/tile_0364.png-99eff1abad9d7e0133c080ccd127c0f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0364.png" +dest_files=["res://.godot/imported/tile_0364.png-99eff1abad9d7e0133c080ccd127c0f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0365.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0365.png new file mode 100644 index 00000000..80eabcaf Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0365.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0365.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0365.png.import new file mode 100644 index 00000000..31b16a29 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0365.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://67h27uol5pke" +path="res://.godot/imported/tile_0365.png-ff705e3dbd1c4622b849769ff363d218.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0365.png" +dest_files=["res://.godot/imported/tile_0365.png-ff705e3dbd1c4622b849769ff363d218.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0366.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0366.png new file mode 100644 index 00000000..7b79bc68 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0366.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0366.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0366.png.import new file mode 100644 index 00000000..0b0b0593 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0366.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxhk3qio1xhgd" +path="res://.godot/imported/tile_0366.png-2bfc571069a45a986cb0531ccf785dee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0366.png" +dest_files=["res://.godot/imported/tile_0366.png-2bfc571069a45a986cb0531ccf785dee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0367.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0367.png new file mode 100644 index 00000000..599cd9fa Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0367.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0367.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0367.png.import new file mode 100644 index 00000000..775617e3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0367.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqp0pevm7hpb8" +path="res://.godot/imported/tile_0367.png-380a8b23d342544ac70d1c59774672d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0367.png" +dest_files=["res://.godot/imported/tile_0367.png-380a8b23d342544ac70d1c59774672d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0368.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0368.png new file mode 100644 index 00000000..9e7c525a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0368.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0368.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0368.png.import new file mode 100644 index 00000000..d5b07c10 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0368.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl1bmcu5p7gnm" +path="res://.godot/imported/tile_0368.png-eab3472c8b0520c9b92f7c1f3bfa520c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0368.png" +dest_files=["res://.godot/imported/tile_0368.png-eab3472c8b0520c9b92f7c1f3bfa520c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0369.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0369.png new file mode 100644 index 00000000..fa6d307c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0369.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0369.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0369.png.import new file mode 100644 index 00000000..abd8927e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0369.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5jtnmecribnq" +path="res://.godot/imported/tile_0369.png-afad522c0457f9f0e2e8ce3660de9516.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0369.png" +dest_files=["res://.godot/imported/tile_0369.png-afad522c0457f9f0e2e8ce3660de9516.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0370.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0370.png new file mode 100644 index 00000000..e1881e83 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0370.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0370.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0370.png.import new file mode 100644 index 00000000..93fca92c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0370.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg4po2ct1pp2f" +path="res://.godot/imported/tile_0370.png-fe5dcaf9c67434228decb02a1edbbba9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0370.png" +dest_files=["res://.godot/imported/tile_0370.png-fe5dcaf9c67434228decb02a1edbbba9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0371.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0371.png new file mode 100644 index 00000000..77eb94d2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0371.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0371.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0371.png.import new file mode 100644 index 00000000..37e4758c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0371.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvf0dh8h336mj" +path="res://.godot/imported/tile_0371.png-624b356ce26dea16b070e9b02e542531.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0371.png" +dest_files=["res://.godot/imported/tile_0371.png-624b356ce26dea16b070e9b02e542531.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0372.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0372.png new file mode 100644 index 00000000..b6bc4262 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0372.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0372.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0372.png.import new file mode 100644 index 00000000..33b32195 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0372.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qe4ni4nm7fi" +path="res://.godot/imported/tile_0372.png-aff4b30bf6166da2d11b5334130deb25.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0372.png" +dest_files=["res://.godot/imported/tile_0372.png-aff4b30bf6166da2d11b5334130deb25.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0373.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0373.png new file mode 100644 index 00000000..a252d2e9 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0373.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0373.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0373.png.import new file mode 100644 index 00000000..e7f9c3d3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0373.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://calw0afs8wbnf" +path="res://.godot/imported/tile_0373.png-2e463b37bfc36b28bc7b8801d5a6e1f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0373.png" +dest_files=["res://.godot/imported/tile_0373.png-2e463b37bfc36b28bc7b8801d5a6e1f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0374.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0374.png new file mode 100644 index 00000000..5ba0a8c2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0374.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0374.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0374.png.import new file mode 100644 index 00000000..5efa5ac0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0374.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhql8dltprdqc" +path="res://.godot/imported/tile_0374.png-030e157dc8598c13cf0f4066c6cc9c19.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0374.png" +dest_files=["res://.godot/imported/tile_0374.png-030e157dc8598c13cf0f4066c6cc9c19.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0375.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0375.png new file mode 100644 index 00000000..5ec0af9d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0375.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0375.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0375.png.import new file mode 100644 index 00000000..edc5c994 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0375.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mgencru5p24g" +path="res://.godot/imported/tile_0375.png-21edd3108f08f304cee56410661c4b5f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0375.png" +dest_files=["res://.godot/imported/tile_0375.png-21edd3108f08f304cee56410661c4b5f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0376.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0376.png new file mode 100644 index 00000000..f06dd313 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0376.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0376.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0376.png.import new file mode 100644 index 00000000..22176c8f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0376.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daosgjo6ec4hl" +path="res://.godot/imported/tile_0376.png-86f7af5f30c029063914a578ccec0c03.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0376.png" +dest_files=["res://.godot/imported/tile_0376.png-86f7af5f30c029063914a578ccec0c03.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0377.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0377.png new file mode 100644 index 00000000..a0ae3004 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0377.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0377.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0377.png.import new file mode 100644 index 00000000..46c4d38e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0377.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drrugkn14uwdb" +path="res://.godot/imported/tile_0377.png-c7d31723036b737c74d155a0f89a1ec8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0377.png" +dest_files=["res://.godot/imported/tile_0377.png-c7d31723036b737c74d155a0f89a1ec8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0378.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0378.png new file mode 100644 index 00000000..47fa200c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0378.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0378.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0378.png.import new file mode 100644 index 00000000..edd1bdd1 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0378.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l75jalo2ne1l" +path="res://.godot/imported/tile_0378.png-f2c6f5411eb3a3e480dbd56637332874.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0378.png" +dest_files=["res://.godot/imported/tile_0378.png-f2c6f5411eb3a3e480dbd56637332874.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0379.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0379.png new file mode 100644 index 00000000..2a39c42a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0379.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0379.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0379.png.import new file mode 100644 index 00000000..30376e49 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0379.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djraceyn81apr" +path="res://.godot/imported/tile_0379.png-7cdff96fae636b1d2b770119ee456432.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0379.png" +dest_files=["res://.godot/imported/tile_0379.png-7cdff96fae636b1d2b770119ee456432.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0380.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0380.png new file mode 100644 index 00000000..a79ad261 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0380.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0380.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0380.png.import new file mode 100644 index 00000000..63d2007f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0380.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr1pvx5uuaw77" +path="res://.godot/imported/tile_0380.png-5cec9cfe7d02b404d022c2f75201fb23.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0380.png" +dest_files=["res://.godot/imported/tile_0380.png-5cec9cfe7d02b404d022c2f75201fb23.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0381.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0381.png new file mode 100644 index 00000000..a26ee41e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0381.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0381.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0381.png.import new file mode 100644 index 00000000..97687b80 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0381.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsepxui4hyaye" +path="res://.godot/imported/tile_0381.png-535e12352139d4ecbb5abd3bb74ab9c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0381.png" +dest_files=["res://.godot/imported/tile_0381.png-535e12352139d4ecbb5abd3bb74ab9c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0382.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0382.png new file mode 100644 index 00000000..8f29fd37 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0382.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0382.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0382.png.import new file mode 100644 index 00000000..8041c73f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0382.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpky5k5lo3h2s" +path="res://.godot/imported/tile_0382.png-6483b6c8df1b7f993ce6930c8e636265.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0382.png" +dest_files=["res://.godot/imported/tile_0382.png-6483b6c8df1b7f993ce6930c8e636265.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0383.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0383.png new file mode 100644 index 00000000..db1fef7d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0383.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0383.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0383.png.import new file mode 100644 index 00000000..da16d283 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0383.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d8jfyfacsjfj" +path="res://.godot/imported/tile_0383.png-4ca21c73491efd5165ea5c82a7333a2f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0383.png" +dest_files=["res://.godot/imported/tile_0383.png-4ca21c73491efd5165ea5c82a7333a2f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0384.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0384.png new file mode 100644 index 00000000..50452527 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0384.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0384.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0384.png.import new file mode 100644 index 00000000..62e13be9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0384.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dypmib1xn8k4w" +path="res://.godot/imported/tile_0384.png-a9220b12c4c34489e6a252aa5cd5c412.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0384.png" +dest_files=["res://.godot/imported/tile_0384.png-a9220b12c4c34489e6a252aa5cd5c412.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0385.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0385.png new file mode 100644 index 00000000..509bad13 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0385.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0385.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0385.png.import new file mode 100644 index 00000000..c1958d77 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0385.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bql5bnrhcymih" +path="res://.godot/imported/tile_0385.png-e4211594c2daaeea09b81b79e47c0a4f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0385.png" +dest_files=["res://.godot/imported/tile_0385.png-e4211594c2daaeea09b81b79e47c0a4f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0386.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0386.png new file mode 100644 index 00000000..6bdfe33a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0386.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0386.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0386.png.import new file mode 100644 index 00000000..89efed20 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0386.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyhpklftfnl0q" +path="res://.godot/imported/tile_0386.png-4e24a1731c5424af2b5d76d9e7114f09.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0386.png" +dest_files=["res://.godot/imported/tile_0386.png-4e24a1731c5424af2b5d76d9e7114f09.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0387.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0387.png new file mode 100644 index 00000000..dc1497f7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0387.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0387.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0387.png.import new file mode 100644 index 00000000..fe492df6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0387.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://casqm7052t6rw" +path="res://.godot/imported/tile_0387.png-b94536db19b8668d010f7caa873dc64a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0387.png" +dest_files=["res://.godot/imported/tile_0387.png-b94536db19b8668d010f7caa873dc64a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0388.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0388.png new file mode 100644 index 00000000..0b506779 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0388.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0388.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0388.png.import new file mode 100644 index 00000000..9f677bfb --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0388.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bewiwnog0rgkr" +path="res://.godot/imported/tile_0388.png-23d83b6154881c04579334d8efbfe182.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0388.png" +dest_files=["res://.godot/imported/tile_0388.png-23d83b6154881c04579334d8efbfe182.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0389.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0389.png new file mode 100644 index 00000000..b459e38c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0389.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0389.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0389.png.import new file mode 100644 index 00000000..79b4cc55 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0389.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc6eq7ycuaiv5" +path="res://.godot/imported/tile_0389.png-59fcdd02c0d7cec791dc09446a23b002.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0389.png" +dest_files=["res://.godot/imported/tile_0389.png-59fcdd02c0d7cec791dc09446a23b002.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0390.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0390.png new file mode 100644 index 00000000..b7fd1f1c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0390.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0390.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0390.png.import new file mode 100644 index 00000000..8b740bf8 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0390.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs4tuu03nflxp" +path="res://.godot/imported/tile_0390.png-1b5dd01c55bf87284c4457c272a5fe14.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0390.png" +dest_files=["res://.godot/imported/tile_0390.png-1b5dd01c55bf87284c4457c272a5fe14.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0391.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0391.png new file mode 100644 index 00000000..76a15807 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0391.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0391.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0391.png.import new file mode 100644 index 00000000..1fc951b6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0391.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c884jcgvx3i4u" +path="res://.godot/imported/tile_0391.png-569fcf5256d7b67c62057400af0b9579.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0391.png" +dest_files=["res://.godot/imported/tile_0391.png-569fcf5256d7b67c62057400af0b9579.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0392.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0392.png new file mode 100644 index 00000000..3ae68cab Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0392.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0392.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0392.png.import new file mode 100644 index 00000000..65945951 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0392.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwga5mbi7ta0y" +path="res://.godot/imported/tile_0392.png-f6d6916108ed44a26064c4e723e4fef6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0392.png" +dest_files=["res://.godot/imported/tile_0392.png-f6d6916108ed44a26064c4e723e4fef6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0393.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0393.png new file mode 100644 index 00000000..500206c7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0393.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0393.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0393.png.import new file mode 100644 index 00000000..8a47b9b0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0393.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ucw8oy07sy3w" +path="res://.godot/imported/tile_0393.png-7deca9d7b12db3d9416b50bcb533f146.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0393.png" +dest_files=["res://.godot/imported/tile_0393.png-7deca9d7b12db3d9416b50bcb533f146.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0394.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0394.png new file mode 100644 index 00000000..c238b135 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0394.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0394.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0394.png.import new file mode 100644 index 00000000..73ad154f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0394.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rnypeadv8mpe" +path="res://.godot/imported/tile_0394.png-89111a6b9cf50063ced028008ca81779.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0394.png" +dest_files=["res://.godot/imported/tile_0394.png-89111a6b9cf50063ced028008ca81779.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0395.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0395.png new file mode 100644 index 00000000..e38a06f9 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0395.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0395.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0395.png.import new file mode 100644 index 00000000..c4fcfd42 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0395.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e8tdw8u7x445" +path="res://.godot/imported/tile_0395.png-c647421834345f1adfddb5db5f53c98a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0395.png" +dest_files=["res://.godot/imported/tile_0395.png-c647421834345f1adfddb5db5f53c98a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0396.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0396.png new file mode 100644 index 00000000..1042d403 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0396.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0396.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0396.png.import new file mode 100644 index 00000000..9407cfa7 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0396.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbyd7c0dymigu" +path="res://.godot/imported/tile_0396.png-7ed42b1f8b5822ab82a8765348eb71d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0396.png" +dest_files=["res://.godot/imported/tile_0396.png-7ed42b1f8b5822ab82a8765348eb71d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0397.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0397.png new file mode 100644 index 00000000..cf1c9b49 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0397.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0397.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0397.png.import new file mode 100644 index 00000000..0f68ae9b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0397.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfvybq35r87pg" +path="res://.godot/imported/tile_0397.png-8b1f00dfa92e6100e63b5b9648192ace.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0397.png" +dest_files=["res://.godot/imported/tile_0397.png-8b1f00dfa92e6100e63b5b9648192ace.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0398.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0398.png new file mode 100644 index 00000000..fd0b5698 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0398.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0398.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0398.png.import new file mode 100644 index 00000000..48a57616 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0398.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkrptv4lue6qt" +path="res://.godot/imported/tile_0398.png-0b5e7dab1c848c1c9d7d01837905d159.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0398.png" +dest_files=["res://.godot/imported/tile_0398.png-0b5e7dab1c848c1c9d7d01837905d159.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0399.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0399.png new file mode 100644 index 00000000..738d336f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0399.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0399.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0399.png.import new file mode 100644 index 00000000..198d88d5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0399.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0du0xi1k86er" +path="res://.godot/imported/tile_0399.png-7cd55e4e52ec3958f9f521821e903101.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0399.png" +dest_files=["res://.godot/imported/tile_0399.png-7cd55e4e52ec3958f9f521821e903101.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0400.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0400.png new file mode 100644 index 00000000..e9e92c85 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0400.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0400.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0400.png.import new file mode 100644 index 00000000..5764dc2c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0400.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj5347bi5g73u" +path="res://.godot/imported/tile_0400.png-8d615822b8511d0893aa4015c97fbd02.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0400.png" +dest_files=["res://.godot/imported/tile_0400.png-8d615822b8511d0893aa4015c97fbd02.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0401.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0401.png new file mode 100644 index 00000000..21eff841 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0401.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0401.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0401.png.import new file mode 100644 index 00000000..ab7d84a7 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0401.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1wb3wfg7wamn" +path="res://.godot/imported/tile_0401.png-52249ffec118e2b1fa0e57c6ea71e305.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0401.png" +dest_files=["res://.godot/imported/tile_0401.png-52249ffec118e2b1fa0e57c6ea71e305.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0402.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0402.png new file mode 100644 index 00000000..4498d2cd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0402.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0402.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0402.png.import new file mode 100644 index 00000000..72ccd064 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0402.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba25k13ecwclv" +path="res://.godot/imported/tile_0402.png-d4e11ce05a9f1bf52d397f32afb4790d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0402.png" +dest_files=["res://.godot/imported/tile_0402.png-d4e11ce05a9f1bf52d397f32afb4790d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0403.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0403.png new file mode 100644 index 00000000..9ef3326f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0403.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0403.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0403.png.import new file mode 100644 index 00000000..eb2335e0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0403.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chqy7mjaljia2" +path="res://.godot/imported/tile_0403.png-a7b0a44305f83a11f310d906a0e5e0c2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0403.png" +dest_files=["res://.godot/imported/tile_0403.png-a7b0a44305f83a11f310d906a0e5e0c2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0404.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0404.png new file mode 100644 index 00000000..de73fa4d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0404.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0404.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0404.png.import new file mode 100644 index 00000000..daee7d84 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0404.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cymka4miip74j" +path="res://.godot/imported/tile_0404.png-7941cb49be78a4d0fe3eec3f5ba7226a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0404.png" +dest_files=["res://.godot/imported/tile_0404.png-7941cb49be78a4d0fe3eec3f5ba7226a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0405.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0405.png new file mode 100644 index 00000000..9456ce69 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0405.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0405.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0405.png.import new file mode 100644 index 00000000..1e300546 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0405.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0unmb14j836c" +path="res://.godot/imported/tile_0405.png-9e3624616a4cfde9f638a6b8560c4337.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0405.png" +dest_files=["res://.godot/imported/tile_0405.png-9e3624616a4cfde9f638a6b8560c4337.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0406.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0406.png new file mode 100644 index 00000000..b6c1da18 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0406.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0406.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0406.png.import new file mode 100644 index 00000000..d5899332 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0406.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by4fgfsk3su4x" +path="res://.godot/imported/tile_0406.png-b74d65fe929676e7d6fd1043c5b785df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0406.png" +dest_files=["res://.godot/imported/tile_0406.png-b74d65fe929676e7d6fd1043c5b785df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0407.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0407.png new file mode 100644 index 00000000..71c90a6b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0407.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0407.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0407.png.import new file mode 100644 index 00000000..a7657ae7 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0407.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgm5g5ok0o6n7" +path="res://.godot/imported/tile_0407.png-14294c15050eaec6b1d3c4f2c93ff989.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0407.png" +dest_files=["res://.godot/imported/tile_0407.png-14294c15050eaec6b1d3c4f2c93ff989.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0408.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0408.png new file mode 100644 index 00000000..3ae792f4 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0408.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0408.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0408.png.import new file mode 100644 index 00000000..f7b3074c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0408.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjh8fnjg3gc25" +path="res://.godot/imported/tile_0408.png-b0714a6f3f10d84557b28b903695cca2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0408.png" +dest_files=["res://.godot/imported/tile_0408.png-b0714a6f3f10d84557b28b903695cca2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0409.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0409.png new file mode 100644 index 00000000..b00b8ca1 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0409.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0409.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0409.png.import new file mode 100644 index 00000000..af9e168d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0409.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4p0w5w3kxyp4" +path="res://.godot/imported/tile_0409.png-76e155b9bba50510408cc59cae56ad4e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0409.png" +dest_files=["res://.godot/imported/tile_0409.png-76e155b9bba50510408cc59cae56ad4e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0410.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0410.png new file mode 100644 index 00000000..c8c9376c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0410.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0410.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0410.png.import new file mode 100644 index 00000000..f472a16b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0410.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8kxt1gpvndye" +path="res://.godot/imported/tile_0410.png-922ca9b1507d22172c027768529bf0a1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0410.png" +dest_files=["res://.godot/imported/tile_0410.png-922ca9b1507d22172c027768529bf0a1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0411.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0411.png new file mode 100644 index 00000000..488a34cd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0411.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0411.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0411.png.import new file mode 100644 index 00000000..62d13375 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0411.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp15gl4nmt7b4" +path="res://.godot/imported/tile_0411.png-9e5663102eec85ec5daf598b2eebee35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0411.png" +dest_files=["res://.godot/imported/tile_0411.png-9e5663102eec85ec5daf598b2eebee35.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0412.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0412.png new file mode 100644 index 00000000..3e8fb086 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0412.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0412.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0412.png.import new file mode 100644 index 00000000..d5d24944 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0412.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r1tsmh1rqgxu" +path="res://.godot/imported/tile_0412.png-3eacd0d9f1867e50a1ff5f9a9fede529.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0412.png" +dest_files=["res://.godot/imported/tile_0412.png-3eacd0d9f1867e50a1ff5f9a9fede529.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0413.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0413.png new file mode 100644 index 00000000..df198e48 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0413.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0413.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0413.png.import new file mode 100644 index 00000000..20f7d3f2 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0413.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxgwwopwjflpb" +path="res://.godot/imported/tile_0413.png-603dafa517d5b3998e361ee52b1503e4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0413.png" +dest_files=["res://.godot/imported/tile_0413.png-603dafa517d5b3998e361ee52b1503e4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0414.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0414.png new file mode 100644 index 00000000..41dbb6d5 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0414.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0414.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0414.png.import new file mode 100644 index 00000000..6871f48b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0414.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl0b34c01h3q7" +path="res://.godot/imported/tile_0414.png-41f419a3b67563b6dbca344fcbb8b67f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0414.png" +dest_files=["res://.godot/imported/tile_0414.png-41f419a3b67563b6dbca344fcbb8b67f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0415.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0415.png new file mode 100644 index 00000000..8c3dc338 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0415.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0415.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0415.png.import new file mode 100644 index 00000000..0867848b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0415.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn0gy5eoj2eft" +path="res://.godot/imported/tile_0415.png-d78941bfa9aeaca13943701510b7f2d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0415.png" +dest_files=["res://.godot/imported/tile_0415.png-d78941bfa9aeaca13943701510b7f2d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0416.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0416.png new file mode 100644 index 00000000..b9865280 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0416.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0416.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0416.png.import new file mode 100644 index 00000000..58900efc --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0416.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqpiqvm37o54x" +path="res://.godot/imported/tile_0416.png-5eb2591e6bb710d28ba96351a80e2a81.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0416.png" +dest_files=["res://.godot/imported/tile_0416.png-5eb2591e6bb710d28ba96351a80e2a81.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0417.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0417.png new file mode 100644 index 00000000..aa285e8f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0417.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0417.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0417.png.import new file mode 100644 index 00000000..3aee5dce --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0417.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn0jks366hhpn" +path="res://.godot/imported/tile_0417.png-669d0a7ddd3f311c7a88136c0200d3a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0417.png" +dest_files=["res://.godot/imported/tile_0417.png-669d0a7ddd3f311c7a88136c0200d3a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0418.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0418.png new file mode 100644 index 00000000..533ecf24 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0418.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0418.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0418.png.import new file mode 100644 index 00000000..25cbe644 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0418.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca0cmg71v3c44" +path="res://.godot/imported/tile_0418.png-a1917b1a661c985c18d9bc23a11bd904.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0418.png" +dest_files=["res://.godot/imported/tile_0418.png-a1917b1a661c985c18d9bc23a11bd904.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0419.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0419.png new file mode 100644 index 00000000..fb26d312 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0419.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0419.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0419.png.import new file mode 100644 index 00000000..e63d6f7b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0419.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf73eq5uwt18i" +path="res://.godot/imported/tile_0419.png-7f95ce5ca3edb0042f529a2c102c9fb1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0419.png" +dest_files=["res://.godot/imported/tile_0419.png-7f95ce5ca3edb0042f529a2c102c9fb1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0420.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0420.png new file mode 100644 index 00000000..570f6ec8 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0420.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0420.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0420.png.import new file mode 100644 index 00000000..fef238a2 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0420.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqhoxpxnxl2tm" +path="res://.godot/imported/tile_0420.png-3229e294a3ccababa486ba12c11cbc15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0420.png" +dest_files=["res://.godot/imported/tile_0420.png-3229e294a3ccababa486ba12c11cbc15.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0421.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0421.png new file mode 100644 index 00000000..19309d59 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0421.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0421.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0421.png.import new file mode 100644 index 00000000..fcaecebd --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0421.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8cc0ne8r866e" +path="res://.godot/imported/tile_0421.png-062bcbbb3531616f31e5caee76b132f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0421.png" +dest_files=["res://.godot/imported/tile_0421.png-062bcbbb3531616f31e5caee76b132f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0422.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0422.png new file mode 100644 index 00000000..8ca17326 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0422.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0422.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0422.png.import new file mode 100644 index 00000000..babf2f79 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0422.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://46cphq463cpd" +path="res://.godot/imported/tile_0422.png-4fa01b5822d5a90c4bc83e1c1a0ed825.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0422.png" +dest_files=["res://.godot/imported/tile_0422.png-4fa01b5822d5a90c4bc83e1c1a0ed825.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0423.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0423.png new file mode 100644 index 00000000..6d93a5f6 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0423.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0423.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0423.png.import new file mode 100644 index 00000000..b99acde0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0423.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wtsvkk62irs7" +path="res://.godot/imported/tile_0423.png-08caa82f3b2d8ae9d9f90d6c07a44f3f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0423.png" +dest_files=["res://.godot/imported/tile_0423.png-08caa82f3b2d8ae9d9f90d6c07a44f3f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0424.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0424.png new file mode 100644 index 00000000..2e92b1b3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0424.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0424.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0424.png.import new file mode 100644 index 00000000..ccdbe4a7 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0424.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgqsbbr0lphjj" +path="res://.godot/imported/tile_0424.png-f7e961b978c938b36b2e5baa5c4d9ec0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0424.png" +dest_files=["res://.godot/imported/tile_0424.png-f7e961b978c938b36b2e5baa5c4d9ec0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0425.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0425.png new file mode 100644 index 00000000..fee50608 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0425.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0425.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0425.png.import new file mode 100644 index 00000000..91c15565 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0425.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wrrcrwr3lfqv" +path="res://.godot/imported/tile_0425.png-e526c788ba8fe15b3649cd23d383e2a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0425.png" +dest_files=["res://.godot/imported/tile_0425.png-e526c788ba8fe15b3649cd23d383e2a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0426.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0426.png new file mode 100644 index 00000000..7c4b8442 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0426.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0426.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0426.png.import new file mode 100644 index 00000000..8046f200 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0426.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwibtbwxjqjd8" +path="res://.godot/imported/tile_0426.png-edc8615f0b0f4a08f51e43adf42e50a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0426.png" +dest_files=["res://.godot/imported/tile_0426.png-edc8615f0b0f4a08f51e43adf42e50a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0427.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0427.png new file mode 100644 index 00000000..bfb3768d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0427.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0427.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0427.png.import new file mode 100644 index 00000000..86c0eb5a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0427.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnuk4sctd3egi" +path="res://.godot/imported/tile_0427.png-9a7fcb5bb737f4bd83e55b2219c123f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0427.png" +dest_files=["res://.godot/imported/tile_0427.png-9a7fcb5bb737f4bd83e55b2219c123f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0428.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0428.png new file mode 100644 index 00000000..0dd50657 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0428.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0428.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0428.png.import new file mode 100644 index 00000000..119125ed --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0428.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0iaq7kqs6j7l" +path="res://.godot/imported/tile_0428.png-61a2cc497c69cdb4b4fe19233f5e18f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0428.png" +dest_files=["res://.godot/imported/tile_0428.png-61a2cc497c69cdb4b4fe19233f5e18f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0429.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0429.png new file mode 100644 index 00000000..1462d6fb Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0429.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0429.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0429.png.import new file mode 100644 index 00000000..7e12a5c3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0429.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw6uvlojsqbtm" +path="res://.godot/imported/tile_0429.png-3ddde0b7c15c69e69d270d916cc5d093.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0429.png" +dest_files=["res://.godot/imported/tile_0429.png-3ddde0b7c15c69e69d270d916cc5d093.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0430.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0430.png new file mode 100644 index 00000000..14bc0ee6 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0430.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0430.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0430.png.import new file mode 100644 index 00000000..d6a5e646 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0430.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcg5dx8oj6p8k" +path="res://.godot/imported/tile_0430.png-5f8bdcd81bf750fa0fa667af371ecc0e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0430.png" +dest_files=["res://.godot/imported/tile_0430.png-5f8bdcd81bf750fa0fa667af371ecc0e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0431.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0431.png new file mode 100644 index 00000000..d5916217 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0431.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0431.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0431.png.import new file mode 100644 index 00000000..44f38673 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0431.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b35637xqmr2is" +path="res://.godot/imported/tile_0431.png-48a252074015a013bb43e45dfae9e49c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0431.png" +dest_files=["res://.godot/imported/tile_0431.png-48a252074015a013bb43e45dfae9e49c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0432.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0432.png new file mode 100644 index 00000000..2657f81b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0432.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0432.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0432.png.import new file mode 100644 index 00000000..ae7c8858 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0432.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0x32mg1yjlsb" +path="res://.godot/imported/tile_0432.png-b910d35be24f0a3aa8ae241f5b6147a1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0432.png" +dest_files=["res://.godot/imported/tile_0432.png-b910d35be24f0a3aa8ae241f5b6147a1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0433.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0433.png new file mode 100644 index 00000000..e705a096 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0433.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0433.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0433.png.import new file mode 100644 index 00000000..cc367b70 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0433.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cohqp7bfw61a4" +path="res://.godot/imported/tile_0433.png-f1ecf0d4361ba462064278f041a3d4be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0433.png" +dest_files=["res://.godot/imported/tile_0433.png-f1ecf0d4361ba462064278f041a3d4be.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0434.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0434.png new file mode 100644 index 00000000..6f29f3ea Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0434.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0434.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0434.png.import new file mode 100644 index 00000000..b860ba1d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0434.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmcicrf373n3f" +path="res://.godot/imported/tile_0434.png-b20ca45aa2c81a360eb49447239d296d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0434.png" +dest_files=["res://.godot/imported/tile_0434.png-b20ca45aa2c81a360eb49447239d296d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0435.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0435.png new file mode 100644 index 00000000..009d6d2f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0435.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0435.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0435.png.import new file mode 100644 index 00000000..343cf8d6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0435.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cesr3h7e4kp66" +path="res://.godot/imported/tile_0435.png-def9ce01c4ef8e69ffdd3c68270a7677.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0435.png" +dest_files=["res://.godot/imported/tile_0435.png-def9ce01c4ef8e69ffdd3c68270a7677.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0436.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0436.png new file mode 100644 index 00000000..672d4011 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0436.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0436.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0436.png.import new file mode 100644 index 00000000..06966594 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0436.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cu0wm4poss7vf" +path="res://.godot/imported/tile_0436.png-74164929101e10df8f6ba6f3ea87f645.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0436.png" +dest_files=["res://.godot/imported/tile_0436.png-74164929101e10df8f6ba6f3ea87f645.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0437.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0437.png new file mode 100644 index 00000000..006731e3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0437.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0437.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0437.png.import new file mode 100644 index 00000000..d3bcd136 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0437.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk0hw3fa67xpi" +path="res://.godot/imported/tile_0437.png-e3720d17fb4a1ecf089a278bbe91a41c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0437.png" +dest_files=["res://.godot/imported/tile_0437.png-e3720d17fb4a1ecf089a278bbe91a41c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0438.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0438.png new file mode 100644 index 00000000..76a15807 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0438.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0438.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0438.png.import new file mode 100644 index 00000000..3a53bd9c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0438.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://84mmovmy5g8b" +path="res://.godot/imported/tile_0438.png-43e58394a88aa6428790d3786e2f8b04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0438.png" +dest_files=["res://.godot/imported/tile_0438.png-43e58394a88aa6428790d3786e2f8b04.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0439.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0439.png new file mode 100644 index 00000000..96336f11 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0439.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0439.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0439.png.import new file mode 100644 index 00000000..7ba44a3f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0439.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv8xjxtxc64tt" +path="res://.godot/imported/tile_0439.png-3154d2df6ad7d568d6443dd537c981e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0439.png" +dest_files=["res://.godot/imported/tile_0439.png-3154d2df6ad7d568d6443dd537c981e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0440.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0440.png new file mode 100644 index 00000000..8cc1f517 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0440.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0440.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0440.png.import new file mode 100644 index 00000000..daaa4944 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0440.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cop1gj1nmm7l6" +path="res://.godot/imported/tile_0440.png-453422a3f78233a2553e475416ec0eca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0440.png" +dest_files=["res://.godot/imported/tile_0440.png-453422a3f78233a2553e475416ec0eca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0441.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0441.png new file mode 100644 index 00000000..3783f7e3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0441.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0441.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0441.png.import new file mode 100644 index 00000000..771047e0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0441.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbnllr455r58w" +path="res://.godot/imported/tile_0441.png-79a59b98c8cad0f6376533726a989f66.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0441.png" +dest_files=["res://.godot/imported/tile_0441.png-79a59b98c8cad0f6376533726a989f66.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0442.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0442.png new file mode 100644 index 00000000..76f40547 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0442.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0442.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0442.png.import new file mode 100644 index 00000000..21f5d13d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0442.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bx88jt8gre35s" +path="res://.godot/imported/tile_0442.png-179271784ac848d5c7751f9668bd3935.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0442.png" +dest_files=["res://.godot/imported/tile_0442.png-179271784ac848d5c7751f9668bd3935.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0443.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0443.png new file mode 100644 index 00000000..7c75d73e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0443.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0443.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0443.png.import new file mode 100644 index 00000000..a6f7d1bb --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0443.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2e5vx8684iuv" +path="res://.godot/imported/tile_0443.png-88524a1a1836c7e84f07446ac63e95ad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0443.png" +dest_files=["res://.godot/imported/tile_0443.png-88524a1a1836c7e84f07446ac63e95ad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0444.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0444.png new file mode 100644 index 00000000..09881f70 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0444.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0444.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0444.png.import new file mode 100644 index 00000000..cd690168 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0444.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpulgexu48vbe" +path="res://.godot/imported/tile_0444.png-868f9ff7030b46df6851b4f9adc10bfb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0444.png" +dest_files=["res://.godot/imported/tile_0444.png-868f9ff7030b46df6851b4f9adc10bfb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0445.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0445.png new file mode 100644 index 00000000..22c516ef Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0445.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0445.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0445.png.import new file mode 100644 index 00000000..a732dd59 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0445.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgy44f10ikjp0" +path="res://.godot/imported/tile_0445.png-7d35d511a86b983fe6838815f9e4d1d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0445.png" +dest_files=["res://.godot/imported/tile_0445.png-7d35d511a86b983fe6838815f9e4d1d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0446.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0446.png new file mode 100644 index 00000000..d03384c9 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0446.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0446.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0446.png.import new file mode 100644 index 00000000..dec2c06e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0446.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o76fd6fep684" +path="res://.godot/imported/tile_0446.png-48ba2d716f40b8b7e3743407246e1b23.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0446.png" +dest_files=["res://.godot/imported/tile_0446.png-48ba2d716f40b8b7e3743407246e1b23.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0447.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0447.png new file mode 100644 index 00000000..68672af9 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0447.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0447.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0447.png.import new file mode 100644 index 00000000..21b343c6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0447.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdyap1g6dh8gc" +path="res://.godot/imported/tile_0447.png-40f49646143ef02815369636506d613f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0447.png" +dest_files=["res://.godot/imported/tile_0447.png-40f49646143ef02815369636506d613f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0448.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0448.png new file mode 100644 index 00000000..0cac7cdc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0448.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0448.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0448.png.import new file mode 100644 index 00000000..adb11785 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0448.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p0yug2dl0u42" +path="res://.godot/imported/tile_0448.png-71c65e1bc1222518b24a23d14093241c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0448.png" +dest_files=["res://.godot/imported/tile_0448.png-71c65e1bc1222518b24a23d14093241c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0449.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0449.png new file mode 100644 index 00000000..1550d000 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0449.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0449.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0449.png.import new file mode 100644 index 00000000..795114e0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0449.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdg61upedbwp" +path="res://.godot/imported/tile_0449.png-9c8fef1221d7f06fb635ab2ebe266ff4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0449.png" +dest_files=["res://.godot/imported/tile_0449.png-9c8fef1221d7f06fb635ab2ebe266ff4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0450.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0450.png new file mode 100644 index 00000000..04f67d9b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0450.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0450.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0450.png.import new file mode 100644 index 00000000..478c1ce4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0450.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://178o7jhw86sh" +path="res://.godot/imported/tile_0450.png-d1461deb76b705b67280abedbdf926d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0450.png" +dest_files=["res://.godot/imported/tile_0450.png-d1461deb76b705b67280abedbdf926d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0451.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0451.png new file mode 100644 index 00000000..abc2d702 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0451.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0451.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0451.png.import new file mode 100644 index 00000000..c6198abd --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0451.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxouxv16fgch4" +path="res://.godot/imported/tile_0451.png-92c31b17e00b249e9273411735a03215.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0451.png" +dest_files=["res://.godot/imported/tile_0451.png-92c31b17e00b249e9273411735a03215.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0452.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0452.png new file mode 100644 index 00000000..89ef992a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0452.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0452.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0452.png.import new file mode 100644 index 00000000..1506b9a7 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0452.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coppkw2hj3ouw" +path="res://.godot/imported/tile_0452.png-4728885924ac7cc0a7c7bcc14ac48003.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0452.png" +dest_files=["res://.godot/imported/tile_0452.png-4728885924ac7cc0a7c7bcc14ac48003.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0453.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0453.png new file mode 100644 index 00000000..8890ddb6 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0453.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0453.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0453.png.import new file mode 100644 index 00000000..5bf6f122 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0453.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxei48ijlhlc8" +path="res://.godot/imported/tile_0453.png-261419a534cfb97392ae598d13cebd0f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0453.png" +dest_files=["res://.godot/imported/tile_0453.png-261419a534cfb97392ae598d13cebd0f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0454.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0454.png new file mode 100644 index 00000000..409878e9 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0454.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0454.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0454.png.import new file mode 100644 index 00000000..c7cd4bd8 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0454.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hnm5glfqxfvy" +path="res://.godot/imported/tile_0454.png-251fb14b3b56fcecfac26e724c0cdbca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0454.png" +dest_files=["res://.godot/imported/tile_0454.png-251fb14b3b56fcecfac26e724c0cdbca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0455.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0455.png new file mode 100644 index 00000000..4d78f6d3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0455.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0455.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0455.png.import new file mode 100644 index 00000000..e084fd2e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0455.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqqum3w12p5w3" +path="res://.godot/imported/tile_0455.png-2341d6322c9c9f2a2bee857f1b890e5e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0455.png" +dest_files=["res://.godot/imported/tile_0455.png-2341d6322c9c9f2a2bee857f1b890e5e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0456.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0456.png new file mode 100644 index 00000000..751c6a2f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0456.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0456.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0456.png.import new file mode 100644 index 00000000..84dbb023 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0456.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jyrg1sdbhiiu" +path="res://.godot/imported/tile_0456.png-60058945a6de37db03b46abe1c39e044.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0456.png" +dest_files=["res://.godot/imported/tile_0456.png-60058945a6de37db03b46abe1c39e044.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0457.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0457.png new file mode 100644 index 00000000..13aea54b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0457.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0457.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0457.png.import new file mode 100644 index 00000000..17af5dc0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0457.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr4tims5i2tus" +path="res://.godot/imported/tile_0457.png-ff4dafc86f8a5688be54a216518f900e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0457.png" +dest_files=["res://.godot/imported/tile_0457.png-ff4dafc86f8a5688be54a216518f900e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0458.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0458.png new file mode 100644 index 00000000..8f13d4d5 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0458.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0458.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0458.png.import new file mode 100644 index 00000000..15e0ae46 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0458.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0rxo4r2exlp5" +path="res://.godot/imported/tile_0458.png-03957772591034c477779947a01e3466.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0458.png" +dest_files=["res://.godot/imported/tile_0458.png-03957772591034c477779947a01e3466.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0459.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0459.png new file mode 100644 index 00000000..c99abfc9 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0459.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0459.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0459.png.import new file mode 100644 index 00000000..10c316ec --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0459.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyvphp2fn50b" +path="res://.godot/imported/tile_0459.png-ccdd5d2336b911290ab34ece8ff74f2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0459.png" +dest_files=["res://.godot/imported/tile_0459.png-ccdd5d2336b911290ab34ece8ff74f2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0460.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0460.png new file mode 100644 index 00000000..ba3d9a9f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0460.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0460.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0460.png.import new file mode 100644 index 00000000..aa3ab793 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0460.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1ry37awnbmn" +path="res://.godot/imported/tile_0460.png-31c897c93f96121d4a7af35c92abaf95.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0460.png" +dest_files=["res://.godot/imported/tile_0460.png-31c897c93f96121d4a7af35c92abaf95.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0461.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0461.png new file mode 100644 index 00000000..1ccdd21d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0461.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0461.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0461.png.import new file mode 100644 index 00000000..0f24ec05 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0461.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5sa3f1qvf6sv" +path="res://.godot/imported/tile_0461.png-9faa217b3a9c386d5767ac11631f6c88.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0461.png" +dest_files=["res://.godot/imported/tile_0461.png-9faa217b3a9c386d5767ac11631f6c88.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0462.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0462.png new file mode 100644 index 00000000..ba3d9a9f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0462.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0462.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0462.png.import new file mode 100644 index 00000000..0b96f26f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0462.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7f0qo406lmi8" +path="res://.godot/imported/tile_0462.png-db4fca89b5995bd329bf33f88f5b0fe3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0462.png" +dest_files=["res://.godot/imported/tile_0462.png-db4fca89b5995bd329bf33f88f5b0fe3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0463.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0463.png new file mode 100644 index 00000000..d5f84b02 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0463.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0463.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0463.png.import new file mode 100644 index 00000000..4fecc105 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0463.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0ijijin4ii2f" +path="res://.godot/imported/tile_0463.png-b82199257684161f35ae8b9cbf58767d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0463.png" +dest_files=["res://.godot/imported/tile_0463.png-b82199257684161f35ae8b9cbf58767d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0464.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0464.png new file mode 100644 index 00000000..ba3d9a9f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0464.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0464.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0464.png.import new file mode 100644 index 00000000..18e580f1 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0464.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2t8ucok6ojdx" +path="res://.godot/imported/tile_0464.png-28aa1a455aa181e3b1e7d3f1b8ad4788.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0464.png" +dest_files=["res://.godot/imported/tile_0464.png-28aa1a455aa181e3b1e7d3f1b8ad4788.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0465.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0465.png new file mode 100644 index 00000000..d4c9755b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0465.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0465.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0465.png.import new file mode 100644 index 00000000..65a8cd4e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0465.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6dpfd07rcysi" +path="res://.godot/imported/tile_0465.png-17b089857cf80c46e092194c845c96fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0465.png" +dest_files=["res://.godot/imported/tile_0465.png-17b089857cf80c46e092194c845c96fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0466.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0466.png new file mode 100644 index 00000000..ba3d9a9f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0466.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0466.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0466.png.import new file mode 100644 index 00000000..90271a42 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0466.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctca0j1dhsvyt" +path="res://.godot/imported/tile_0466.png-3bfa0b4cf5c80aa37e434260870e6a11.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0466.png" +dest_files=["res://.godot/imported/tile_0466.png-3bfa0b4cf5c80aa37e434260870e6a11.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0467.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0467.png new file mode 100644 index 00000000..45d4e8cc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0467.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0467.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0467.png.import new file mode 100644 index 00000000..c194ff71 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0467.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3gpnsjpadfyk" +path="res://.godot/imported/tile_0467.png-4702b74e4556c897a9a7dfa57df81526.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0467.png" +dest_files=["res://.godot/imported/tile_0467.png-4702b74e4556c897a9a7dfa57df81526.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0468.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0468.png new file mode 100644 index 00000000..ba3d9a9f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0468.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0468.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0468.png.import new file mode 100644 index 00000000..15053baf --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0468.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhi7jxovbnfp" +path="res://.godot/imported/tile_0468.png-2fcbcd8d8299726aac7a5f703d7d9c73.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0468.png" +dest_files=["res://.godot/imported/tile_0468.png-2fcbcd8d8299726aac7a5f703d7d9c73.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0469.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0469.png new file mode 100644 index 00000000..20a68fc7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0469.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0469.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0469.png.import new file mode 100644 index 00000000..a7f57043 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0469.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn7fhtmin8rr" +path="res://.godot/imported/tile_0469.png-61918c5841ca7f2b1f394089303bc50f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0469.png" +dest_files=["res://.godot/imported/tile_0469.png-61918c5841ca7f2b1f394089303bc50f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0470.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0470.png new file mode 100644 index 00000000..c8c483fd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0470.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0470.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0470.png.import new file mode 100644 index 00000000..f58ccd9e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0470.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp21fifwafq13" +path="res://.godot/imported/tile_0470.png-074f7c766da817d87787292fe05041e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0470.png" +dest_files=["res://.godot/imported/tile_0470.png-074f7c766da817d87787292fe05041e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0471.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0471.png new file mode 100644 index 00000000..321f3b42 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0471.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0471.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0471.png.import new file mode 100644 index 00000000..d1031474 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0471.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btc8glho6jeo3" +path="res://.godot/imported/tile_0471.png-71a40b8760df539749200d9601b5d63e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0471.png" +dest_files=["res://.godot/imported/tile_0471.png-71a40b8760df539749200d9601b5d63e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0472.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0472.png new file mode 100644 index 00000000..ac2b8035 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0472.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0472.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0472.png.import new file mode 100644 index 00000000..4bd9b6f5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0472.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbxtdjrufqnby" +path="res://.godot/imported/tile_0472.png-392ef0241832f6cf870c3d1767486bf0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0472.png" +dest_files=["res://.godot/imported/tile_0472.png-392ef0241832f6cf870c3d1767486bf0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0473.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0473.png new file mode 100644 index 00000000..00502327 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0473.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0473.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0473.png.import new file mode 100644 index 00000000..580bb091 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0473.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o1kkagn3m0o5" +path="res://.godot/imported/tile_0473.png-317b96d7d74a8441f7aa581a6926a87d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0473.png" +dest_files=["res://.godot/imported/tile_0473.png-317b96d7d74a8441f7aa581a6926a87d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0474.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0474.png new file mode 100644 index 00000000..9a75aa1c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0474.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0474.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0474.png.import new file mode 100644 index 00000000..f3561a37 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0474.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://21rh22fxrbel" +path="res://.godot/imported/tile_0474.png-4971205945e2d545a34442e16c3f78fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0474.png" +dest_files=["res://.godot/imported/tile_0474.png-4971205945e2d545a34442e16c3f78fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0475.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0475.png new file mode 100644 index 00000000..12aa8dba Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0475.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0475.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0475.png.import new file mode 100644 index 00000000..ee2f6678 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0475.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cftbhbl83j8oi" +path="res://.godot/imported/tile_0475.png-4812bee5695c3ed98e0a2ac201dd6c01.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0475.png" +dest_files=["res://.godot/imported/tile_0475.png-4812bee5695c3ed98e0a2ac201dd6c01.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0476.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0476.png new file mode 100644 index 00000000..230ec86b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0476.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0476.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0476.png.import new file mode 100644 index 00000000..4dd68c77 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0476.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fssv2x3bhtr6" +path="res://.godot/imported/tile_0476.png-fe4a7c6e153c4ed4f0a73bec45f32ee7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0476.png" +dest_files=["res://.godot/imported/tile_0476.png-fe4a7c6e153c4ed4f0a73bec45f32ee7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0477.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0477.png new file mode 100644 index 00000000..1bdd3ccf Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0477.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0477.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0477.png.import new file mode 100644 index 00000000..870fe51c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0477.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bamt8m8fj6hh4" +path="res://.godot/imported/tile_0477.png-ae2a56a20f40ab5fc5d35322d679d304.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0477.png" +dest_files=["res://.godot/imported/tile_0477.png-ae2a56a20f40ab5fc5d35322d679d304.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0478.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0478.png new file mode 100644 index 00000000..c6078c80 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0478.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0478.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0478.png.import new file mode 100644 index 00000000..b83cac0c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0478.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkq3pj7m614qw" +path="res://.godot/imported/tile_0478.png-a431065a87a2e1ed5bbfb2d1b4bd38d3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0478.png" +dest_files=["res://.godot/imported/tile_0478.png-a431065a87a2e1ed5bbfb2d1b4bd38d3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0479.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0479.png new file mode 100644 index 00000000..45770f56 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0479.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0479.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0479.png.import new file mode 100644 index 00000000..1406393a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0479.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgcy1bmy50ckk" +path="res://.godot/imported/tile_0479.png-d683d2e7f7311bf8b91e5f909c6760c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0479.png" +dest_files=["res://.godot/imported/tile_0479.png-d683d2e7f7311bf8b91e5f909c6760c0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0480.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0480.png new file mode 100644 index 00000000..af4e7d83 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0480.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0480.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0480.png.import new file mode 100644 index 00000000..a9b2b2d9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0480.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daqps5edpsp8r" +path="res://.godot/imported/tile_0480.png-5cedb4847f4e4b00e01543b23d3a9c8b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0480.png" +dest_files=["res://.godot/imported/tile_0480.png-5cedb4847f4e4b00e01543b23d3a9c8b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0481.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0481.png new file mode 100644 index 00000000..aac42d98 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0481.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0481.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0481.png.import new file mode 100644 index 00000000..5bc71d2e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0481.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkxmehvjry4va" +path="res://.godot/imported/tile_0481.png-d821859a6b3a69d79584419b4274de32.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0481.png" +dest_files=["res://.godot/imported/tile_0481.png-d821859a6b3a69d79584419b4274de32.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0482.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0482.png new file mode 100644 index 00000000..eea24cf3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0482.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0482.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0482.png.import new file mode 100644 index 00000000..9855e59c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0482.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhp83wygl4ua0" +path="res://.godot/imported/tile_0482.png-604999346f5ea56222a653f2831cb41f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0482.png" +dest_files=["res://.godot/imported/tile_0482.png-604999346f5ea56222a653f2831cb41f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0483.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0483.png new file mode 100644 index 00000000..7af46b14 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0483.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0483.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0483.png.import new file mode 100644 index 00000000..0e9b5595 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0483.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://box1d7rpf8rlh" +path="res://.godot/imported/tile_0483.png-2c67c979d722ca62ebd4a3883e97e627.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0483.png" +dest_files=["res://.godot/imported/tile_0483.png-2c67c979d722ca62ebd4a3883e97e627.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0484.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0484.png new file mode 100644 index 00000000..50950822 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0484.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0484.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0484.png.import new file mode 100644 index 00000000..3132b4b9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0484.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2nw2qheg6sm4" +path="res://.godot/imported/tile_0484.png-71af370a6a5da26b74d1798dd915e632.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0484.png" +dest_files=["res://.godot/imported/tile_0484.png-71af370a6a5da26b74d1798dd915e632.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0485.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0485.png new file mode 100644 index 00000000..16b6aa8c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0485.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0485.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0485.png.import new file mode 100644 index 00000000..e4d3aa28 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0485.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxid4lrduxffv" +path="res://.godot/imported/tile_0485.png-de8f1e750214e732639336388163f2ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0485.png" +dest_files=["res://.godot/imported/tile_0485.png-de8f1e750214e732639336388163f2ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0486.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0486.png new file mode 100644 index 00000000..8fe893f4 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0486.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0486.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0486.png.import new file mode 100644 index 00000000..b667a501 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0486.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqwl64uysrjik" +path="res://.godot/imported/tile_0486.png-5381e5c221c76749247cb7a557d8c51d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0486.png" +dest_files=["res://.godot/imported/tile_0486.png-5381e5c221c76749247cb7a557d8c51d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0487.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0487.png new file mode 100644 index 00000000..8547a4eb Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0487.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0487.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0487.png.import new file mode 100644 index 00000000..a7761849 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0487.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyte0gpbuavqo" +path="res://.godot/imported/tile_0487.png-9b7af0365685185291c67e8dc00d13d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0487.png" +dest_files=["res://.godot/imported/tile_0487.png-9b7af0365685185291c67e8dc00d13d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0488.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0488.png new file mode 100644 index 00000000..de3d57e7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0488.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0488.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0488.png.import new file mode 100644 index 00000000..1439060d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0488.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccgdaeclanlay" +path="res://.godot/imported/tile_0488.png-99df59d45fd47b0e21662ec77b768a96.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0488.png" +dest_files=["res://.godot/imported/tile_0488.png-99df59d45fd47b0e21662ec77b768a96.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0489.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0489.png new file mode 100644 index 00000000..678d0055 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0489.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0489.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0489.png.import new file mode 100644 index 00000000..cc238347 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0489.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmljlrxf4p7q7" +path="res://.godot/imported/tile_0489.png-e58569d2c8e88b4e34c414adf00608d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0489.png" +dest_files=["res://.godot/imported/tile_0489.png-e58569d2c8e88b4e34c414adf00608d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0490.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0490.png new file mode 100644 index 00000000..e0264cda Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0490.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0490.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0490.png.import new file mode 100644 index 00000000..49f68ded --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0490.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cky78y6dngq8" +path="res://.godot/imported/tile_0490.png-e44fdfc195f1ce28f39316f9614f9608.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0490.png" +dest_files=["res://.godot/imported/tile_0490.png-e44fdfc195f1ce28f39316f9614f9608.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0491.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0491.png new file mode 100644 index 00000000..b7f8f940 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0491.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0491.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0491.png.import new file mode 100644 index 00000000..d92829c5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0491.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rgcuqnx448ba" +path="res://.godot/imported/tile_0491.png-23e560f22923aa4d3882f43d8599613a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0491.png" +dest_files=["res://.godot/imported/tile_0491.png-23e560f22923aa4d3882f43d8599613a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0492.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0492.png new file mode 100644 index 00000000..9af01ad4 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0492.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0492.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0492.png.import new file mode 100644 index 00000000..405a794e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0492.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqrkep05qpc8x" +path="res://.godot/imported/tile_0492.png-cb8e0a904404edf5ec987afd571182d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0492.png" +dest_files=["res://.godot/imported/tile_0492.png-cb8e0a904404edf5ec987afd571182d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0493.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0493.png new file mode 100644 index 00000000..ae5f966a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0493.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0493.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0493.png.import new file mode 100644 index 00000000..08c05e0e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0493.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuat7n7iyu4a8" +path="res://.godot/imported/tile_0493.png-d4e052c4fe72cc3e236e346bd670af45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0493.png" +dest_files=["res://.godot/imported/tile_0493.png-d4e052c4fe72cc3e236e346bd670af45.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0494.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0494.png new file mode 100644 index 00000000..261df106 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0494.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0494.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0494.png.import new file mode 100644 index 00000000..c1ec2524 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0494.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duoxp3m46apfk" +path="res://.godot/imported/tile_0494.png-65573a113eeb44ebcf0cb6ccd40a8d0d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0494.png" +dest_files=["res://.godot/imported/tile_0494.png-65573a113eeb44ebcf0cb6ccd40a8d0d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0495.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0495.png new file mode 100644 index 00000000..c4ccd03f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0495.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0495.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0495.png.import new file mode 100644 index 00000000..dbd18937 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0495.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d28tt0604ry14" +path="res://.godot/imported/tile_0495.png-8fc7a3d1c92dfd86490692bd8ee6e399.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0495.png" +dest_files=["res://.godot/imported/tile_0495.png-8fc7a3d1c92dfd86490692bd8ee6e399.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0496.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0496.png new file mode 100644 index 00000000..4de5f923 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0496.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0496.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0496.png.import new file mode 100644 index 00000000..b6596b1e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0496.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r6ts5ptansac" +path="res://.godot/imported/tile_0496.png-237f0c37bd9e272e0a5b57c487635d60.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0496.png" +dest_files=["res://.godot/imported/tile_0496.png-237f0c37bd9e272e0a5b57c487635d60.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0497.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0497.png new file mode 100644 index 00000000..b8ee5d99 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0497.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0497.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0497.png.import new file mode 100644 index 00000000..7ee30722 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0497.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cingnjal74b1m" +path="res://.godot/imported/tile_0497.png-02eaa67ff6d35ea4f9036827af841628.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0497.png" +dest_files=["res://.godot/imported/tile_0497.png-02eaa67ff6d35ea4f9036827af841628.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0498.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0498.png new file mode 100644 index 00000000..344d6acd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0498.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0498.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0498.png.import new file mode 100644 index 00000000..f0a7478a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0498.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dph6nym5aybu4" +path="res://.godot/imported/tile_0498.png-39cd49f790e3e58a5877f74a993dae0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0498.png" +dest_files=["res://.godot/imported/tile_0498.png-39cd49f790e3e58a5877f74a993dae0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0499.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0499.png new file mode 100644 index 00000000..612eaa1f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0499.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0499.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0499.png.import new file mode 100644 index 00000000..8395b5b3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0499.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc4dlkeusf5u5" +path="res://.godot/imported/tile_0499.png-ab07a7eabf150ddd461cba883794cf6e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0499.png" +dest_files=["res://.godot/imported/tile_0499.png-ab07a7eabf150ddd461cba883794cf6e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0500.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0500.png new file mode 100644 index 00000000..078b47b7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0500.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0500.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0500.png.import new file mode 100644 index 00000000..ebc756b7 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0500.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw8c6b3356rge" +path="res://.godot/imported/tile_0500.png-d2a28facc9afacd716832e1c44c27f2f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0500.png" +dest_files=["res://.godot/imported/tile_0500.png-d2a28facc9afacd716832e1c44c27f2f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0501.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0501.png new file mode 100644 index 00000000..10e2b681 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0501.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0501.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0501.png.import new file mode 100644 index 00000000..f67333e5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0501.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj6qrahi7nqtb" +path="res://.godot/imported/tile_0501.png-0860b2b116f878b1c22cbde98de4b5cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0501.png" +dest_files=["res://.godot/imported/tile_0501.png-0860b2b116f878b1c22cbde98de4b5cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0502.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0502.png new file mode 100644 index 00000000..89279a69 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0502.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0502.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0502.png.import new file mode 100644 index 00000000..536f9f84 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0502.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl17irw6guu85" +path="res://.godot/imported/tile_0502.png-8deb0b2cd80f4383f5b06fc161a45bf8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0502.png" +dest_files=["res://.godot/imported/tile_0502.png-8deb0b2cd80f4383f5b06fc161a45bf8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0503.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0503.png new file mode 100644 index 00000000..f7c8ce52 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0503.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0503.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0503.png.import new file mode 100644 index 00000000..5ec19a34 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0503.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7necqm7jw0qg" +path="res://.godot/imported/tile_0503.png-0e12172382443376c00595b02f7276fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0503.png" +dest_files=["res://.godot/imported/tile_0503.png-0e12172382443376c00595b02f7276fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0504.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0504.png new file mode 100644 index 00000000..315ff417 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0504.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0504.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0504.png.import new file mode 100644 index 00000000..fbe55b81 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0504.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br6ebiqpy0oag" +path="res://.godot/imported/tile_0504.png-dda812d44d660941a396255095f9a438.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0504.png" +dest_files=["res://.godot/imported/tile_0504.png-dda812d44d660941a396255095f9a438.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0505.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0505.png new file mode 100644 index 00000000..6f142da8 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0505.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0505.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0505.png.import new file mode 100644 index 00000000..6f6e61a0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0505.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvmo524f3v0fo" +path="res://.godot/imported/tile_0505.png-a8263e413c24496e7d1c6a549da23ad6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0505.png" +dest_files=["res://.godot/imported/tile_0505.png-a8263e413c24496e7d1c6a549da23ad6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0506.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0506.png new file mode 100644 index 00000000..1ac8f686 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0506.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0506.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0506.png.import new file mode 100644 index 00000000..a565b272 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0506.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbkq4pl08ldvr" +path="res://.godot/imported/tile_0506.png-b80c8dc3b9aec8a740133660b760fa74.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0506.png" +dest_files=["res://.godot/imported/tile_0506.png-b80c8dc3b9aec8a740133660b760fa74.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0507.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0507.png new file mode 100644 index 00000000..ac6fdadd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0507.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0507.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0507.png.import new file mode 100644 index 00000000..92dcafe7 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0507.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clbip2ralh12e" +path="res://.godot/imported/tile_0507.png-3587aa1213caad30f6373ecee7665380.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0507.png" +dest_files=["res://.godot/imported/tile_0507.png-3587aa1213caad30f6373ecee7665380.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0508.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0508.png new file mode 100644 index 00000000..01158100 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0508.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0508.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0508.png.import new file mode 100644 index 00000000..c435fb90 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0508.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k7bmee5iow06" +path="res://.godot/imported/tile_0508.png-308b89cf3ca35a7388858a0226e5503c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0508.png" +dest_files=["res://.godot/imported/tile_0508.png-308b89cf3ca35a7388858a0226e5503c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0509.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0509.png new file mode 100644 index 00000000..a8db3b29 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0509.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0509.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0509.png.import new file mode 100644 index 00000000..07d306d3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0509.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3yfubwqcjnaw" +path="res://.godot/imported/tile_0509.png-bbc61a59f49776c52a7c6c7d3d9669d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0509.png" +dest_files=["res://.godot/imported/tile_0509.png-bbc61a59f49776c52a7c6c7d3d9669d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0510.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0510.png new file mode 100644 index 00000000..81919210 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0510.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0510.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0510.png.import new file mode 100644 index 00000000..196e0cf9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0510.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddxoebqxgablk" +path="res://.godot/imported/tile_0510.png-323781f0d9ee927574b65ca6b27dbd28.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0510.png" +dest_files=["res://.godot/imported/tile_0510.png-323781f0d9ee927574b65ca6b27dbd28.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0511.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0511.png new file mode 100644 index 00000000..0c1d0bab Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0511.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0511.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0511.png.import new file mode 100644 index 00000000..6f0ee21d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0511.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc5jyp3xq0mxu" +path="res://.godot/imported/tile_0511.png-d8496f6ad47a1440ed15d62f198dda5e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0511.png" +dest_files=["res://.godot/imported/tile_0511.png-d8496f6ad47a1440ed15d62f198dda5e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0512.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0512.png new file mode 100644 index 00000000..a9c7d93a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0512.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0512.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0512.png.import new file mode 100644 index 00000000..d6fe83c1 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0512.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt6eax2twkun" +path="res://.godot/imported/tile_0512.png-78bd06951a43699b1e9e371f219b28cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0512.png" +dest_files=["res://.godot/imported/tile_0512.png-78bd06951a43699b1e9e371f219b28cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0513.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0513.png new file mode 100644 index 00000000..a6e215c2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0513.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0513.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0513.png.import new file mode 100644 index 00000000..4c125525 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0513.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpi6comric0bf" +path="res://.godot/imported/tile_0513.png-2239d20d818595c4f9f586fd38fbd0d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0513.png" +dest_files=["res://.godot/imported/tile_0513.png-2239d20d818595c4f9f586fd38fbd0d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0514.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0514.png new file mode 100644 index 00000000..9c6b0a90 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0514.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0514.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0514.png.import new file mode 100644 index 00000000..8aaf76e2 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0514.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7mgrasc63qe5" +path="res://.godot/imported/tile_0514.png-c992f075c8e043d34233ce5661539f86.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0514.png" +dest_files=["res://.godot/imported/tile_0514.png-c992f075c8e043d34233ce5661539f86.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0515.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0515.png new file mode 100644 index 00000000..56e6b6a6 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0515.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0515.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0515.png.import new file mode 100644 index 00000000..a1fb49ba --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0515.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcimnqabfy6f" +path="res://.godot/imported/tile_0515.png-6264b30878afde3d136030c0b9c2253d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0515.png" +dest_files=["res://.godot/imported/tile_0515.png-6264b30878afde3d136030c0b9c2253d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0516.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0516.png new file mode 100644 index 00000000..efa3dfad Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0516.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0516.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0516.png.import new file mode 100644 index 00000000..85f0345d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0516.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvuer586twwst" +path="res://.godot/imported/tile_0516.png-f96a15fb443c735585b5c1075bc51d9b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0516.png" +dest_files=["res://.godot/imported/tile_0516.png-f96a15fb443c735585b5c1075bc51d9b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0517.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0517.png new file mode 100644 index 00000000..3f929ccd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0517.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0517.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0517.png.import new file mode 100644 index 00000000..71128422 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0517.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6y3amiv0f8ke" +path="res://.godot/imported/tile_0517.png-e624db341c3cf65b8b75c574c8a06ea0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0517.png" +dest_files=["res://.godot/imported/tile_0517.png-e624db341c3cf65b8b75c574c8a06ea0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0518.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0518.png new file mode 100644 index 00000000..9ef7f9e8 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0518.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0518.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0518.png.import new file mode 100644 index 00000000..27bb6dc2 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0518.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ec67cdhv5dy5" +path="res://.godot/imported/tile_0518.png-37bc9de917697f88bc75ac20debbfca6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0518.png" +dest_files=["res://.godot/imported/tile_0518.png-37bc9de917697f88bc75ac20debbfca6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0519.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0519.png new file mode 100644 index 00000000..1d0bc6d8 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0519.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0519.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0519.png.import new file mode 100644 index 00000000..fe0feb62 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0519.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0unfew5mlidv" +path="res://.godot/imported/tile_0519.png-15719eaccc6a1e043cd54775fc6e35fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0519.png" +dest_files=["res://.godot/imported/tile_0519.png-15719eaccc6a1e043cd54775fc6e35fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0520.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0520.png new file mode 100644 index 00000000..6287c9e5 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0520.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0520.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0520.png.import new file mode 100644 index 00000000..e8eddc84 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0520.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3j3ncsgiuitb" +path="res://.godot/imported/tile_0520.png-9a4e3e12f373528e7df2ed26e31b2497.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0520.png" +dest_files=["res://.godot/imported/tile_0520.png-9a4e3e12f373528e7df2ed26e31b2497.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0521.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0521.png new file mode 100644 index 00000000..d37674a2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0521.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0521.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0521.png.import new file mode 100644 index 00000000..f9cd2da3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0521.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ivm73i1ovvph" +path="res://.godot/imported/tile_0521.png-dfd5771d9af5b0641db70054cbd6ac1d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0521.png" +dest_files=["res://.godot/imported/tile_0521.png-dfd5771d9af5b0641db70054cbd6ac1d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0522.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0522.png new file mode 100644 index 00000000..f4e1b829 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0522.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0522.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0522.png.import new file mode 100644 index 00000000..e0b05bfb --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0522.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8qg8sngtuyy0" +path="res://.godot/imported/tile_0522.png-a3ec64c9439e5a78e2c1f5dbe449d7ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0522.png" +dest_files=["res://.godot/imported/tile_0522.png-a3ec64c9439e5a78e2c1f5dbe449d7ec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0523.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0523.png new file mode 100644 index 00000000..3b8c3b55 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0523.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0523.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0523.png.import new file mode 100644 index 00000000..48becde3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0523.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cndl004g3lwet" +path="res://.godot/imported/tile_0523.png-056e07fa90699dea7cd477ba77ad9e43.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0523.png" +dest_files=["res://.godot/imported/tile_0523.png-056e07fa90699dea7cd477ba77ad9e43.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0524.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0524.png new file mode 100644 index 00000000..cde68dde Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0524.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0524.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0524.png.import new file mode 100644 index 00000000..ca0f910a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0524.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfa627ilwr3px" +path="res://.godot/imported/tile_0524.png-c15c62adb498fde45311f78e5505c585.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0524.png" +dest_files=["res://.godot/imported/tile_0524.png-c15c62adb498fde45311f78e5505c585.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0525.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0525.png new file mode 100644 index 00000000..69d5377d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0525.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0525.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0525.png.import new file mode 100644 index 00000000..8e75fe8d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0525.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj5jv8a1m05nc" +path="res://.godot/imported/tile_0525.png-00f8abbae224a870773650a38dc4ecdb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0525.png" +dest_files=["res://.godot/imported/tile_0525.png-00f8abbae224a870773650a38dc4ecdb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0526.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0526.png new file mode 100644 index 00000000..fae3b210 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0526.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0526.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0526.png.import new file mode 100644 index 00000000..e7c40b50 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0526.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bunwpm3k8ymi2" +path="res://.godot/imported/tile_0526.png-568e0a667aa114eba3a83933d8b23d29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0526.png" +dest_files=["res://.godot/imported/tile_0526.png-568e0a667aa114eba3a83933d8b23d29.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0527.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0527.png new file mode 100644 index 00000000..3548874c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0527.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0527.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0527.png.import new file mode 100644 index 00000000..2fc2b894 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0527.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8dylifiw1k00" +path="res://.godot/imported/tile_0527.png-fc6df8ff6296e07861ac2b8f6ef74530.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0527.png" +dest_files=["res://.godot/imported/tile_0527.png-fc6df8ff6296e07861ac2b8f6ef74530.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0528.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0528.png new file mode 100644 index 00000000..b0500085 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0528.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0528.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0528.png.import new file mode 100644 index 00000000..7f9314cc --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0528.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7o1upasqvvih" +path="res://.godot/imported/tile_0528.png-391acea7c842c029acd85f3fc44767b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0528.png" +dest_files=["res://.godot/imported/tile_0528.png-391acea7c842c029acd85f3fc44767b2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0529.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0529.png new file mode 100644 index 00000000..c2976867 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0529.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0529.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0529.png.import new file mode 100644 index 00000000..0ee5b3b4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0529.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bv1xs5dq0bip2" +path="res://.godot/imported/tile_0529.png-ac872a08de23d8013ebc03afc7ce4a7d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0529.png" +dest_files=["res://.godot/imported/tile_0529.png-ac872a08de23d8013ebc03afc7ce4a7d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0530.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0530.png new file mode 100644 index 00000000..0a5988ff Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0530.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0530.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0530.png.import new file mode 100644 index 00000000..a9cd3812 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0530.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxw1fcy28se2c" +path="res://.godot/imported/tile_0530.png-5afcff8834a30068458339da8b7650da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0530.png" +dest_files=["res://.godot/imported/tile_0530.png-5afcff8834a30068458339da8b7650da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0531.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0531.png new file mode 100644 index 00000000..87b08b30 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0531.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0531.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0531.png.import new file mode 100644 index 00000000..e0ab48d9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0531.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhy2uqnh7e38b" +path="res://.godot/imported/tile_0531.png-e3c5a434b3b8c4892fa4c2ee7b0469b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0531.png" +dest_files=["res://.godot/imported/tile_0531.png-e3c5a434b3b8c4892fa4c2ee7b0469b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0532.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0532.png new file mode 100644 index 00000000..de1258f6 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0532.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0532.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0532.png.import new file mode 100644 index 00000000..11b35ea4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0532.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i8seq7gxoepl" +path="res://.godot/imported/tile_0532.png-1ee174a97328f255543315c43a208261.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0532.png" +dest_files=["res://.godot/imported/tile_0532.png-1ee174a97328f255543315c43a208261.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0533.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0533.png new file mode 100644 index 00000000..ab765345 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0533.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0533.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0533.png.import new file mode 100644 index 00000000..9d11d9d9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0533.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvbi5lwni7ekm" +path="res://.godot/imported/tile_0533.png-4dbe95e6547f03bcecb05c0ddd0d8f21.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0533.png" +dest_files=["res://.godot/imported/tile_0533.png-4dbe95e6547f03bcecb05c0ddd0d8f21.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0534.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0534.png new file mode 100644 index 00000000..970b55b6 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0534.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0534.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0534.png.import new file mode 100644 index 00000000..fe455f8c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0534.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbokrhkgljxs6" +path="res://.godot/imported/tile_0534.png-ab6f5c079b09b089e7142037211199a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0534.png" +dest_files=["res://.godot/imported/tile_0534.png-ab6f5c079b09b089e7142037211199a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0535.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0535.png new file mode 100644 index 00000000..728344fa Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0535.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0535.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0535.png.import new file mode 100644 index 00000000..8a9d6be6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0535.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6fjysvfu4g61" +path="res://.godot/imported/tile_0535.png-e90723b25eb8f6097bf106b3e456784b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0535.png" +dest_files=["res://.godot/imported/tile_0535.png-e90723b25eb8f6097bf106b3e456784b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0536.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0536.png new file mode 100644 index 00000000..82390404 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0536.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0536.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0536.png.import new file mode 100644 index 00000000..eb5d6d9b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0536.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://655fs0qq5tuo" +path="res://.godot/imported/tile_0536.png-ecc786832dce600fb31db977be960b33.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0536.png" +dest_files=["res://.godot/imported/tile_0536.png-ecc786832dce600fb31db977be960b33.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0537.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0537.png new file mode 100644 index 00000000..cc9a811a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0537.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0537.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0537.png.import new file mode 100644 index 00000000..3196595a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0537.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv51b4abd6brc" +path="res://.godot/imported/tile_0537.png-2a5cf8fce42d3ca4ce9d1609182f2377.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0537.png" +dest_files=["res://.godot/imported/tile_0537.png-2a5cf8fce42d3ca4ce9d1609182f2377.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0538.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0538.png new file mode 100644 index 00000000..6301cff1 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0538.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0538.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0538.png.import new file mode 100644 index 00000000..6ffbb555 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0538.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cynne05psgd6b" +path="res://.godot/imported/tile_0538.png-cb16077a8044ca3b8f79220f239f19da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0538.png" +dest_files=["res://.godot/imported/tile_0538.png-cb16077a8044ca3b8f79220f239f19da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0539.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0539.png new file mode 100644 index 00000000..a5fc1085 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0539.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0539.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0539.png.import new file mode 100644 index 00000000..858147e3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0539.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buflhnx7ji0jo" +path="res://.godot/imported/tile_0539.png-7479d7685acb2521295aa99b496336d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0539.png" +dest_files=["res://.godot/imported/tile_0539.png-7479d7685acb2521295aa99b496336d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0540.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0540.png new file mode 100644 index 00000000..b14dff21 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0540.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0540.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0540.png.import new file mode 100644 index 00000000..ce1b13ed --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0540.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bohx351n33wnt" +path="res://.godot/imported/tile_0540.png-24f0b0f8bd5c2efd09a2c6fe247f855a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0540.png" +dest_files=["res://.godot/imported/tile_0540.png-24f0b0f8bd5c2efd09a2c6fe247f855a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0541.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0541.png new file mode 100644 index 00000000..29ea8ff6 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0541.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0541.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0541.png.import new file mode 100644 index 00000000..83bb720a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0541.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbcat8758y0h" +path="res://.godot/imported/tile_0541.png-c03b8ae8ebd43284952917973a922ea1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0541.png" +dest_files=["res://.godot/imported/tile_0541.png-c03b8ae8ebd43284952917973a922ea1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0542.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0542.png new file mode 100644 index 00000000..611cd474 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0542.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0542.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0542.png.import new file mode 100644 index 00000000..4f1f66f5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0542.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj85eopcpmsn7" +path="res://.godot/imported/tile_0542.png-9f2b34f3a7a81c0ef813fa25630ee5d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0542.png" +dest_files=["res://.godot/imported/tile_0542.png-9f2b34f3a7a81c0ef813fa25630ee5d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0543.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0543.png new file mode 100644 index 00000000..85d214cd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0543.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0543.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0543.png.import new file mode 100644 index 00000000..09ad544d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0543.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://di47n2dbo3fkd" +path="res://.godot/imported/tile_0543.png-b3689fd3db73155bbe70595d3b079f70.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0543.png" +dest_files=["res://.godot/imported/tile_0543.png-b3689fd3db73155bbe70595d3b079f70.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0544.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0544.png new file mode 100644 index 00000000..b499bc5f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0544.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0544.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0544.png.import new file mode 100644 index 00000000..de504103 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0544.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o7dumh1p6fgx" +path="res://.godot/imported/tile_0544.png-4cb7b5cf3cc9a77bbd8417a0aa7eed31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0544.png" +dest_files=["res://.godot/imported/tile_0544.png-4cb7b5cf3cc9a77bbd8417a0aa7eed31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0545.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0545.png new file mode 100644 index 00000000..b3eab6f1 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0545.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0545.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0545.png.import new file mode 100644 index 00000000..cec6531f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0545.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dp0abcqg17hn2" +path="res://.godot/imported/tile_0545.png-72dafdef56a5aac668a87e27fe42f5d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0545.png" +dest_files=["res://.godot/imported/tile_0545.png-72dafdef56a5aac668a87e27fe42f5d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0546.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0546.png new file mode 100644 index 00000000..6d62553a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0546.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0546.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0546.png.import new file mode 100644 index 00000000..4e0b1076 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0546.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://corphlv0cqw2k" +path="res://.godot/imported/tile_0546.png-74a1b2692351ff3640d467c7471cf4bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0546.png" +dest_files=["res://.godot/imported/tile_0546.png-74a1b2692351ff3640d467c7471cf4bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0547.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0547.png new file mode 100644 index 00000000..1f9053fe Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0547.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0547.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0547.png.import new file mode 100644 index 00000000..7b8559b7 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0547.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba68s6oha16a2" +path="res://.godot/imported/tile_0547.png-b135bb1779daa6e99ce71b6880093610.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0547.png" +dest_files=["res://.godot/imported/tile_0547.png-b135bb1779daa6e99ce71b6880093610.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0548.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0548.png new file mode 100644 index 00000000..8f27a4a8 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0548.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0548.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0548.png.import new file mode 100644 index 00000000..c18a558d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0548.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n2u86tot5p0r" +path="res://.godot/imported/tile_0548.png-4138da4e75fa32592046c225da6fe94b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0548.png" +dest_files=["res://.godot/imported/tile_0548.png-4138da4e75fa32592046c225da6fe94b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0549.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0549.png new file mode 100644 index 00000000..1a1cf755 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0549.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0549.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0549.png.import new file mode 100644 index 00000000..359de145 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0549.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb316spkcdmux" +path="res://.godot/imported/tile_0549.png-470fa63267059c14951248818d8d6d65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0549.png" +dest_files=["res://.godot/imported/tile_0549.png-470fa63267059c14951248818d8d6d65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0550.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0550.png new file mode 100644 index 00000000..97a78eb7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0550.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0550.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0550.png.import new file mode 100644 index 00000000..619fec82 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0550.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byidps347h5qe" +path="res://.godot/imported/tile_0550.png-0e55e23ef37829ae5316a9b9b51c90da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0550.png" +dest_files=["res://.godot/imported/tile_0550.png-0e55e23ef37829ae5316a9b9b51c90da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0551.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0551.png new file mode 100644 index 00000000..2244f795 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0551.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0551.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0551.png.import new file mode 100644 index 00000000..34b9e728 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0551.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dti18oox8l481" +path="res://.godot/imported/tile_0551.png-e03d4de24c0a0a8a0bbd6b9eb2ab86d4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0551.png" +dest_files=["res://.godot/imported/tile_0551.png-e03d4de24c0a0a8a0bbd6b9eb2ab86d4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0552.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0552.png new file mode 100644 index 00000000..3de6b656 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0552.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0552.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0552.png.import new file mode 100644 index 00000000..9ea2ef65 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0552.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h0ey1oragx8g" +path="res://.godot/imported/tile_0552.png-b53dc7ad9307ca6974b2761a4d146506.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0552.png" +dest_files=["res://.godot/imported/tile_0552.png-b53dc7ad9307ca6974b2761a4d146506.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0553.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0553.png new file mode 100644 index 00000000..bf44b573 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0553.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0553.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0553.png.import new file mode 100644 index 00000000..c0849e47 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0553.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sxdx5tukictj" +path="res://.godot/imported/tile_0553.png-5e822ea896ae15f8c53c1c78ebdfe42f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0553.png" +dest_files=["res://.godot/imported/tile_0553.png-5e822ea896ae15f8c53c1c78ebdfe42f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0554.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0554.png new file mode 100644 index 00000000..01279021 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0554.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0554.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0554.png.import new file mode 100644 index 00000000..d101ec30 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0554.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c23khhx2d8m4o" +path="res://.godot/imported/tile_0554.png-ba3ca4418799140d6b4c34e877e08537.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0554.png" +dest_files=["res://.godot/imported/tile_0554.png-ba3ca4418799140d6b4c34e877e08537.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0555.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0555.png new file mode 100644 index 00000000..f889e1b1 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0555.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0555.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0555.png.import new file mode 100644 index 00000000..97e406fb --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0555.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw1gaitdwq8wb" +path="res://.godot/imported/tile_0555.png-7752fb1a83a80db7db4519516535b794.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0555.png" +dest_files=["res://.godot/imported/tile_0555.png-7752fb1a83a80db7db4519516535b794.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0556.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0556.png new file mode 100644 index 00000000..e3e87be4 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0556.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0556.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0556.png.import new file mode 100644 index 00000000..bddf6fe8 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0556.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfxjw1m575txw" +path="res://.godot/imported/tile_0556.png-38ef7dd1dce46a5c4fa26b469860cb94.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0556.png" +dest_files=["res://.godot/imported/tile_0556.png-38ef7dd1dce46a5c4fa26b469860cb94.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0557.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0557.png new file mode 100644 index 00000000..f334e389 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0557.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0557.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0557.png.import new file mode 100644 index 00000000..099e4699 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0557.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpklfccqmq7rn" +path="res://.godot/imported/tile_0557.png-aacfce2523d2bc68db1009e7479f65ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0557.png" +dest_files=["res://.godot/imported/tile_0557.png-aacfce2523d2bc68db1009e7479f65ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0558.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0558.png new file mode 100644 index 00000000..7b667ed8 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0558.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0558.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0558.png.import new file mode 100644 index 00000000..807f3cb2 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0558.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqqgm6fjht3kk" +path="res://.godot/imported/tile_0558.png-72b3dd04ee8215df3c3a98a439d4a893.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0558.png" +dest_files=["res://.godot/imported/tile_0558.png-72b3dd04ee8215df3c3a98a439d4a893.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0559.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0559.png new file mode 100644 index 00000000..3bd3a36d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0559.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0559.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0559.png.import new file mode 100644 index 00000000..210b9ce9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0559.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw8evtiyy0cus" +path="res://.godot/imported/tile_0559.png-0db61c41e0f4bd3f457ea99fb6904153.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0559.png" +dest_files=["res://.godot/imported/tile_0559.png-0db61c41e0f4bd3f457ea99fb6904153.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0560.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0560.png new file mode 100644 index 00000000..8bba31aa Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0560.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0560.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0560.png.import new file mode 100644 index 00000000..74153f81 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0560.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cysihyq6ikcbh" +path="res://.godot/imported/tile_0560.png-68203d1dd1bb01e19019b9a1063d786c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0560.png" +dest_files=["res://.godot/imported/tile_0560.png-68203d1dd1bb01e19019b9a1063d786c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0561.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0561.png new file mode 100644 index 00000000..86847ebd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0561.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0561.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0561.png.import new file mode 100644 index 00000000..fd460385 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0561.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cchbi45r2gnkw" +path="res://.godot/imported/tile_0561.png-7ec1d2fa6f437bdab46cd2eb7e20dc7f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0561.png" +dest_files=["res://.godot/imported/tile_0561.png-7ec1d2fa6f437bdab46cd2eb7e20dc7f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0562.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0562.png new file mode 100644 index 00000000..3ae62a77 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0562.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0562.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0562.png.import new file mode 100644 index 00000000..a338a907 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0562.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0ulghp56toh3" +path="res://.godot/imported/tile_0562.png-6a5544982ee508be29e5870d8f55e8bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0562.png" +dest_files=["res://.godot/imported/tile_0562.png-6a5544982ee508be29e5870d8f55e8bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0563.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0563.png new file mode 100644 index 00000000..19ddd176 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0563.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0563.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0563.png.import new file mode 100644 index 00000000..0e99a11f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0563.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5l5da46btnvt" +path="res://.godot/imported/tile_0563.png-f0faa0b5a06013319cde9ef35db04fd0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0563.png" +dest_files=["res://.godot/imported/tile_0563.png-f0faa0b5a06013319cde9ef35db04fd0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0564.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0564.png new file mode 100644 index 00000000..582c3969 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0564.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0564.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0564.png.import new file mode 100644 index 00000000..137e8966 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0564.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc5twjf1t2i4i" +path="res://.godot/imported/tile_0564.png-b6e43627c3eb39e0a790ca63f69cd77a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0564.png" +dest_files=["res://.godot/imported/tile_0564.png-b6e43627c3eb39e0a790ca63f69cd77a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0565.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0565.png new file mode 100644 index 00000000..9cc46dd7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0565.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0565.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0565.png.import new file mode 100644 index 00000000..36a9ee15 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0565.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dngabhkplqcbg" +path="res://.godot/imported/tile_0565.png-41cc606e5d52e13fbd58e04a5a4f3b2a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0565.png" +dest_files=["res://.godot/imported/tile_0565.png-41cc606e5d52e13fbd58e04a5a4f3b2a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0566.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0566.png new file mode 100644 index 00000000..a0e3325e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0566.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0566.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0566.png.import new file mode 100644 index 00000000..fe468f4e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0566.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0uvjtq66hh7u" +path="res://.godot/imported/tile_0566.png-171712588459641b152b7c2aad7cbfd2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0566.png" +dest_files=["res://.godot/imported/tile_0566.png-171712588459641b152b7c2aad7cbfd2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0567.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0567.png new file mode 100644 index 00000000..17785e88 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0567.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0567.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0567.png.import new file mode 100644 index 00000000..af92f988 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0567.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2740gcac0cav" +path="res://.godot/imported/tile_0567.png-793349515468a48e8f98ac29f6446e2e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0567.png" +dest_files=["res://.godot/imported/tile_0567.png-793349515468a48e8f98ac29f6446e2e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0568.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0568.png new file mode 100644 index 00000000..9554b503 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0568.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0568.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0568.png.import new file mode 100644 index 00000000..22346fe9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0568.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx8pednbgt4le" +path="res://.godot/imported/tile_0568.png-bacf7574e330c58b8c8edc54a864e196.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0568.png" +dest_files=["res://.godot/imported/tile_0568.png-bacf7574e330c58b8c8edc54a864e196.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0569.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0569.png new file mode 100644 index 00000000..cd797a34 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0569.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0569.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0569.png.import new file mode 100644 index 00000000..8d550019 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0569.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4n7jqj6ttm5d" +path="res://.godot/imported/tile_0569.png-7ef6f582e51a93004a6d7cf4f28f672f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0569.png" +dest_files=["res://.godot/imported/tile_0569.png-7ef6f582e51a93004a6d7cf4f28f672f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0570.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0570.png new file mode 100644 index 00000000..5d2d61df Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0570.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0570.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0570.png.import new file mode 100644 index 00000000..20462c27 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0570.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jynn6yemcx2v" +path="res://.godot/imported/tile_0570.png-012962e3816c60961b3d78543810b0b4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0570.png" +dest_files=["res://.godot/imported/tile_0570.png-012962e3816c60961b3d78543810b0b4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0571.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0571.png new file mode 100644 index 00000000..7c34235e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0571.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0571.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0571.png.import new file mode 100644 index 00000000..d41321f4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0571.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kdsjuuwgdieq" +path="res://.godot/imported/tile_0571.png-bae40610e8878ad38351f5ade6996ad0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0571.png" +dest_files=["res://.godot/imported/tile_0571.png-bae40610e8878ad38351f5ade6996ad0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0572.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0572.png new file mode 100644 index 00000000..6c81c6ef Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0572.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0572.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0572.png.import new file mode 100644 index 00000000..c3cdb8ff --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0572.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc5fhka15k2yl" +path="res://.godot/imported/tile_0572.png-d4166b428103702fb1eecb9a48d8f664.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0572.png" +dest_files=["res://.godot/imported/tile_0572.png-d4166b428103702fb1eecb9a48d8f664.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0573.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0573.png new file mode 100644 index 00000000..da201c93 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0573.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0573.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0573.png.import new file mode 100644 index 00000000..525a8324 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0573.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tje8t26gbb8g" +path="res://.godot/imported/tile_0573.png-129aeda3444041feefbd05f8571a344b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0573.png" +dest_files=["res://.godot/imported/tile_0573.png-129aeda3444041feefbd05f8571a344b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0574.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0574.png new file mode 100644 index 00000000..d2bf2041 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0574.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0574.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0574.png.import new file mode 100644 index 00000000..b05e4f0c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0574.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddyp48trbofq" +path="res://.godot/imported/tile_0574.png-6bc24ee7a8c9dca71cdde1d4aacf7543.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0574.png" +dest_files=["res://.godot/imported/tile_0574.png-6bc24ee7a8c9dca71cdde1d4aacf7543.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0575.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0575.png new file mode 100644 index 00000000..65ce6093 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0575.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0575.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0575.png.import new file mode 100644 index 00000000..6f2694ed --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0575.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmdxifaopc0uw" +path="res://.godot/imported/tile_0575.png-ff68dbd8f61ef91d3a9a132a82662506.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0575.png" +dest_files=["res://.godot/imported/tile_0575.png-ff68dbd8f61ef91d3a9a132a82662506.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0576.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0576.png new file mode 100644 index 00000000..0ec313f3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0576.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0576.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0576.png.import new file mode 100644 index 00000000..989fdcdb --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0576.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vxaof2ii35vn" +path="res://.godot/imported/tile_0576.png-e97b93f9c8f4b2b933e5b38c11783e17.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0576.png" +dest_files=["res://.godot/imported/tile_0576.png-e97b93f9c8f4b2b933e5b38c11783e17.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0577.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0577.png new file mode 100644 index 00000000..68c2f983 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0577.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0577.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0577.png.import new file mode 100644 index 00000000..7d7392ef --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0577.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chdqww6c671dm" +path="res://.godot/imported/tile_0577.png-a2b58f86eb8eb22f35c3180e72de061b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0577.png" +dest_files=["res://.godot/imported/tile_0577.png-a2b58f86eb8eb22f35c3180e72de061b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0578.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0578.png new file mode 100644 index 00000000..a5e06052 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0578.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0578.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0578.png.import new file mode 100644 index 00000000..b23264d0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0578.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhfpr8qixvv4m" +path="res://.godot/imported/tile_0578.png-127cbe9bf17adb854a5016bb036602ee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0578.png" +dest_files=["res://.godot/imported/tile_0578.png-127cbe9bf17adb854a5016bb036602ee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0579.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0579.png new file mode 100644 index 00000000..a6576cda Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0579.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0579.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0579.png.import new file mode 100644 index 00000000..be2bb27c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0579.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq6uykqqxm3x7" +path="res://.godot/imported/tile_0579.png-91d6d2fa8de790b1ff743bfec5dc4377.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0579.png" +dest_files=["res://.godot/imported/tile_0579.png-91d6d2fa8de790b1ff743bfec5dc4377.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0580.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0580.png new file mode 100644 index 00000000..3d11d414 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0580.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0580.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0580.png.import new file mode 100644 index 00000000..0c565a9c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0580.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj1niiq706fcj" +path="res://.godot/imported/tile_0580.png-4ab280b3cbd86ae40359fd7205590630.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0580.png" +dest_files=["res://.godot/imported/tile_0580.png-4ab280b3cbd86ae40359fd7205590630.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0581.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0581.png new file mode 100644 index 00000000..bcfa0b6f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0581.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0581.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0581.png.import new file mode 100644 index 00000000..d536dd24 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0581.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8f58hwhnwb5l" +path="res://.godot/imported/tile_0581.png-6576d31169e0c6741a9f8d9a456fc54c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0581.png" +dest_files=["res://.godot/imported/tile_0581.png-6576d31169e0c6741a9f8d9a456fc54c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0582.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0582.png new file mode 100644 index 00000000..ff370c91 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0582.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0582.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0582.png.import new file mode 100644 index 00000000..01b313d3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0582.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c11upmpssjuat" +path="res://.godot/imported/tile_0582.png-a816f1d1790d748353585d2f775c4818.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0582.png" +dest_files=["res://.godot/imported/tile_0582.png-a816f1d1790d748353585d2f775c4818.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0583.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0583.png new file mode 100644 index 00000000..8aef5d3a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0583.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0583.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0583.png.import new file mode 100644 index 00000000..84e5b6e6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0583.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cljo27aocioh4" +path="res://.godot/imported/tile_0583.png-95da99af112121ac0dd33ea6cc75d9be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0583.png" +dest_files=["res://.godot/imported/tile_0583.png-95da99af112121ac0dd33ea6cc75d9be.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0584.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0584.png new file mode 100644 index 00000000..e778831f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0584.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0584.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0584.png.import new file mode 100644 index 00000000..aa2ed9ba --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0584.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djy8dvvrbdpkn" +path="res://.godot/imported/tile_0584.png-f1c7896dede83c6c72a3bc5643747acb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0584.png" +dest_files=["res://.godot/imported/tile_0584.png-f1c7896dede83c6c72a3bc5643747acb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0585.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0585.png new file mode 100644 index 00000000..66c755d0 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0585.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0585.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0585.png.import new file mode 100644 index 00000000..455954d0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0585.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwcxna4qq1un2" +path="res://.godot/imported/tile_0585.png-957b3df9c278bc94c4905663381c192b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0585.png" +dest_files=["res://.godot/imported/tile_0585.png-957b3df9c278bc94c4905663381c192b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0586.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0586.png new file mode 100644 index 00000000..3621bb41 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0586.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0586.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0586.png.import new file mode 100644 index 00000000..5471c724 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0586.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c01v2rg2waxe5" +path="res://.godot/imported/tile_0586.png-68df5b098768e92e672189035316945a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0586.png" +dest_files=["res://.godot/imported/tile_0586.png-68df5b098768e92e672189035316945a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0587.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0587.png new file mode 100644 index 00000000..2eaaa3ae Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0587.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0587.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0587.png.import new file mode 100644 index 00000000..da941599 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0587.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doihbbv4jjt3t" +path="res://.godot/imported/tile_0587.png-4c7039822753bddcb342c2586bb26824.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0587.png" +dest_files=["res://.godot/imported/tile_0587.png-4c7039822753bddcb342c2586bb26824.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0588.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0588.png new file mode 100644 index 00000000..9c0fff7f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0588.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0588.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0588.png.import new file mode 100644 index 00000000..6bf8a283 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0588.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfg83pcyvy87t" +path="res://.godot/imported/tile_0588.png-91e610a7451ab5b7a2bc961775f6060d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0588.png" +dest_files=["res://.godot/imported/tile_0588.png-91e610a7451ab5b7a2bc961775f6060d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0589.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0589.png new file mode 100644 index 00000000..f8612d5a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0589.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0589.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0589.png.import new file mode 100644 index 00000000..cdae750e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0589.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bykrji4ax1bkk" +path="res://.godot/imported/tile_0589.png-bab26ce8bad4d42a90f81d08f7f80afe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0589.png" +dest_files=["res://.godot/imported/tile_0589.png-bab26ce8bad4d42a90f81d08f7f80afe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0590.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0590.png new file mode 100644 index 00000000..1e0e2dc4 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0590.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0590.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0590.png.import new file mode 100644 index 00000000..51334cbf --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0590.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7l1mpg0awux2" +path="res://.godot/imported/tile_0590.png-c58106285f7bc203ef29364eace8b3a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0590.png" +dest_files=["res://.godot/imported/tile_0590.png-c58106285f7bc203ef29364eace8b3a9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0591.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0591.png new file mode 100644 index 00000000..b88c811a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0591.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0591.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0591.png.import new file mode 100644 index 00000000..2bf9c699 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0591.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cku7xms4hdid4" +path="res://.godot/imported/tile_0591.png-63b13cf3f427382b18366d70ca58384d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0591.png" +dest_files=["res://.godot/imported/tile_0591.png-63b13cf3f427382b18366d70ca58384d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0592.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0592.png new file mode 100644 index 00000000..95435efc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0592.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0592.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0592.png.import new file mode 100644 index 00000000..7219aa5a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0592.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b653qveaa84j1" +path="res://.godot/imported/tile_0592.png-1ed939fc65796843aa1608be90927718.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0592.png" +dest_files=["res://.godot/imported/tile_0592.png-1ed939fc65796843aa1608be90927718.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0593.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0593.png new file mode 100644 index 00000000..d133d3e2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0593.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0593.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0593.png.import new file mode 100644 index 00000000..6ad42b2e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0593.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq3bb3et15c3n" +path="res://.godot/imported/tile_0593.png-b3afbb3be2845947bce86f1e6085b62b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0593.png" +dest_files=["res://.godot/imported/tile_0593.png-b3afbb3be2845947bce86f1e6085b62b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0594.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0594.png new file mode 100644 index 00000000..40a06887 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0594.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0594.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0594.png.import new file mode 100644 index 00000000..48113592 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0594.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crhekux18v2gk" +path="res://.godot/imported/tile_0594.png-a1875c482089c481ada8f49a609d055f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0594.png" +dest_files=["res://.godot/imported/tile_0594.png-a1875c482089c481ada8f49a609d055f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0595.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0595.png new file mode 100644 index 00000000..cddac939 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0595.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0595.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0595.png.import new file mode 100644 index 00000000..e53394dd --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0595.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coejfp7t6pfp8" +path="res://.godot/imported/tile_0595.png-18a637dffa715b5bcedf999272bab4e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0595.png" +dest_files=["res://.godot/imported/tile_0595.png-18a637dffa715b5bcedf999272bab4e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0596.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0596.png new file mode 100644 index 00000000..20993ea2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0596.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0596.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0596.png.import new file mode 100644 index 00000000..e10e2981 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0596.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cclwqqqngx4h0" +path="res://.godot/imported/tile_0596.png-8d6cf7acfa2f9d4ae76b9699d315b5d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0596.png" +dest_files=["res://.godot/imported/tile_0596.png-8d6cf7acfa2f9d4ae76b9699d315b5d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0597.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0597.png new file mode 100644 index 00000000..2da15fcf Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0597.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0597.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0597.png.import new file mode 100644 index 00000000..e6c69630 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0597.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgkj10ve74w4g" +path="res://.godot/imported/tile_0597.png-af7f4ddf4d02708b54098f4a2c348322.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0597.png" +dest_files=["res://.godot/imported/tile_0597.png-af7f4ddf4d02708b54098f4a2c348322.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0598.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0598.png new file mode 100644 index 00000000..b5f12f5f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0598.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0598.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0598.png.import new file mode 100644 index 00000000..8870e0bf --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0598.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvcc556d3vitd" +path="res://.godot/imported/tile_0598.png-e257bbc6d47dec5231e271119782ff8c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0598.png" +dest_files=["res://.godot/imported/tile_0598.png-e257bbc6d47dec5231e271119782ff8c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0599.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0599.png new file mode 100644 index 00000000..a51753cd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0599.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0599.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0599.png.import new file mode 100644 index 00000000..89f04b14 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0599.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xt1y2xkdc1n3" +path="res://.godot/imported/tile_0599.png-5a4048ac3b0769b76494d8556fbf2552.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0599.png" +dest_files=["res://.godot/imported/tile_0599.png-5a4048ac3b0769b76494d8556fbf2552.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0600.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0600.png new file mode 100644 index 00000000..e8d48499 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0600.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0600.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0600.png.import new file mode 100644 index 00000000..c84ca34f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0600.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl2ed6n0653ve" +path="res://.godot/imported/tile_0600.png-55cd4cf275b9ce42473153a5f60478f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0600.png" +dest_files=["res://.godot/imported/tile_0600.png-55cd4cf275b9ce42473153a5f60478f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0601.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0601.png new file mode 100644 index 00000000..c23a0d49 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0601.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0601.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0601.png.import new file mode 100644 index 00000000..31b2c43b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0601.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqn86irsdux7e" +path="res://.godot/imported/tile_0601.png-6bcc690f2c55f460b56ab970eb816004.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0601.png" +dest_files=["res://.godot/imported/tile_0601.png-6bcc690f2c55f460b56ab970eb816004.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0602.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0602.png new file mode 100644 index 00000000..e38150d2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0602.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0602.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0602.png.import new file mode 100644 index 00000000..265df21a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0602.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpxccvaxe6tu4" +path="res://.godot/imported/tile_0602.png-b3c599c0c33045dcf941e438d3c4a67f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0602.png" +dest_files=["res://.godot/imported/tile_0602.png-b3c599c0c33045dcf941e438d3c4a67f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0603.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0603.png new file mode 100644 index 00000000..db93ac89 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0603.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0603.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0603.png.import new file mode 100644 index 00000000..0e9c6576 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0603.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk32pbr6fbc85" +path="res://.godot/imported/tile_0603.png-8e528012a5d5e0a07d9cce6e52d6d4f3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0603.png" +dest_files=["res://.godot/imported/tile_0603.png-8e528012a5d5e0a07d9cce6e52d6d4f3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0604.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0604.png new file mode 100644 index 00000000..12a1e506 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0604.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0604.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0604.png.import new file mode 100644 index 00000000..745ec65d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0604.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmuyq0xsq6exu" +path="res://.godot/imported/tile_0604.png-e033460c05d11aad0f1bed1046d310d4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0604.png" +dest_files=["res://.godot/imported/tile_0604.png-e033460c05d11aad0f1bed1046d310d4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0605.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0605.png new file mode 100644 index 00000000..636b43d2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0605.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0605.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0605.png.import new file mode 100644 index 00000000..c536043d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0605.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ojie8a272uru" +path="res://.godot/imported/tile_0605.png-e574b52b5f5ca5181a2ad1129de6212f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0605.png" +dest_files=["res://.godot/imported/tile_0605.png-e574b52b5f5ca5181a2ad1129de6212f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0606.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0606.png new file mode 100644 index 00000000..ae2584a5 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0606.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0606.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0606.png.import new file mode 100644 index 00000000..cbd68bf3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0606.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://00gg6n10d07k" +path="res://.godot/imported/tile_0606.png-fe901170e8be1b23c3c90b2439ba6fc5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0606.png" +dest_files=["res://.godot/imported/tile_0606.png-fe901170e8be1b23c3c90b2439ba6fc5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0607.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0607.png new file mode 100644 index 00000000..1cb8ff0c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0607.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0607.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0607.png.import new file mode 100644 index 00000000..e5467f93 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0607.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cayoc4kba2qa4" +path="res://.godot/imported/tile_0607.png-f1397b3adccb8798b70e99235704e9e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0607.png" +dest_files=["res://.godot/imported/tile_0607.png-f1397b3adccb8798b70e99235704e9e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0608.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0608.png new file mode 100644 index 00000000..ec7841f3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0608.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0608.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0608.png.import new file mode 100644 index 00000000..29ab3a1c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0608.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d11is66tixnpi" +path="res://.godot/imported/tile_0608.png-a4949f45a549a4e2d3257a4bdf47e504.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0608.png" +dest_files=["res://.godot/imported/tile_0608.png-a4949f45a549a4e2d3257a4bdf47e504.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0609.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0609.png new file mode 100644 index 00000000..953dd433 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0609.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0609.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0609.png.import new file mode 100644 index 00000000..e13280ae --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0609.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f1y30utu2q8f" +path="res://.godot/imported/tile_0609.png-cbc5fe73d9e3ec0cea842a6326494285.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0609.png" +dest_files=["res://.godot/imported/tile_0609.png-cbc5fe73d9e3ec0cea842a6326494285.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0610.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0610.png new file mode 100644 index 00000000..84867637 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0610.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0610.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0610.png.import new file mode 100644 index 00000000..35ebfa2b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0610.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://55qq2l2yqc1m" +path="res://.godot/imported/tile_0610.png-58a20f870e851b0ba3f34fde56a678d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0610.png" +dest_files=["res://.godot/imported/tile_0610.png-58a20f870e851b0ba3f34fde56a678d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0611.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0611.png new file mode 100644 index 00000000..03428b31 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0611.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0611.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0611.png.import new file mode 100644 index 00000000..50ade089 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0611.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dakpqfli4c0cm" +path="res://.godot/imported/tile_0611.png-ee52dd2bd137b58f18f7142708f83440.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0611.png" +dest_files=["res://.godot/imported/tile_0611.png-ee52dd2bd137b58f18f7142708f83440.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0612.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0612.png new file mode 100644 index 00000000..da2831d0 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0612.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0612.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0612.png.import new file mode 100644 index 00000000..671e3a43 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0612.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjk3cag0armke" +path="res://.godot/imported/tile_0612.png-1e6f644d91b9d8e694e246462b542799.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0612.png" +dest_files=["res://.godot/imported/tile_0612.png-1e6f644d91b9d8e694e246462b542799.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0613.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0613.png new file mode 100644 index 00000000..a4702bf7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0613.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0613.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0613.png.import new file mode 100644 index 00000000..cca49d1c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0613.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8sc1kjo3cnrj" +path="res://.godot/imported/tile_0613.png-e531d8ed1a08081643d27c9b290a3fff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0613.png" +dest_files=["res://.godot/imported/tile_0613.png-e531d8ed1a08081643d27c9b290a3fff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0614.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0614.png new file mode 100644 index 00000000..e7ed5db1 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0614.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0614.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0614.png.import new file mode 100644 index 00000000..b9974e0b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0614.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg8cpn1lnjlod" +path="res://.godot/imported/tile_0614.png-1579d8231bff7ead78979d0b8fe9b4a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0614.png" +dest_files=["res://.godot/imported/tile_0614.png-1579d8231bff7ead78979d0b8fe9b4a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0615.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0615.png new file mode 100644 index 00000000..a36ec679 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0615.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0615.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0615.png.import new file mode 100644 index 00000000..464d2c8b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0615.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brnan5om7vcfj" +path="res://.godot/imported/tile_0615.png-c75a369825f3531c1d2a2746ce95c76e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0615.png" +dest_files=["res://.godot/imported/tile_0615.png-c75a369825f3531c1d2a2746ce95c76e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0616.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0616.png new file mode 100644 index 00000000..818f721f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0616.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0616.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0616.png.import new file mode 100644 index 00000000..ac7a50b4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0616.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxf5ajahv7k84" +path="res://.godot/imported/tile_0616.png-3e3c9068e3a61b7fe04ac2e3f78bdadd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0616.png" +dest_files=["res://.godot/imported/tile_0616.png-3e3c9068e3a61b7fe04ac2e3f78bdadd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0617.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0617.png new file mode 100644 index 00000000..2ed1120a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0617.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0617.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0617.png.import new file mode 100644 index 00000000..739d802a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0617.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btfgjb7m8mafq" +path="res://.godot/imported/tile_0617.png-ba549fdfd3060551152009d70541723f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0617.png" +dest_files=["res://.godot/imported/tile_0617.png-ba549fdfd3060551152009d70541723f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0618.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0618.png new file mode 100644 index 00000000..94a06a4d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0618.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0618.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0618.png.import new file mode 100644 index 00000000..4b294050 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0618.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cem4c0jiisy6i" +path="res://.godot/imported/tile_0618.png-d9e50c2083f9e1efd8db3834d065b57e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0618.png" +dest_files=["res://.godot/imported/tile_0618.png-d9e50c2083f9e1efd8db3834d065b57e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0619.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0619.png new file mode 100644 index 00000000..aa9ec5dc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0619.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0619.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0619.png.import new file mode 100644 index 00000000..9cdf788d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0619.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwdq4dmttxitg" +path="res://.godot/imported/tile_0619.png-f292546e61fc3ebf71f3abc73f556f64.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0619.png" +dest_files=["res://.godot/imported/tile_0619.png-f292546e61fc3ebf71f3abc73f556f64.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0620.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0620.png new file mode 100644 index 00000000..0bea4d69 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0620.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0620.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0620.png.import new file mode 100644 index 00000000..c6976c0d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0620.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tdub7owhkhqu" +path="res://.godot/imported/tile_0620.png-5038cf9236a9b131b57bfd1da85b8bed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0620.png" +dest_files=["res://.godot/imported/tile_0620.png-5038cf9236a9b131b57bfd1da85b8bed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0621.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0621.png new file mode 100644 index 00000000..3cadf7a9 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0621.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0621.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0621.png.import new file mode 100644 index 00000000..4905a0d8 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0621.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch0ri50yfobpu" +path="res://.godot/imported/tile_0621.png-4a318a95880c4b8ff8b73255b24e9999.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0621.png" +dest_files=["res://.godot/imported/tile_0621.png-4a318a95880c4b8ff8b73255b24e9999.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0622.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0622.png new file mode 100644 index 00000000..b233619d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0622.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0622.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0622.png.import new file mode 100644 index 00000000..15494bc0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0622.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1887t37yl3dt" +path="res://.godot/imported/tile_0622.png-1fcda344c5a5d01e79c5defe5645f4d3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0622.png" +dest_files=["res://.godot/imported/tile_0622.png-1fcda344c5a5d01e79c5defe5645f4d3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0623.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0623.png new file mode 100644 index 00000000..781e4bc5 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0623.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0623.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0623.png.import new file mode 100644 index 00000000..c1f20149 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0623.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccrfg67hbxlrm" +path="res://.godot/imported/tile_0623.png-c58d3f74680b627aab6e2368cec3aff5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0623.png" +dest_files=["res://.godot/imported/tile_0623.png-c58d3f74680b627aab6e2368cec3aff5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0624.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0624.png new file mode 100644 index 00000000..4ef53ef0 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0624.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0624.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0624.png.import new file mode 100644 index 00000000..e18e06ce --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0624.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsmgxgtvea5c1" +path="res://.godot/imported/tile_0624.png-f543c0f3f318f167ed7fbd8269c6425b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0624.png" +dest_files=["res://.godot/imported/tile_0624.png-f543c0f3f318f167ed7fbd8269c6425b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0625.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0625.png new file mode 100644 index 00000000..fc3b04af Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0625.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0625.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0625.png.import new file mode 100644 index 00000000..efbace2a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0625.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f8ioce4oplls" +path="res://.godot/imported/tile_0625.png-2eb9d3c63a6c2beffbaf1fd0e5471de3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0625.png" +dest_files=["res://.godot/imported/tile_0625.png-2eb9d3c63a6c2beffbaf1fd0e5471de3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0626.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0626.png new file mode 100644 index 00000000..de63315b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0626.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0626.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0626.png.import new file mode 100644 index 00000000..f20c6a10 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0626.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddrfagfxqe8dp" +path="res://.godot/imported/tile_0626.png-c4af859d703a03c53af5566180755167.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0626.png" +dest_files=["res://.godot/imported/tile_0626.png-c4af859d703a03c53af5566180755167.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0627.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0627.png new file mode 100644 index 00000000..7f50222e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0627.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0627.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0627.png.import new file mode 100644 index 00000000..fc0573d1 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0627.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6pepnjjbvgaj" +path="res://.godot/imported/tile_0627.png-506cfe91d6e2715f94b3f3918df02f14.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0627.png" +dest_files=["res://.godot/imported/tile_0627.png-506cfe91d6e2715f94b3f3918df02f14.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0628.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0628.png new file mode 100644 index 00000000..e67c6b46 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0628.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0628.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0628.png.import new file mode 100644 index 00000000..c8eb9b5c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0628.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c033rvm2kmr1n" +path="res://.godot/imported/tile_0628.png-953addb2de03bd56b8ef3f0b642f09f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0628.png" +dest_files=["res://.godot/imported/tile_0628.png-953addb2de03bd56b8ef3f0b642f09f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0629.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0629.png new file mode 100644 index 00000000..49605c31 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0629.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0629.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0629.png.import new file mode 100644 index 00000000..71c7f08a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0629.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0s4iphb6ug2t" +path="res://.godot/imported/tile_0629.png-dac6972d8ee4b1707abc046f3219c15b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0629.png" +dest_files=["res://.godot/imported/tile_0629.png-dac6972d8ee4b1707abc046f3219c15b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0630.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0630.png new file mode 100644 index 00000000..6f9f2c36 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0630.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0630.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0630.png.import new file mode 100644 index 00000000..bef86842 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0630.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iasxrxrdxp5c" +path="res://.godot/imported/tile_0630.png-acac395d785b152818751da238a4918f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0630.png" +dest_files=["res://.godot/imported/tile_0630.png-acac395d785b152818751da238a4918f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0631.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0631.png new file mode 100644 index 00000000..de7ca1f7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0631.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0631.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0631.png.import new file mode 100644 index 00000000..3ce65d3c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0631.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceeohh2v2j3q4" +path="res://.godot/imported/tile_0631.png-39081933602e2045b538ad31e6532348.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0631.png" +dest_files=["res://.godot/imported/tile_0631.png-39081933602e2045b538ad31e6532348.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0632.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0632.png new file mode 100644 index 00000000..828b604b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0632.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0632.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0632.png.import new file mode 100644 index 00000000..ab6df738 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0632.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vv6ksm080kei" +path="res://.godot/imported/tile_0632.png-8b6e613096cafb64581f169da8be2aaf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0632.png" +dest_files=["res://.godot/imported/tile_0632.png-8b6e613096cafb64581f169da8be2aaf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0633.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0633.png new file mode 100644 index 00000000..507a5acd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0633.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0633.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0633.png.import new file mode 100644 index 00000000..e07c4ff0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0633.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sofd53jfyv5e" +path="res://.godot/imported/tile_0633.png-2aa70cc46cd15278a09831cdaad14644.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0633.png" +dest_files=["res://.godot/imported/tile_0633.png-2aa70cc46cd15278a09831cdaad14644.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0634.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0634.png new file mode 100644 index 00000000..31ce4272 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0634.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0634.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0634.png.import new file mode 100644 index 00000000..b92d2627 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0634.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://66xelqml1bv1" +path="res://.godot/imported/tile_0634.png-92bacf28d0e714310e87ab4d9c9976bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0634.png" +dest_files=["res://.godot/imported/tile_0634.png-92bacf28d0e714310e87ab4d9c9976bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0635.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0635.png new file mode 100644 index 00000000..c230619e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0635.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0635.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0635.png.import new file mode 100644 index 00000000..9bb6c804 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0635.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl8v61vrs6637" +path="res://.godot/imported/tile_0635.png-9df28210711ca4509ef6d83a10640602.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0635.png" +dest_files=["res://.godot/imported/tile_0635.png-9df28210711ca4509ef6d83a10640602.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0636.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0636.png new file mode 100644 index 00000000..d17ea2bd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0636.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0636.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0636.png.import new file mode 100644 index 00000000..ee113fa0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0636.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fhok1tlu1a1m" +path="res://.godot/imported/tile_0636.png-920d598936442dd509f50b1f6d4019b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0636.png" +dest_files=["res://.godot/imported/tile_0636.png-920d598936442dd509f50b1f6d4019b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0637.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0637.png new file mode 100644 index 00000000..4027d2bc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0637.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0637.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0637.png.import new file mode 100644 index 00000000..daa1a1ac --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0637.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0unag1rt8l8n" +path="res://.godot/imported/tile_0637.png-e9b77647b1badffdd8cb571bd70fba88.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0637.png" +dest_files=["res://.godot/imported/tile_0637.png-e9b77647b1badffdd8cb571bd70fba88.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0638.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0638.png new file mode 100644 index 00000000..bc5513a3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0638.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0638.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0638.png.import new file mode 100644 index 00000000..748a2fdf --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0638.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pldlh8uyntms" +path="res://.godot/imported/tile_0638.png-07a86d9e86f1a16926367530aee80df9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0638.png" +dest_files=["res://.godot/imported/tile_0638.png-07a86d9e86f1a16926367530aee80df9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0639.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0639.png new file mode 100644 index 00000000..f357241f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0639.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0639.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0639.png.import new file mode 100644 index 00000000..0d76c93a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0639.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i2b2olgs7pxg" +path="res://.godot/imported/tile_0639.png-84e9aeae9650b01ca934c95376475a1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0639.png" +dest_files=["res://.godot/imported/tile_0639.png-84e9aeae9650b01ca934c95376475a1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0640.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0640.png new file mode 100644 index 00000000..171466d3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0640.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0640.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0640.png.import new file mode 100644 index 00000000..f834885c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0640.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl18ri0kk782b" +path="res://.godot/imported/tile_0640.png-74db09bfdbc62f78890a95851cb7f838.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0640.png" +dest_files=["res://.godot/imported/tile_0640.png-74db09bfdbc62f78890a95851cb7f838.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0641.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0641.png new file mode 100644 index 00000000..0b919ddb Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0641.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0641.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0641.png.import new file mode 100644 index 00000000..6f8e085f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0641.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diwi8q3ew7nii" +path="res://.godot/imported/tile_0641.png-1e348371fc0847353d6c9b118244a5c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0641.png" +dest_files=["res://.godot/imported/tile_0641.png-1e348371fc0847353d6c9b118244a5c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0642.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0642.png new file mode 100644 index 00000000..2d0b726c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0642.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0642.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0642.png.import new file mode 100644 index 00000000..9ab89178 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0642.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjq55sxdnxr14" +path="res://.godot/imported/tile_0642.png-13e75ba8a3f0221853b02c83317a17a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0642.png" +dest_files=["res://.godot/imported/tile_0642.png-13e75ba8a3f0221853b02c83317a17a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0643.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0643.png new file mode 100644 index 00000000..94a4dc90 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0643.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0643.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0643.png.import new file mode 100644 index 00000000..9d353280 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0643.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mfxsqw1dxwpw" +path="res://.godot/imported/tile_0643.png-9c77aeca7ff082927828c2cffc682d67.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0643.png" +dest_files=["res://.godot/imported/tile_0643.png-9c77aeca7ff082927828c2cffc682d67.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0644.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0644.png new file mode 100644 index 00000000..48467360 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0644.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0644.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0644.png.import new file mode 100644 index 00000000..90017801 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0644.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dliut3ml7gvse" +path="res://.godot/imported/tile_0644.png-8fee5bd223a648b62f2a224b578c1918.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0644.png" +dest_files=["res://.godot/imported/tile_0644.png-8fee5bd223a648b62f2a224b578c1918.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0645.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0645.png new file mode 100644 index 00000000..d424c374 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0645.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0645.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0645.png.import new file mode 100644 index 00000000..3b7be37a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0645.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chs60oar8k5nx" +path="res://.godot/imported/tile_0645.png-b98f30ed412e478b0e3b1e70247155cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0645.png" +dest_files=["res://.godot/imported/tile_0645.png-b98f30ed412e478b0e3b1e70247155cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0646.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0646.png new file mode 100644 index 00000000..1cfa1e65 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0646.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0646.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0646.png.import new file mode 100644 index 00000000..36b5dd9a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0646.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1hc5cbnt4kra" +path="res://.godot/imported/tile_0646.png-3bd0d72ca78f7a3c2a8b85189040dd96.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0646.png" +dest_files=["res://.godot/imported/tile_0646.png-3bd0d72ca78f7a3c2a8b85189040dd96.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0647.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0647.png new file mode 100644 index 00000000..559208ce Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0647.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0647.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0647.png.import new file mode 100644 index 00000000..2f05c615 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0647.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0ea3iknpbtus" +path="res://.godot/imported/tile_0647.png-a2b8f0e412f79ecf7461db1c71a14a05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0647.png" +dest_files=["res://.godot/imported/tile_0647.png-a2b8f0e412f79ecf7461db1c71a14a05.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0648.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0648.png new file mode 100644 index 00000000..b5f4b6fb Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0648.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0648.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0648.png.import new file mode 100644 index 00000000..960acae6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0648.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mtapfx5j4wgw" +path="res://.godot/imported/tile_0648.png-b465781ac41629da37282854570bf79b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0648.png" +dest_files=["res://.godot/imported/tile_0648.png-b465781ac41629da37282854570bf79b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0649.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0649.png new file mode 100644 index 00000000..a15f6436 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0649.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0649.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0649.png.import new file mode 100644 index 00000000..d24d5480 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0649.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chd5rfwj3tah3" +path="res://.godot/imported/tile_0649.png-9b21d2b9b2b58933382c6b8e7ddff27c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0649.png" +dest_files=["res://.godot/imported/tile_0649.png-9b21d2b9b2b58933382c6b8e7ddff27c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0650.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0650.png new file mode 100644 index 00000000..04a52f3b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0650.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0650.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0650.png.import new file mode 100644 index 00000000..6bfc248e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0650.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://26piw1lylfai" +path="res://.godot/imported/tile_0650.png-1e13825e1388b8147fa4054c390996e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0650.png" +dest_files=["res://.godot/imported/tile_0650.png-1e13825e1388b8147fa4054c390996e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0651.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0651.png new file mode 100644 index 00000000..337ef24b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0651.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0651.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0651.png.import new file mode 100644 index 00000000..716722a3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0651.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfmu7t0xf5kdf" +path="res://.godot/imported/tile_0651.png-0c08c0843980870e228df9cf40ffc711.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0651.png" +dest_files=["res://.godot/imported/tile_0651.png-0c08c0843980870e228df9cf40ffc711.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0652.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0652.png new file mode 100644 index 00000000..642ff73c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0652.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0652.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0652.png.import new file mode 100644 index 00000000..9184b25a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0652.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de2dl1xw2b55p" +path="res://.godot/imported/tile_0652.png-60a6aa7abdc977e1fe1b3a6b846728b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0652.png" +dest_files=["res://.godot/imported/tile_0652.png-60a6aa7abdc977e1fe1b3a6b846728b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0653.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0653.png new file mode 100644 index 00000000..7e547991 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0653.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0653.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0653.png.import new file mode 100644 index 00000000..57748c59 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0653.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpa11e7omarmg" +path="res://.godot/imported/tile_0653.png-a6f4ebd01eaa885511adb44f5a1d36c1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0653.png" +dest_files=["res://.godot/imported/tile_0653.png-a6f4ebd01eaa885511adb44f5a1d36c1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0654.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0654.png new file mode 100644 index 00000000..5d8cfd6e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0654.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0654.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0654.png.import new file mode 100644 index 00000000..32e15525 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0654.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cde18qf4wl1at" +path="res://.godot/imported/tile_0654.png-7c24b25e60e64e44a0c2c1edeb4bcae2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0654.png" +dest_files=["res://.godot/imported/tile_0654.png-7c24b25e60e64e44a0c2c1edeb4bcae2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0655.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0655.png new file mode 100644 index 00000000..11970684 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0655.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0655.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0655.png.import new file mode 100644 index 00000000..c71dffcf --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0655.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4fi17ieyxnta" +path="res://.godot/imported/tile_0655.png-a0d42ab666ca12426589e268d6ef4957.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0655.png" +dest_files=["res://.godot/imported/tile_0655.png-a0d42ab666ca12426589e268d6ef4957.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0656.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0656.png new file mode 100644 index 00000000..77321df5 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0656.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0656.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0656.png.import new file mode 100644 index 00000000..27828f8d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0656.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8uih8nocwwhy" +path="res://.godot/imported/tile_0656.png-1e552ff25c5fafcabb92df6a5714e912.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0656.png" +dest_files=["res://.godot/imported/tile_0656.png-1e552ff25c5fafcabb92df6a5714e912.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0657.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0657.png new file mode 100644 index 00000000..a6097a75 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0657.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0657.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0657.png.import new file mode 100644 index 00000000..e5581050 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0657.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg4s2rmthd6oi" +path="res://.godot/imported/tile_0657.png-7c6af86558453d6228e230761b2b3b00.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0657.png" +dest_files=["res://.godot/imported/tile_0657.png-7c6af86558453d6228e230761b2b3b00.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0658.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0658.png new file mode 100644 index 00000000..c75a1fbc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0658.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0658.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0658.png.import new file mode 100644 index 00000000..05107a5f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0658.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuxry3rrixio7" +path="res://.godot/imported/tile_0658.png-67e2825f80c7b338201c809005685073.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0658.png" +dest_files=["res://.godot/imported/tile_0658.png-67e2825f80c7b338201c809005685073.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0659.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0659.png new file mode 100644 index 00000000..f0de9999 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0659.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0659.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0659.png.import new file mode 100644 index 00000000..29c51dc8 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0659.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://40ukdkueqn6g" +path="res://.godot/imported/tile_0659.png-991b99e8f4d1a74a3aed44a0251b8fb9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0659.png" +dest_files=["res://.godot/imported/tile_0659.png-991b99e8f4d1a74a3aed44a0251b8fb9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0660.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0660.png new file mode 100644 index 00000000..66e43498 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0660.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0660.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0660.png.import new file mode 100644 index 00000000..2fa7ea8a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0660.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh443k22aagsa" +path="res://.godot/imported/tile_0660.png-13498a6e7194350d6bded84e99768a35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0660.png" +dest_files=["res://.godot/imported/tile_0660.png-13498a6e7194350d6bded84e99768a35.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0661.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0661.png new file mode 100644 index 00000000..e007fff4 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0661.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0661.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0661.png.import new file mode 100644 index 00000000..49b03def --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0661.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buxh7qulap42p" +path="res://.godot/imported/tile_0661.png-1356e0fc39b0870576e5d6c0863e13a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0661.png" +dest_files=["res://.godot/imported/tile_0661.png-1356e0fc39b0870576e5d6c0863e13a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0662.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0662.png new file mode 100644 index 00000000..97305ffc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0662.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0662.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0662.png.import new file mode 100644 index 00000000..16b38daa --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0662.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0400tf85a7jq" +path="res://.godot/imported/tile_0662.png-601d9cd490498513430c21869cadc61d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0662.png" +dest_files=["res://.godot/imported/tile_0662.png-601d9cd490498513430c21869cadc61d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0663.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0663.png new file mode 100644 index 00000000..8579654f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0663.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0663.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0663.png.import new file mode 100644 index 00000000..715afba5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0663.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvu7aw4skpevt" +path="res://.godot/imported/tile_0663.png-3b58d019243bc01655d6318085bd77e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0663.png" +dest_files=["res://.godot/imported/tile_0663.png-3b58d019243bc01655d6318085bd77e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0664.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0664.png new file mode 100644 index 00000000..d7cf937c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0664.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0664.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0664.png.import new file mode 100644 index 00000000..79a339d5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0664.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt7qx7o34iuls" +path="res://.godot/imported/tile_0664.png-3c259faff1e4a8ddebfcf166f23a2e97.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0664.png" +dest_files=["res://.godot/imported/tile_0664.png-3c259faff1e4a8ddebfcf166f23a2e97.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0665.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0665.png new file mode 100644 index 00000000..7595783e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0665.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0665.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0665.png.import new file mode 100644 index 00000000..7b30faec --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0665.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doo36p72vfv3r" +path="res://.godot/imported/tile_0665.png-84bcf663020aeec0509c427ab996c4e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0665.png" +dest_files=["res://.godot/imported/tile_0665.png-84bcf663020aeec0509c427ab996c4e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0666.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0666.png new file mode 100644 index 00000000..04738457 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0666.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0666.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0666.png.import new file mode 100644 index 00000000..2f525608 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0666.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj6dk6dvd7ew4" +path="res://.godot/imported/tile_0666.png-913fec51e0100d7275e1e92cb56b4282.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0666.png" +dest_files=["res://.godot/imported/tile_0666.png-913fec51e0100d7275e1e92cb56b4282.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0667.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0667.png new file mode 100644 index 00000000..d2aa61dd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0667.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0667.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0667.png.import new file mode 100644 index 00000000..6a2268aa --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0667.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5ainauvgnnnx" +path="res://.godot/imported/tile_0667.png-85298ba3f44c97afa32f03ead13cce29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0667.png" +dest_files=["res://.godot/imported/tile_0667.png-85298ba3f44c97afa32f03ead13cce29.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0668.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0668.png new file mode 100644 index 00000000..7b991efb Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0668.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0668.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0668.png.import new file mode 100644 index 00000000..4ae932e3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0668.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jvjehw7f3fpv" +path="res://.godot/imported/tile_0668.png-98602c9b66b50d138776566a8a85fd2e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0668.png" +dest_files=["res://.godot/imported/tile_0668.png-98602c9b66b50d138776566a8a85fd2e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0669.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0669.png new file mode 100644 index 00000000..e0bfeac9 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0669.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0669.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0669.png.import new file mode 100644 index 00000000..8cbdcef1 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0669.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc4jnd0jdc3k8" +path="res://.godot/imported/tile_0669.png-6f8febfc723c377fbc6201aebed40ede.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0669.png" +dest_files=["res://.godot/imported/tile_0669.png-6f8febfc723c377fbc6201aebed40ede.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0670.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0670.png new file mode 100644 index 00000000..6ce35894 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0670.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0670.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0670.png.import new file mode 100644 index 00000000..74d1c961 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0670.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xie2ufhov4qt" +path="res://.godot/imported/tile_0670.png-e46ce69b13d2cb425a0033bac72263da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0670.png" +dest_files=["res://.godot/imported/tile_0670.png-e46ce69b13d2cb425a0033bac72263da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0671.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0671.png new file mode 100644 index 00000000..efbf80a9 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0671.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0671.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0671.png.import new file mode 100644 index 00000000..efdc9821 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0671.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daskj17bwcys2" +path="res://.godot/imported/tile_0671.png-e149292820601f836b47360205ad2f5b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0671.png" +dest_files=["res://.godot/imported/tile_0671.png-e149292820601f836b47360205ad2f5b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0672.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0672.png new file mode 100644 index 00000000..e3e050bc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0672.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0672.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0672.png.import new file mode 100644 index 00000000..17a284c3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0672.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brhk262u5c1tn" +path="res://.godot/imported/tile_0672.png-ab18efb5161fe971a99172f76c9e00fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0672.png" +dest_files=["res://.godot/imported/tile_0672.png-ab18efb5161fe971a99172f76c9e00fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0673.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0673.png new file mode 100644 index 00000000..5add6c15 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0673.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0673.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0673.png.import new file mode 100644 index 00000000..aa659217 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0673.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs2b44numnf30" +path="res://.godot/imported/tile_0673.png-ae1e416a25fbfdf5fc5b14e3be26bede.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0673.png" +dest_files=["res://.godot/imported/tile_0673.png-ae1e416a25fbfdf5fc5b14e3be26bede.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0674.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0674.png new file mode 100644 index 00000000..1f7694c4 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0674.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0674.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0674.png.import new file mode 100644 index 00000000..11511830 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0674.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj2mtp2jwmirr" +path="res://.godot/imported/tile_0674.png-bd653c50ceeb9122354aa44cdfde7fb1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0674.png" +dest_files=["res://.godot/imported/tile_0674.png-bd653c50ceeb9122354aa44cdfde7fb1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0675.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0675.png new file mode 100644 index 00000000..09cbaffd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0675.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0675.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0675.png.import new file mode 100644 index 00000000..ff670b46 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0675.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vktgbitea7jy" +path="res://.godot/imported/tile_0675.png-855d39fd051f9a91b2c6e69abbae3cc6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0675.png" +dest_files=["res://.godot/imported/tile_0675.png-855d39fd051f9a91b2c6e69abbae3cc6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0676.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0676.png new file mode 100644 index 00000000..44bce1e3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0676.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0676.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0676.png.import new file mode 100644 index 00000000..352e4f7c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0676.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3cpo3b3dvhn1" +path="res://.godot/imported/tile_0676.png-52c898d86fa27d4cd7f473f0eb31929c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0676.png" +dest_files=["res://.godot/imported/tile_0676.png-52c898d86fa27d4cd7f473f0eb31929c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0677.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0677.png new file mode 100644 index 00000000..5561cb07 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0677.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0677.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0677.png.import new file mode 100644 index 00000000..bfdfd289 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0677.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bclixenl4ienr" +path="res://.godot/imported/tile_0677.png-2164f4b2c0250801533c4a365ce7a33a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0677.png" +dest_files=["res://.godot/imported/tile_0677.png-2164f4b2c0250801533c4a365ce7a33a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0678.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0678.png new file mode 100644 index 00000000..4866476f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0678.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0678.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0678.png.import new file mode 100644 index 00000000..07dab049 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0678.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://va6fwpwxngn3" +path="res://.godot/imported/tile_0678.png-f67573ff5a07b3a512ca21dcc8375acc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0678.png" +dest_files=["res://.godot/imported/tile_0678.png-f67573ff5a07b3a512ca21dcc8375acc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0679.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0679.png new file mode 100644 index 00000000..af35d422 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0679.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0679.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0679.png.import new file mode 100644 index 00000000..c9bd8310 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0679.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bucuuf8wa8m5j" +path="res://.godot/imported/tile_0679.png-de75ad8ce2ed1c0bd9ac3d05403896aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0679.png" +dest_files=["res://.godot/imported/tile_0679.png-de75ad8ce2ed1c0bd9ac3d05403896aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0680.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0680.png new file mode 100644 index 00000000..8b0f05db Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0680.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0680.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0680.png.import new file mode 100644 index 00000000..eb550241 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0680.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fjl4nprtp4fq" +path="res://.godot/imported/tile_0680.png-d8a8574913149bdb4ae5bb7692631569.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0680.png" +dest_files=["res://.godot/imported/tile_0680.png-d8a8574913149bdb4ae5bb7692631569.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0681.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0681.png new file mode 100644 index 00000000..a664d658 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0681.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0681.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0681.png.import new file mode 100644 index 00000000..a50beb17 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0681.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bi4bmgq5n2akc" +path="res://.godot/imported/tile_0681.png-81b5279b384035ab59db7dd13c4495cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0681.png" +dest_files=["res://.godot/imported/tile_0681.png-81b5279b384035ab59db7dd13c4495cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0682.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0682.png new file mode 100644 index 00000000..ac7fcf3e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0682.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0682.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0682.png.import new file mode 100644 index 00000000..28a20476 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0682.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdcnfkm6x11mh" +path="res://.godot/imported/tile_0682.png-273819bccbe4bec05cd6f0aa3682727c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0682.png" +dest_files=["res://.godot/imported/tile_0682.png-273819bccbe4bec05cd6f0aa3682727c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0683.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0683.png new file mode 100644 index 00000000..078c2575 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0683.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0683.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0683.png.import new file mode 100644 index 00000000..1202c27a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0683.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5j5lo2lpv6hr" +path="res://.godot/imported/tile_0683.png-e26d605e7634966f1394e8b7d8741620.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0683.png" +dest_files=["res://.godot/imported/tile_0683.png-e26d605e7634966f1394e8b7d8741620.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0684.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0684.png new file mode 100644 index 00000000..4431e9ce Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0684.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0684.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0684.png.import new file mode 100644 index 00000000..7bec93ab --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0684.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmehqt5574l64" +path="res://.godot/imported/tile_0684.png-6adbacd68d3dc370c4044c5183373b2a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0684.png" +dest_files=["res://.godot/imported/tile_0684.png-6adbacd68d3dc370c4044c5183373b2a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0685.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0685.png new file mode 100644 index 00000000..142c1b32 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0685.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0685.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0685.png.import new file mode 100644 index 00000000..bca4347c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0685.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnrbqmhr3m24r" +path="res://.godot/imported/tile_0685.png-750a4d89b5b23815a9a6002cc0c3f13b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0685.png" +dest_files=["res://.godot/imported/tile_0685.png-750a4d89b5b23815a9a6002cc0c3f13b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0686.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0686.png new file mode 100644 index 00000000..c0e66430 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0686.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0686.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0686.png.import new file mode 100644 index 00000000..2a43b0cb --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0686.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjiw7s50lt4ik" +path="res://.godot/imported/tile_0686.png-9c6b5c9a3b76f23030b3c0243e8521b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0686.png" +dest_files=["res://.godot/imported/tile_0686.png-9c6b5c9a3b76f23030b3c0243e8521b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0687.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0687.png new file mode 100644 index 00000000..da866538 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0687.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0687.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0687.png.import new file mode 100644 index 00000000..c53ef2c7 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0687.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jkr5qb3hhecj" +path="res://.godot/imported/tile_0687.png-fbaa4c8714c55379f0dfb35ab4185c45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0687.png" +dest_files=["res://.godot/imported/tile_0687.png-fbaa4c8714c55379f0dfb35ab4185c45.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0688.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0688.png new file mode 100644 index 00000000..0307fcb0 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0688.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0688.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0688.png.import new file mode 100644 index 00000000..6f49640e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0688.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqv5bdxlaq5uc" +path="res://.godot/imported/tile_0688.png-0a2f18f52a68956215ae37d288cd3157.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0688.png" +dest_files=["res://.godot/imported/tile_0688.png-0a2f18f52a68956215ae37d288cd3157.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0689.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0689.png new file mode 100644 index 00000000..a4f1b498 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0689.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0689.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0689.png.import new file mode 100644 index 00000000..bf04cad0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0689.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bu3nayosejx3p" +path="res://.godot/imported/tile_0689.png-8b657ee958eab29ed5e71161a509c712.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0689.png" +dest_files=["res://.godot/imported/tile_0689.png-8b657ee958eab29ed5e71161a509c712.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0690.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0690.png new file mode 100644 index 00000000..9aade2d6 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0690.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0690.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0690.png.import new file mode 100644 index 00000000..986ca884 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0690.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl3jb3nxe8xmj" +path="res://.godot/imported/tile_0690.png-490d9a90d8bab62e5212d9fcd20ce456.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0690.png" +dest_files=["res://.godot/imported/tile_0690.png-490d9a90d8bab62e5212d9fcd20ce456.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0691.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0691.png new file mode 100644 index 00000000..6096e67a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0691.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0691.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0691.png.import new file mode 100644 index 00000000..6ef8bad4 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0691.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfig32knsno1o" +path="res://.godot/imported/tile_0691.png-11400a246f7ce5215bac2138b6a5b50d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0691.png" +dest_files=["res://.godot/imported/tile_0691.png-11400a246f7ce5215bac2138b6a5b50d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0692.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0692.png new file mode 100644 index 00000000..4cdca32d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0692.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0692.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0692.png.import new file mode 100644 index 00000000..24e1fba7 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0692.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1iuh08cp52c4" +path="res://.godot/imported/tile_0692.png-a4d46820e721b77dc1d6daf437752807.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0692.png" +dest_files=["res://.godot/imported/tile_0692.png-a4d46820e721b77dc1d6daf437752807.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0693.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0693.png new file mode 100644 index 00000000..64a2973a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0693.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0693.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0693.png.import new file mode 100644 index 00000000..a1ac7efb --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0693.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh6fmwff7ka8l" +path="res://.godot/imported/tile_0693.png-18af84473222be1e1bc49603ba3ee385.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0693.png" +dest_files=["res://.godot/imported/tile_0693.png-18af84473222be1e1bc49603ba3ee385.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0694.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0694.png new file mode 100644 index 00000000..6150aaf3 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0694.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0694.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0694.png.import new file mode 100644 index 00000000..26b78226 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0694.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1yupto78axq8" +path="res://.godot/imported/tile_0694.png-40f84bfcd92ae3ade4ad0d5ad78bfce3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0694.png" +dest_files=["res://.godot/imported/tile_0694.png-40f84bfcd92ae3ade4ad0d5ad78bfce3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0695.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0695.png new file mode 100644 index 00000000..1188ab47 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0695.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0695.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0695.png.import new file mode 100644 index 00000000..6bab7926 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0695.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qkbmdqloey5d" +path="res://.godot/imported/tile_0695.png-b1a97707f496eb02202efa88e64808f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0695.png" +dest_files=["res://.godot/imported/tile_0695.png-b1a97707f496eb02202efa88e64808f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0696.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0696.png new file mode 100644 index 00000000..b46fa7bf Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0696.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0696.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0696.png.import new file mode 100644 index 00000000..c26e9f75 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0696.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c708un6mxb7lv" +path="res://.godot/imported/tile_0696.png-f297e1c7b6a7d828fc2417df9bf9840f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0696.png" +dest_files=["res://.godot/imported/tile_0696.png-f297e1c7b6a7d828fc2417df9bf9840f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0697.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0697.png new file mode 100644 index 00000000..1ae17383 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0697.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0697.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0697.png.import new file mode 100644 index 00000000..d7f78de2 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0697.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg8c0wn1gdfct" +path="res://.godot/imported/tile_0697.png-e5e75d57009c2c46d940247dba7c34e4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0697.png" +dest_files=["res://.godot/imported/tile_0697.png-e5e75d57009c2c46d940247dba7c34e4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0698.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0698.png new file mode 100644 index 00000000..edd8659a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0698.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0698.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0698.png.import new file mode 100644 index 00000000..d68f847f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0698.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqfw57krj0ojn" +path="res://.godot/imported/tile_0698.png-1a5b1cbb88de388335c4e8823b795903.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0698.png" +dest_files=["res://.godot/imported/tile_0698.png-1a5b1cbb88de388335c4e8823b795903.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0699.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0699.png new file mode 100644 index 00000000..d3c53655 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0699.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0699.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0699.png.import new file mode 100644 index 00000000..53ccee8d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0699.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xrmnbo80gm4c" +path="res://.godot/imported/tile_0699.png-bf9f1829c140de71a10182968e1cd05d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0699.png" +dest_files=["res://.godot/imported/tile_0699.png-bf9f1829c140de71a10182968e1cd05d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0700.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0700.png new file mode 100644 index 00000000..0c19d887 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0700.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0700.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0700.png.import new file mode 100644 index 00000000..b518acfa --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0700.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmc5sr5r3ufbk" +path="res://.godot/imported/tile_0700.png-003b0b320a927a7bbbc5255b25b1445a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0700.png" +dest_files=["res://.godot/imported/tile_0700.png-003b0b320a927a7bbbc5255b25b1445a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0701.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0701.png new file mode 100644 index 00000000..62874e25 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0701.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0701.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0701.png.import new file mode 100644 index 00000000..372c120f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0701.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2uskkvw3iafv" +path="res://.godot/imported/tile_0701.png-5f966309ad273413eb148102782c73d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0701.png" +dest_files=["res://.godot/imported/tile_0701.png-5f966309ad273413eb148102782c73d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0702.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0702.png new file mode 100644 index 00000000..520f4bfa Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0702.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0702.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0702.png.import new file mode 100644 index 00000000..497df338 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0702.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d04qo8ir88bfp" +path="res://.godot/imported/tile_0702.png-799383a0acfae9c83b52ca58254296b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0702.png" +dest_files=["res://.godot/imported/tile_0702.png-799383a0acfae9c83b52ca58254296b9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0703.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0703.png new file mode 100644 index 00000000..473b2aa4 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0703.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0703.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0703.png.import new file mode 100644 index 00000000..d345ea46 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0703.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7afywh1282w8" +path="res://.godot/imported/tile_0703.png-539c6137c11b45fa26c965c999951199.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0703.png" +dest_files=["res://.godot/imported/tile_0703.png-539c6137c11b45fa26c965c999951199.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0704.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0704.png new file mode 100644 index 00000000..bee03086 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0704.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0704.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0704.png.import new file mode 100644 index 00000000..017932c0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0704.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crp2l1wii813s" +path="res://.godot/imported/tile_0704.png-69442ebcc971ff7723d326a22b7db8e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0704.png" +dest_files=["res://.godot/imported/tile_0704.png-69442ebcc971ff7723d326a22b7db8e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0705.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0705.png new file mode 100644 index 00000000..73f29be2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0705.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0705.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0705.png.import new file mode 100644 index 00000000..4f8ddcb0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0705.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csk4irjo5ng4v" +path="res://.godot/imported/tile_0705.png-72ec07f7fce80ce040f39f186498c9b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0705.png" +dest_files=["res://.godot/imported/tile_0705.png-72ec07f7fce80ce040f39f186498c9b9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0706.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0706.png new file mode 100644 index 00000000..b5c99e28 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0706.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0706.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0706.png.import new file mode 100644 index 00000000..3ed4e836 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0706.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://118wy23xynnu" +path="res://.godot/imported/tile_0706.png-f34fd2f52d71a52715359d842ec3dff3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0706.png" +dest_files=["res://.godot/imported/tile_0706.png-f34fd2f52d71a52715359d842ec3dff3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0707.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0707.png new file mode 100644 index 00000000..4c6b8705 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0707.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0707.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0707.png.import new file mode 100644 index 00000000..80af490c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0707.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bd27i3f4lnsl0" +path="res://.godot/imported/tile_0707.png-851f6fdf15abe84498cd17d113724809.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0707.png" +dest_files=["res://.godot/imported/tile_0707.png-851f6fdf15abe84498cd17d113724809.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0708.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0708.png new file mode 100644 index 00000000..a38bd639 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0708.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0708.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0708.png.import new file mode 100644 index 00000000..2c14b779 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0708.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6evmjg8jtn3o" +path="res://.godot/imported/tile_0708.png-9d32725b7b5f096bb759f2d41281f0b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0708.png" +dest_files=["res://.godot/imported/tile_0708.png-9d32725b7b5f096bb759f2d41281f0b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0709.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0709.png new file mode 100644 index 00000000..defab4e9 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0709.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0709.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0709.png.import new file mode 100644 index 00000000..d89d53fc --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0709.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p1aom32et2u0" +path="res://.godot/imported/tile_0709.png-a8852c0a7c3754fc82f65169504e6c1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0709.png" +dest_files=["res://.godot/imported/tile_0709.png-a8852c0a7c3754fc82f65169504e6c1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0710.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0710.png new file mode 100644 index 00000000..5d5f9d86 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0710.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0710.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0710.png.import new file mode 100644 index 00000000..56732791 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0710.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ct0akgatsww0q" +path="res://.godot/imported/tile_0710.png-9eda156e7f715e200d0d35dad636c69b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0710.png" +dest_files=["res://.godot/imported/tile_0710.png-9eda156e7f715e200d0d35dad636c69b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0711.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0711.png new file mode 100644 index 00000000..2c707b5f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0711.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0711.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0711.png.import new file mode 100644 index 00000000..89f80782 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0711.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pkgduadinbn3" +path="res://.godot/imported/tile_0711.png-2bc753c63247ff3387b485cceb093068.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0711.png" +dest_files=["res://.godot/imported/tile_0711.png-2bc753c63247ff3387b485cceb093068.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0712.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0712.png new file mode 100644 index 00000000..83446c7d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0712.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0712.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0712.png.import new file mode 100644 index 00000000..a94c4056 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0712.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c03s0qjqur2hy" +path="res://.godot/imported/tile_0712.png-4606a23d3c4cc8037b2147e47e8cac2f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0712.png" +dest_files=["res://.godot/imported/tile_0712.png-4606a23d3c4cc8037b2147e47e8cac2f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0713.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0713.png new file mode 100644 index 00000000..4412e597 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0713.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0713.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0713.png.import new file mode 100644 index 00000000..8a8d295d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0713.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4b56cijtj3bl" +path="res://.godot/imported/tile_0713.png-cf9835029f820ef197e31ea976a98bf9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0713.png" +dest_files=["res://.godot/imported/tile_0713.png-cf9835029f820ef197e31ea976a98bf9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0714.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0714.png new file mode 100644 index 00000000..cfc574e1 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0714.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0714.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0714.png.import new file mode 100644 index 00000000..e1e08639 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0714.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://46mgygddtyh5" +path="res://.godot/imported/tile_0714.png-c17f33b227273ffae4c104caf5934347.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0714.png" +dest_files=["res://.godot/imported/tile_0714.png-c17f33b227273ffae4c104caf5934347.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0715.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0715.png new file mode 100644 index 00000000..84b5ec22 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0715.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0715.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0715.png.import new file mode 100644 index 00000000..3b774ad9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0715.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cerdkxoqf5d55" +path="res://.godot/imported/tile_0715.png-0bc81f69763cfb5cddb8d43c2d60f855.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0715.png" +dest_files=["res://.godot/imported/tile_0715.png-0bc81f69763cfb5cddb8d43c2d60f855.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0716.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0716.png new file mode 100644 index 00000000..a308a445 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0716.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0716.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0716.png.import new file mode 100644 index 00000000..68328cd1 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0716.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2innxf2qxma" +path="res://.godot/imported/tile_0716.png-c463dd389d5141f694fd57d3a8a52288.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0716.png" +dest_files=["res://.godot/imported/tile_0716.png-c463dd389d5141f694fd57d3a8a52288.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0717.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0717.png new file mode 100644 index 00000000..66916573 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0717.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0717.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0717.png.import new file mode 100644 index 00000000..6392e22e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0717.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3u3ywqfoten" +path="res://.godot/imported/tile_0717.png-910959e13de0788ee1c2b9a66f5ef52e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0717.png" +dest_files=["res://.godot/imported/tile_0717.png-910959e13de0788ee1c2b9a66f5ef52e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0718.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0718.png new file mode 100644 index 00000000..97dcce9b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0718.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0718.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0718.png.import new file mode 100644 index 00000000..98ee6ca0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0718.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhctyfpxh3o2q" +path="res://.godot/imported/tile_0718.png-54cde781b6f66f2c5c3754e6348b51a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0718.png" +dest_files=["res://.godot/imported/tile_0718.png-54cde781b6f66f2c5c3754e6348b51a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0719.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0719.png new file mode 100644 index 00000000..ce6b41c6 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0719.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0719.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0719.png.import new file mode 100644 index 00000000..b7ae7662 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0719.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djar84lktxcdl" +path="res://.godot/imported/tile_0719.png-536027d2f8075f23095f0fe35319fcbf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0719.png" +dest_files=["res://.godot/imported/tile_0719.png-536027d2f8075f23095f0fe35319fcbf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0720.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0720.png new file mode 100644 index 00000000..06b5337d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0720.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0720.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0720.png.import new file mode 100644 index 00000000..1141a1fd --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0720.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blcaov2bbttbo" +path="res://.godot/imported/tile_0720.png-fac48512222bb1d349b8f47214f62d95.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0720.png" +dest_files=["res://.godot/imported/tile_0720.png-fac48512222bb1d349b8f47214f62d95.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0721.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0721.png new file mode 100644 index 00000000..8339e11f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0721.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0721.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0721.png.import new file mode 100644 index 00000000..acada4c3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0721.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtfd7koxcgn58" +path="res://.godot/imported/tile_0721.png-48ce38b5022c087db7e2b6a8befb63bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0721.png" +dest_files=["res://.godot/imported/tile_0721.png-48ce38b5022c087db7e2b6a8befb63bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0722.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0722.png new file mode 100644 index 00000000..de990405 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0722.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0722.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0722.png.import new file mode 100644 index 00000000..808c8edf --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0722.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ci2ro2jbahpjb" +path="res://.godot/imported/tile_0722.png-5cf5f18441bffcb023e1af4ec49ba5b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0722.png" +dest_files=["res://.godot/imported/tile_0722.png-5cf5f18441bffcb023e1af4ec49ba5b9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0723.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0723.png new file mode 100644 index 00000000..639c2d23 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0723.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0723.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0723.png.import new file mode 100644 index 00000000..55890999 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0723.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b47gtooo8yspw" +path="res://.godot/imported/tile_0723.png-2bfa64850df49dc7819d7d0098d6e80e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0723.png" +dest_files=["res://.godot/imported/tile_0723.png-2bfa64850df49dc7819d7d0098d6e80e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0724.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0724.png new file mode 100644 index 00000000..991bef25 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0724.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0724.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0724.png.import new file mode 100644 index 00000000..baddb824 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0724.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbecq36ihshr0" +path="res://.godot/imported/tile_0724.png-9018dbee53a18ac110a1dbbefa349921.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0724.png" +dest_files=["res://.godot/imported/tile_0724.png-9018dbee53a18ac110a1dbbefa349921.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0725.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0725.png new file mode 100644 index 00000000..e7d6c7a0 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0725.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0725.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0725.png.import new file mode 100644 index 00000000..f840fabe --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0725.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bji81hbwcbxkh" +path="res://.godot/imported/tile_0725.png-cc7cd032ab99c3052018633149fd28a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0725.png" +dest_files=["res://.godot/imported/tile_0725.png-cc7cd032ab99c3052018633149fd28a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0726.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0726.png new file mode 100644 index 00000000..34ed222c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0726.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0726.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0726.png.import new file mode 100644 index 00000000..6c52890f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0726.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daump6grmo1as" +path="res://.godot/imported/tile_0726.png-034492e825e992c048742861b9db8fd0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0726.png" +dest_files=["res://.godot/imported/tile_0726.png-034492e825e992c048742861b9db8fd0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0727.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0727.png new file mode 100644 index 00000000..7df133f6 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0727.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0727.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0727.png.import new file mode 100644 index 00000000..0578374a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0727.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpa3sc38g62q2" +path="res://.godot/imported/tile_0727.png-5b6c0536bf183d862fa6ed0e5358a8f2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0727.png" +dest_files=["res://.godot/imported/tile_0727.png-5b6c0536bf183d862fa6ed0e5358a8f2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0728.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0728.png new file mode 100644 index 00000000..dbb33c6a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0728.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0728.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0728.png.import new file mode 100644 index 00000000..ff17568c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0728.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cct661mxe8a8" +path="res://.godot/imported/tile_0728.png-e1ab04fb8a66130a79a377b5f47a5c02.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0728.png" +dest_files=["res://.godot/imported/tile_0728.png-e1ab04fb8a66130a79a377b5f47a5c02.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0729.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0729.png new file mode 100644 index 00000000..dc538566 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0729.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0729.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0729.png.import new file mode 100644 index 00000000..ee0ea986 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0729.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfa5mn3dsdvw6" +path="res://.godot/imported/tile_0729.png-8d6554f70e10977a7086c6cafc1a7a7d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0729.png" +dest_files=["res://.godot/imported/tile_0729.png-8d6554f70e10977a7086c6cafc1a7a7d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0730.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0730.png new file mode 100644 index 00000000..5faca4a7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0730.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0730.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0730.png.import new file mode 100644 index 00000000..b4baeaac --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0730.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5p345ry40tlp" +path="res://.godot/imported/tile_0730.png-db647f7b402e61cb472d3edcc2776905.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0730.png" +dest_files=["res://.godot/imported/tile_0730.png-db647f7b402e61cb472d3edcc2776905.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0731.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0731.png new file mode 100644 index 00000000..7d06d636 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0731.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0731.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0731.png.import new file mode 100644 index 00000000..aee5c615 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0731.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqlwelbfjsvwb" +path="res://.godot/imported/tile_0731.png-6520e45e0e49690857a3d16f28fb490a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0731.png" +dest_files=["res://.godot/imported/tile_0731.png-6520e45e0e49690857a3d16f28fb490a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0732.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0732.png new file mode 100644 index 00000000..142312a6 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0732.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0732.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0732.png.import new file mode 100644 index 00000000..cb57a5b3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0732.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0hxh253uemia" +path="res://.godot/imported/tile_0732.png-8f4dc2e0b7782d472f13d1c8193002fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0732.png" +dest_files=["res://.godot/imported/tile_0732.png-8f4dc2e0b7782d472f13d1c8193002fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0733.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0733.png new file mode 100644 index 00000000..7d0a5e41 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0733.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0733.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0733.png.import new file mode 100644 index 00000000..b03ab590 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0733.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqyuit2ga7orq" +path="res://.godot/imported/tile_0733.png-4c9f1a4aeb0e12d37abcfb931d037694.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0733.png" +dest_files=["res://.godot/imported/tile_0733.png-4c9f1a4aeb0e12d37abcfb931d037694.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0734.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0734.png new file mode 100644 index 00000000..939ff0bd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0734.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0734.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0734.png.import new file mode 100644 index 00000000..91be4c39 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0734.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctawytrheouej" +path="res://.godot/imported/tile_0734.png-6ec2af33edd61e3830b35dc14333305a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0734.png" +dest_files=["res://.godot/imported/tile_0734.png-6ec2af33edd61e3830b35dc14333305a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0735.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0735.png new file mode 100644 index 00000000..80984c48 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0735.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0735.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0735.png.import new file mode 100644 index 00000000..afcdf89f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0735.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgaf48hk00v2c" +path="res://.godot/imported/tile_0735.png-9e663ac117852b8aded013f001a6f16e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0735.png" +dest_files=["res://.godot/imported/tile_0735.png-9e663ac117852b8aded013f001a6f16e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0736.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0736.png new file mode 100644 index 00000000..14f2f507 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0736.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0736.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0736.png.import new file mode 100644 index 00000000..382eae1a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0736.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c60xncjpa4axy" +path="res://.godot/imported/tile_0736.png-f572e218ae2881e06b6398406754fcef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0736.png" +dest_files=["res://.godot/imported/tile_0736.png-f572e218ae2881e06b6398406754fcef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0737.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0737.png new file mode 100644 index 00000000..699f8491 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0737.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0737.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0737.png.import new file mode 100644 index 00000000..a2c67e33 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0737.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwenebqspxmqo" +path="res://.godot/imported/tile_0737.png-9e2a10e79e8db2b556afb9fc353dd8a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0737.png" +dest_files=["res://.godot/imported/tile_0737.png-9e2a10e79e8db2b556afb9fc353dd8a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0738.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0738.png new file mode 100644 index 00000000..271d6a91 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0738.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0738.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0738.png.import new file mode 100644 index 00000000..2d13d700 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0738.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8od6arek4ejy" +path="res://.godot/imported/tile_0738.png-9d3e963d73b1e135cbbc458182685e6a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0738.png" +dest_files=["res://.godot/imported/tile_0738.png-9d3e963d73b1e135cbbc458182685e6a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0739.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0739.png new file mode 100644 index 00000000..5ac3b3a7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0739.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0739.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0739.png.import new file mode 100644 index 00000000..d64883af --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0739.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdwedye1r2yjf" +path="res://.godot/imported/tile_0739.png-b0cec0965bd277effcadce3f5543d3ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0739.png" +dest_files=["res://.godot/imported/tile_0739.png-b0cec0965bd277effcadce3f5543d3ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0740.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0740.png new file mode 100644 index 00000000..8546d9c0 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0740.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0740.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0740.png.import new file mode 100644 index 00000000..87e59dab --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0740.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://476e47g5qk8e" +path="res://.godot/imported/tile_0740.png-6ad6a45ed3dad22f4fad53acd4422b44.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0740.png" +dest_files=["res://.godot/imported/tile_0740.png-6ad6a45ed3dad22f4fad53acd4422b44.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0741.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0741.png new file mode 100644 index 00000000..fd788d2e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0741.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0741.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0741.png.import new file mode 100644 index 00000000..1d02f1d1 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0741.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdbn6etrypn1i" +path="res://.godot/imported/tile_0741.png-34938aa3d599194288a959a55f52e988.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0741.png" +dest_files=["res://.godot/imported/tile_0741.png-34938aa3d599194288a959a55f52e988.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0742.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0742.png new file mode 100644 index 00000000..a80468bc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0742.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0742.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0742.png.import new file mode 100644 index 00000000..97b6e3dd --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0742.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://efpi2boa7qo5" +path="res://.godot/imported/tile_0742.png-c4a01d114d550f4ebbb15571a54b2c68.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0742.png" +dest_files=["res://.godot/imported/tile_0742.png-c4a01d114d550f4ebbb15571a54b2c68.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0743.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0743.png new file mode 100644 index 00000000..bdcb0fa5 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0743.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0743.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0743.png.import new file mode 100644 index 00000000..3811fa45 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0743.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pxsn210okajf" +path="res://.godot/imported/tile_0743.png-ceab5ede917fbd8ae88889dada8c5170.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0743.png" +dest_files=["res://.godot/imported/tile_0743.png-ceab5ede917fbd8ae88889dada8c5170.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0744.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0744.png new file mode 100644 index 00000000..45c0db4e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0744.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0744.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0744.png.import new file mode 100644 index 00000000..fdd8f090 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0744.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwgko6nkvj3o6" +path="res://.godot/imported/tile_0744.png-d505d21aac373ff6c41aabc27b8d2b57.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0744.png" +dest_files=["res://.godot/imported/tile_0744.png-d505d21aac373ff6c41aabc27b8d2b57.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0745.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0745.png new file mode 100644 index 00000000..813af3bb Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0745.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0745.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0745.png.import new file mode 100644 index 00000000..196e730f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0745.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfndluvlfbeh0" +path="res://.godot/imported/tile_0745.png-b0a267a4589c15685172a3def4a25158.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0745.png" +dest_files=["res://.godot/imported/tile_0745.png-b0a267a4589c15685172a3def4a25158.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0746.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0746.png new file mode 100644 index 00000000..ad6c6e2a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0746.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0746.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0746.png.import new file mode 100644 index 00000000..bf4dcd2a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0746.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://35i3e7l0k1go" +path="res://.godot/imported/tile_0746.png-1ab5f7c236a6418b6ec968c310388230.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0746.png" +dest_files=["res://.godot/imported/tile_0746.png-1ab5f7c236a6418b6ec968c310388230.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0747.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0747.png new file mode 100644 index 00000000..e0b90465 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0747.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0747.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0747.png.import new file mode 100644 index 00000000..70a22b4d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0747.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy0odedr6xy35" +path="res://.godot/imported/tile_0747.png-ea9d82cee699baecc64109abfaa495dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0747.png" +dest_files=["res://.godot/imported/tile_0747.png-ea9d82cee699baecc64109abfaa495dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0748.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0748.png new file mode 100644 index 00000000..2a07dd34 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0748.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0748.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0748.png.import new file mode 100644 index 00000000..c915295d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0748.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fa4o1u2edt7g" +path="res://.godot/imported/tile_0748.png-53475005bfcbf0bcb45b908020a8fb7b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0748.png" +dest_files=["res://.godot/imported/tile_0748.png-53475005bfcbf0bcb45b908020a8fb7b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0749.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0749.png new file mode 100644 index 00000000..467755ed Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0749.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0749.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0749.png.import new file mode 100644 index 00000000..18997549 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0749.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckf6sg4edv2ab" +path="res://.godot/imported/tile_0749.png-bc6ff4bc238fdf0fc78c2755c5b0f8d4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0749.png" +dest_files=["res://.godot/imported/tile_0749.png-bc6ff4bc238fdf0fc78c2755c5b0f8d4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0750.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0750.png new file mode 100644 index 00000000..dc393e6c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0750.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0750.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0750.png.import new file mode 100644 index 00000000..d947b0f9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0750.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p1jbpbti4m8f" +path="res://.godot/imported/tile_0750.png-dfb0c2b7981feed5a3db6f0207273fe0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0750.png" +dest_files=["res://.godot/imported/tile_0750.png-dfb0c2b7981feed5a3db6f0207273fe0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0751.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0751.png new file mode 100644 index 00000000..4ab1236a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0751.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0751.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0751.png.import new file mode 100644 index 00000000..6b06ed0d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0751.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8rupypn633ke" +path="res://.godot/imported/tile_0751.png-a4058851b73a21d78a856b65aa30f471.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0751.png" +dest_files=["res://.godot/imported/tile_0751.png-a4058851b73a21d78a856b65aa30f471.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0752.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0752.png new file mode 100644 index 00000000..e19d869f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0752.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0752.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0752.png.import new file mode 100644 index 00000000..253e9dd9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0752.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ekqeuws76fmg" +path="res://.godot/imported/tile_0752.png-9a002c93115f81e2edcea7b94d4d6836.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0752.png" +dest_files=["res://.godot/imported/tile_0752.png-9a002c93115f81e2edcea7b94d4d6836.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0753.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0753.png new file mode 100644 index 00000000..f27bbc4f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0753.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0753.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0753.png.import new file mode 100644 index 00000000..4548dfb8 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0753.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c132bb4qd6jyd" +path="res://.godot/imported/tile_0753.png-140de7fc0e69e7c16a2752dbb1bc0b24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0753.png" +dest_files=["res://.godot/imported/tile_0753.png-140de7fc0e69e7c16a2752dbb1bc0b24.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0754.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0754.png new file mode 100644 index 00000000..ac8daaa7 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0754.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0754.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0754.png.import new file mode 100644 index 00000000..16edb51e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0754.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8ekwigo7v3c6" +path="res://.godot/imported/tile_0754.png-cdfc6dd89d8154a03566ea40ffddff95.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0754.png" +dest_files=["res://.godot/imported/tile_0754.png-cdfc6dd89d8154a03566ea40ffddff95.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0755.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0755.png new file mode 100644 index 00000000..aa11743f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0755.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0755.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0755.png.import new file mode 100644 index 00000000..c2f516c0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0755.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjxgk0v6d3gui" +path="res://.godot/imported/tile_0755.png-22fe3b39f1057199b83dfad6e6a09c38.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0755.png" +dest_files=["res://.godot/imported/tile_0755.png-22fe3b39f1057199b83dfad6e6a09c38.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0756.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0756.png new file mode 100644 index 00000000..ab8b50cb Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0756.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0756.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0756.png.import new file mode 100644 index 00000000..02767bdc --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0756.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6yg1214op5dn" +path="res://.godot/imported/tile_0756.png-95bda72925f1c1c82c5e0c4de468f90a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0756.png" +dest_files=["res://.godot/imported/tile_0756.png-95bda72925f1c1c82c5e0c4de468f90a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0757.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0757.png new file mode 100644 index 00000000..babef621 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0757.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0757.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0757.png.import new file mode 100644 index 00000000..c5b388c2 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0757.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4vm60wbcol2w" +path="res://.godot/imported/tile_0757.png-33fc9adc253dd82525dbe2ba7dcebcd9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0757.png" +dest_files=["res://.godot/imported/tile_0757.png-33fc9adc253dd82525dbe2ba7dcebcd9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0758.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0758.png new file mode 100644 index 00000000..05028307 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0758.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0758.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0758.png.import new file mode 100644 index 00000000..da926990 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0758.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq7p57kqgbnmw" +path="res://.godot/imported/tile_0758.png-aba165336478b1deb211976ef7e20174.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0758.png" +dest_files=["res://.godot/imported/tile_0758.png-aba165336478b1deb211976ef7e20174.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0759.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0759.png new file mode 100644 index 00000000..b1238e7d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0759.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0759.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0759.png.import new file mode 100644 index 00000000..a7c54d0d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0759.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://so6ibfom5s6v" +path="res://.godot/imported/tile_0759.png-f4f027a77a75788d065d4ef45b254f45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0759.png" +dest_files=["res://.godot/imported/tile_0759.png-f4f027a77a75788d065d4ef45b254f45.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0760.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0760.png new file mode 100644 index 00000000..3afef611 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0760.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0760.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0760.png.import new file mode 100644 index 00000000..aafa47eb --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0760.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj6bv1hcam13h" +path="res://.godot/imported/tile_0760.png-20010c24ddba1e92fb85ba5e3bd4dfb3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0760.png" +dest_files=["res://.godot/imported/tile_0760.png-20010c24ddba1e92fb85ba5e3bd4dfb3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0761.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0761.png new file mode 100644 index 00000000..b5f4b8d8 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0761.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0761.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0761.png.import new file mode 100644 index 00000000..91f503c3 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0761.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bv1m1rg3tiyc" +path="res://.godot/imported/tile_0761.png-b5b76c3d237777095a17619a71f38038.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0761.png" +dest_files=["res://.godot/imported/tile_0761.png-b5b76c3d237777095a17619a71f38038.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0762.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0762.png new file mode 100644 index 00000000..1998db6c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0762.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0762.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0762.png.import new file mode 100644 index 00000000..2934702f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0762.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyab6xio24s5h" +path="res://.godot/imported/tile_0762.png-b6ef4cb8de295579871edeb52f11ff44.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0762.png" +dest_files=["res://.godot/imported/tile_0762.png-b6ef4cb8de295579871edeb52f11ff44.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0763.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0763.png new file mode 100644 index 00000000..298ecdaf Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0763.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0763.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0763.png.import new file mode 100644 index 00000000..9484486e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0763.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n4hywdifr1q4" +path="res://.godot/imported/tile_0763.png-80cf997a39a717bdf44d2e5684e7303d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0763.png" +dest_files=["res://.godot/imported/tile_0763.png-80cf997a39a717bdf44d2e5684e7303d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0764.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0764.png new file mode 100644 index 00000000..db954c2f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0764.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0764.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0764.png.import new file mode 100644 index 00000000..e89f908c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0764.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwcc0mjxxm0w1" +path="res://.godot/imported/tile_0764.png-405365bae3c10b47d68b16b2f2467d2a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0764.png" +dest_files=["res://.godot/imported/tile_0764.png-405365bae3c10b47d68b16b2f2467d2a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0765.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0765.png new file mode 100644 index 00000000..47b1bbed Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0765.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0765.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0765.png.import new file mode 100644 index 00000000..fed68056 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0765.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmqsj8r8dnvlw" +path="res://.godot/imported/tile_0765.png-73811b69258b09ab369ddb52f0a6f91d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0765.png" +dest_files=["res://.godot/imported/tile_0765.png-73811b69258b09ab369ddb52f0a6f91d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0766.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0766.png new file mode 100644 index 00000000..0c8ef645 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0766.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0766.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0766.png.import new file mode 100644 index 00000000..cc9cccc9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0766.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4dvhlcsplo1h" +path="res://.godot/imported/tile_0766.png-bb73dc0bf160f049b8d62e093632ff9d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0766.png" +dest_files=["res://.godot/imported/tile_0766.png-bb73dc0bf160f049b8d62e093632ff9d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0767.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0767.png new file mode 100644 index 00000000..a95e28fd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0767.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0767.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0767.png.import new file mode 100644 index 00000000..5e530758 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0767.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d35eg566qaq88" +path="res://.godot/imported/tile_0767.png-814f5721b4cac54363ba1b3881ed63a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0767.png" +dest_files=["res://.godot/imported/tile_0767.png-814f5721b4cac54363ba1b3881ed63a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0768.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0768.png new file mode 100644 index 00000000..de9360b1 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0768.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0768.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0768.png.import new file mode 100644 index 00000000..e0b38700 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0768.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbr1ynfdpr0q4" +path="res://.godot/imported/tile_0768.png-8767545de9dd7d29a6fdca41c0b133bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0768.png" +dest_files=["res://.godot/imported/tile_0768.png-8767545de9dd7d29a6fdca41c0b133bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0769.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0769.png new file mode 100644 index 00000000..5c60c6e5 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0769.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0769.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0769.png.import new file mode 100644 index 00000000..0d3f3c1a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0769.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mw7bqato8vw8" +path="res://.godot/imported/tile_0769.png-3cf8eb9efa19c379b2ca609054aaf3f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0769.png" +dest_files=["res://.godot/imported/tile_0769.png-3cf8eb9efa19c379b2ca609054aaf3f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0770.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0770.png new file mode 100644 index 00000000..0cd9bf08 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0770.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0770.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0770.png.import new file mode 100644 index 00000000..b8abdf23 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0770.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bebet0d34ccq7" +path="res://.godot/imported/tile_0770.png-7799dcdfeabb82795ac53642e08d03a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0770.png" +dest_files=["res://.godot/imported/tile_0770.png-7799dcdfeabb82795ac53642e08d03a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0771.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0771.png new file mode 100644 index 00000000..0539edf2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0771.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0771.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0771.png.import new file mode 100644 index 00000000..ad6db289 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0771.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsdfklq4xpjit" +path="res://.godot/imported/tile_0771.png-c102f7c2f296643843e96c1552a3a60b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0771.png" +dest_files=["res://.godot/imported/tile_0771.png-c102f7c2f296643843e96c1552a3a60b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0772.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0772.png new file mode 100644 index 00000000..17818542 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0772.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0772.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0772.png.import new file mode 100644 index 00000000..9730cb14 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0772.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch5exeit2c7it" +path="res://.godot/imported/tile_0772.png-f063c89ef6d38335bdc2cda185b84c84.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0772.png" +dest_files=["res://.godot/imported/tile_0772.png-f063c89ef6d38335bdc2cda185b84c84.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0773.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0773.png new file mode 100644 index 00000000..ec16ed6c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0773.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0773.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0773.png.import new file mode 100644 index 00000000..28bc8a81 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0773.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b166rm7l8vq8q" +path="res://.godot/imported/tile_0773.png-22327cd65bc73ad1ec088ba43b085a25.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0773.png" +dest_files=["res://.godot/imported/tile_0773.png-22327cd65bc73ad1ec088ba43b085a25.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0774.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0774.png new file mode 100644 index 00000000..26f9676f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0774.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0774.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0774.png.import new file mode 100644 index 00000000..9cb2a5bb --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0774.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b332o14xrm4tc" +path="res://.godot/imported/tile_0774.png-b6c9da39dc77766c8ae522dc85faf1e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0774.png" +dest_files=["res://.godot/imported/tile_0774.png-b6c9da39dc77766c8ae522dc85faf1e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0775.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0775.png new file mode 100644 index 00000000..b63356fc Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0775.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0775.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0775.png.import new file mode 100644 index 00000000..689131e5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0775.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgx7lrs42qi1y" +path="res://.godot/imported/tile_0775.png-804d39dca63fb6712311273626634c83.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0775.png" +dest_files=["res://.godot/imported/tile_0775.png-804d39dca63fb6712311273626634c83.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0776.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0776.png new file mode 100644 index 00000000..231d0900 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0776.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0776.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0776.png.import new file mode 100644 index 00000000..ab124a8a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0776.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn57bqh7p3612" +path="res://.godot/imported/tile_0776.png-6c93dd60369053619ee1160febb46831.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0776.png" +dest_files=["res://.godot/imported/tile_0776.png-6c93dd60369053619ee1160febb46831.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0777.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0777.png new file mode 100644 index 00000000..820bfa62 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0777.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0777.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0777.png.import new file mode 100644 index 00000000..7ed83be5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0777.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1rsiebjd3fyp" +path="res://.godot/imported/tile_0777.png-17d2d13821a4fa4e18dfd5f60b35feb3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0777.png" +dest_files=["res://.godot/imported/tile_0777.png-17d2d13821a4fa4e18dfd5f60b35feb3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0778.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0778.png new file mode 100644 index 00000000..a7f5ca9c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0778.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0778.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0778.png.import new file mode 100644 index 00000000..6829fb23 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0778.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtnfapkvy0dms" +path="res://.godot/imported/tile_0778.png-be83033e68a78f732c2a88df0d4eca5e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0778.png" +dest_files=["res://.godot/imported/tile_0778.png-be83033e68a78f732c2a88df0d4eca5e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0779.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0779.png new file mode 100644 index 00000000..fe8085cb Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0779.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0779.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0779.png.import new file mode 100644 index 00000000..311b20e7 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0779.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqplohx6u4naw" +path="res://.godot/imported/tile_0779.png-34ff8a90d050500d2d245619303c157c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0779.png" +dest_files=["res://.godot/imported/tile_0779.png-34ff8a90d050500d2d245619303c157c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0780.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0780.png new file mode 100644 index 00000000..0b4ada3b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0780.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0780.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0780.png.import new file mode 100644 index 00000000..ebdbcdc9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0780.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csbja1sjloiau" +path="res://.godot/imported/tile_0780.png-fe39f9bcd874868054fd7d099276a473.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0780.png" +dest_files=["res://.godot/imported/tile_0780.png-fe39f9bcd874868054fd7d099276a473.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0781.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0781.png new file mode 100644 index 00000000..68f2054c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0781.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0781.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0781.png.import new file mode 100644 index 00000000..2f98421d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0781.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nep35slx1vg3" +path="res://.godot/imported/tile_0781.png-c1f7321b6063f9222770bcc1b9a99699.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0781.png" +dest_files=["res://.godot/imported/tile_0781.png-c1f7321b6063f9222770bcc1b9a99699.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0782.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0782.png new file mode 100644 index 00000000..caf13793 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0782.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0782.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0782.png.import new file mode 100644 index 00000000..48f5694c --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0782.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfkqvdgisx1i5" +path="res://.godot/imported/tile_0782.png-750168f529e0b58a0bd213a99d9a7255.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0782.png" +dest_files=["res://.godot/imported/tile_0782.png-750168f529e0b58a0bd213a99d9a7255.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0783.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0783.png new file mode 100644 index 00000000..e36c4f6f Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0783.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0783.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0783.png.import new file mode 100644 index 00000000..de9ce0b7 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0783.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xi0hcj3r0ak5" +path="res://.godot/imported/tile_0783.png-031c2e621c87551e4023e69994584c29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0783.png" +dest_files=["res://.godot/imported/tile_0783.png-031c2e621c87551e4023e69994584c29.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0784.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0784.png new file mode 100644 index 00000000..50031155 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0784.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0784.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0784.png.import new file mode 100644 index 00000000..d177ce27 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0784.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r1ldhmwc0h6i" +path="res://.godot/imported/tile_0784.png-bf7240e7eebc464bdc1e9b5e2a10d232.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0784.png" +dest_files=["res://.godot/imported/tile_0784.png-bf7240e7eebc464bdc1e9b5e2a10d232.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0785.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0785.png new file mode 100644 index 00000000..0878deb5 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0785.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0785.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0785.png.import new file mode 100644 index 00000000..b19c3729 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0785.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://44g6su2tf6wj" +path="res://.godot/imported/tile_0785.png-80cf9297c723624a8fab412c16b0c46a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0785.png" +dest_files=["res://.godot/imported/tile_0785.png-80cf9297c723624a8fab412c16b0c46a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0786.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0786.png new file mode 100644 index 00000000..6b0075d4 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0786.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0786.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0786.png.import new file mode 100644 index 00000000..36d690c6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0786.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0f1ob0tuquo1" +path="res://.godot/imported/tile_0786.png-2ce7828c781e5200605ca6cf601cf3e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0786.png" +dest_files=["res://.godot/imported/tile_0786.png-2ce7828c781e5200605ca6cf601cf3e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0787.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0787.png new file mode 100644 index 00000000..9a8253d1 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0787.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0787.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0787.png.import new file mode 100644 index 00000000..8503d01f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0787.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccfh67i2fjieh" +path="res://.godot/imported/tile_0787.png-49889abb97d6ce69c351fd36ccedf666.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0787.png" +dest_files=["res://.godot/imported/tile_0787.png-49889abb97d6ce69c351fd36ccedf666.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0788.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0788.png new file mode 100644 index 00000000..b05334cd Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0788.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0788.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0788.png.import new file mode 100644 index 00000000..4c1a2827 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0788.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://imnt1v2ojr54" +path="res://.godot/imported/tile_0788.png-ceba4e1e3ab95f6fb1b8ebf032065f0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0788.png" +dest_files=["res://.godot/imported/tile_0788.png-ceba4e1e3ab95f6fb1b8ebf032065f0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0789.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0789.png new file mode 100644 index 00000000..9f2eb1e2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0789.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0789.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0789.png.import new file mode 100644 index 00000000..6952c6a0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0789.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0kdtjh3jklrj" +path="res://.godot/imported/tile_0789.png-6ae6c9422e808b6f6805752f9fb7201f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0789.png" +dest_files=["res://.godot/imported/tile_0789.png-6ae6c9422e808b6f6805752f9fb7201f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0790.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0790.png new file mode 100644 index 00000000..a11c5c69 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0790.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0790.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0790.png.import new file mode 100644 index 00000000..5a0851be --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0790.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnupx4tb5kka5" +path="res://.godot/imported/tile_0790.png-9341deb0566cfb6595ebfb23905b9554.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0790.png" +dest_files=["res://.godot/imported/tile_0790.png-9341deb0566cfb6595ebfb23905b9554.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0791.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0791.png new file mode 100644 index 00000000..dcfcbbc9 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0791.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0791.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0791.png.import new file mode 100644 index 00000000..a5608264 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0791.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4junks1rcohw" +path="res://.godot/imported/tile_0791.png-9087d958f03f95a183534d5274a1c4db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0791.png" +dest_files=["res://.godot/imported/tile_0791.png-9087d958f03f95a183534d5274a1c4db.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0792.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0792.png new file mode 100644 index 00000000..10f55865 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0792.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0792.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0792.png.import new file mode 100644 index 00000000..fd0e91c0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0792.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdu7jqimcnsa4" +path="res://.godot/imported/tile_0792.png-04f269a187aa25d9173e072e24cfbb8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0792.png" +dest_files=["res://.godot/imported/tile_0792.png-04f269a187aa25d9173e072e24cfbb8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0793.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0793.png new file mode 100644 index 00000000..bebc2199 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0793.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0793.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0793.png.import new file mode 100644 index 00000000..b4443aaa --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0793.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c402w6gfq6ris" +path="res://.godot/imported/tile_0793.png-454b540dac8f27cb5ae0318ec516ad8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0793.png" +dest_files=["res://.godot/imported/tile_0793.png-454b540dac8f27cb5ae0318ec516ad8e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0794.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0794.png new file mode 100644 index 00000000..d0cbd96c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0794.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0794.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0794.png.import new file mode 100644 index 00000000..e720c6db --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0794.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djehbo43mfsks" +path="res://.godot/imported/tile_0794.png-976d7be808f351af6f31824b8f0c7b44.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0794.png" +dest_files=["res://.godot/imported/tile_0794.png-976d7be808f351af6f31824b8f0c7b44.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0795.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0795.png new file mode 100644 index 00000000..82e77fac Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0795.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0795.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0795.png.import new file mode 100644 index 00000000..15bfba8d --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0795.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpglw4uacqjmj" +path="res://.godot/imported/tile_0795.png-6547dbfb895aab0d3e06203010e0c1b4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0795.png" +dest_files=["res://.godot/imported/tile_0795.png-6547dbfb895aab0d3e06203010e0c1b4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0796.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0796.png new file mode 100644 index 00000000..593b5f4b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0796.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0796.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0796.png.import new file mode 100644 index 00000000..676a5a81 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0796.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca0aq4lum215q" +path="res://.godot/imported/tile_0796.png-7bd34bdc3fd4410fe2c094b8c0303dd3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0796.png" +dest_files=["res://.godot/imported/tile_0796.png-7bd34bdc3fd4410fe2c094b8c0303dd3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0797.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0797.png new file mode 100644 index 00000000..a65824d5 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0797.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0797.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0797.png.import new file mode 100644 index 00000000..cac1dc17 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0797.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpi351mmxu7x6" +path="res://.godot/imported/tile_0797.png-3324278631377aed76974620f5e35324.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0797.png" +dest_files=["res://.godot/imported/tile_0797.png-3324278631377aed76974620f5e35324.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0798.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0798.png new file mode 100644 index 00000000..1726089c Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0798.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0798.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0798.png.import new file mode 100644 index 00000000..e5a73e96 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0798.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckyvec3wqx3t" +path="res://.godot/imported/tile_0798.png-f14532664b6a70c4e42559ca45ffb9b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0798.png" +dest_files=["res://.godot/imported/tile_0798.png-f14532664b6a70c4e42559ca45ffb9b9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0799.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0799.png new file mode 100644 index 00000000..6e78f72b Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0799.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0799.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0799.png.import new file mode 100644 index 00000000..88a47e9b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0799.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://42t2pjfahb10" +path="res://.godot/imported/tile_0799.png-936db64d17df06d2e0af043e1e393df4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0799.png" +dest_files=["res://.godot/imported/tile_0799.png-936db64d17df06d2e0af043e1e393df4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0800.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0800.png new file mode 100644 index 00000000..9a8c192d Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0800.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0800.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0800.png.import new file mode 100644 index 00000000..944cdd79 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0800.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wty2rj2x1x6y" +path="res://.godot/imported/tile_0800.png-5119c4453c6ef6b129e119b02c02fb91.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0800.png" +dest_files=["res://.godot/imported/tile_0800.png-5119c4453c6ef6b129e119b02c02fb91.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0801.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0801.png new file mode 100644 index 00000000..a37c24a0 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0801.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0801.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0801.png.import new file mode 100644 index 00000000..63c740b5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0801.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://47dbfjo0ju3d" +path="res://.godot/imported/tile_0801.png-645cf5338c43763d5202222efa564297.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0801.png" +dest_files=["res://.godot/imported/tile_0801.png-645cf5338c43763d5202222efa564297.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0802.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0802.png new file mode 100644 index 00000000..8bddc981 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0802.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0802.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0802.png.import new file mode 100644 index 00000000..f5aae373 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0802.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk7pwef7lbjfm" +path="res://.godot/imported/tile_0802.png-a393ea71b8177eeb097819286cbd3356.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0802.png" +dest_files=["res://.godot/imported/tile_0802.png-a393ea71b8177eeb097819286cbd3356.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0803.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0803.png new file mode 100644 index 00000000..57ec7a57 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0803.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0803.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0803.png.import new file mode 100644 index 00000000..ba53b1c5 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0803.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vx21lfsdqkb2" +path="res://.godot/imported/tile_0803.png-12e9e37a4cf046cac3f4de5257d7249d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0803.png" +dest_files=["res://.godot/imported/tile_0803.png-12e9e37a4cf046cac3f4de5257d7249d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0804.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0804.png new file mode 100644 index 00000000..63057449 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0804.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0804.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0804.png.import new file mode 100644 index 00000000..bda8eb44 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0804.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwyciqtuledu3" +path="res://.godot/imported/tile_0804.png-319a947180bb2cfc61bc19c00b485710.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0804.png" +dest_files=["res://.godot/imported/tile_0804.png-319a947180bb2cfc61bc19c00b485710.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0805.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0805.png new file mode 100644 index 00000000..2a255e80 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0805.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0805.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0805.png.import new file mode 100644 index 00000000..3ed09b5f --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0805.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ohfy86xxg5le" +path="res://.godot/imported/tile_0805.png-2428922fc1694fb7d16d80a6be11a28b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0805.png" +dest_files=["res://.godot/imported/tile_0805.png-2428922fc1694fb7d16d80a6be11a28b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0806.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0806.png new file mode 100644 index 00000000..fd3038a2 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0806.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0806.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0806.png.import new file mode 100644 index 00000000..d3f2d0c0 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0806.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jfvlyl1xvvup" +path="res://.godot/imported/tile_0806.png-d77ba432587f59a604ff8db7e3e65474.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0806.png" +dest_files=["res://.godot/imported/tile_0806.png-d77ba432587f59a604ff8db7e3e65474.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0807.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0807.png new file mode 100644 index 00000000..e2c23045 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0807.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0807.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0807.png.import new file mode 100644 index 00000000..711719ce --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0807.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://84xh3k47q3wf" +path="res://.godot/imported/tile_0807.png-a23609e6a4832352c636a0bf6b1c8353.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0807.png" +dest_files=["res://.godot/imported/tile_0807.png-a23609e6a4832352c636a0bf6b1c8353.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0808.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0808.png new file mode 100644 index 00000000..60f8badf Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0808.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0808.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0808.png.import new file mode 100644 index 00000000..7f8cf1f6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0808.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmk7fkmjftn34" +path="res://.godot/imported/tile_0808.png-a9ecfcd67a86c8ac92114212eb1aac22.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0808.png" +dest_files=["res://.godot/imported/tile_0808.png-a9ecfcd67a86c8ac92114212eb1aac22.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0809.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0809.png new file mode 100644 index 00000000..737730f8 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0809.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0809.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0809.png.import new file mode 100644 index 00000000..f1635d2a --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0809.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://irl3sn3r7vu4" +path="res://.godot/imported/tile_0809.png-b4a47593ecc2235f6a08af4d3d2ddc89.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0809.png" +dest_files=["res://.godot/imported/tile_0809.png-b4a47593ecc2235f6a08af4d3d2ddc89.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0810.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0810.png new file mode 100644 index 00000000..c664056e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0810.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0810.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0810.png.import new file mode 100644 index 00000000..e2ac101b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0810.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7vy3sgwf2bmt" +path="res://.godot/imported/tile_0810.png-a6f82b29b3496ccc8e49e4b2ff5be5fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0810.png" +dest_files=["res://.godot/imported/tile_0810.png-a6f82b29b3496ccc8e49e4b2ff5be5fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0811.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0811.png new file mode 100644 index 00000000..7661f2ef Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0811.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0811.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0811.png.import new file mode 100644 index 00000000..952a28ec --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0811.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxp4nn8vhrc8q" +path="res://.godot/imported/tile_0811.png-c9aff7e65d3b7f66b54c725c97b1fbc7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0811.png" +dest_files=["res://.godot/imported/tile_0811.png-c9aff7e65d3b7f66b54c725c97b1fbc7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0812.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0812.png new file mode 100644 index 00000000..db19dfae Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0812.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0812.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0812.png.import new file mode 100644 index 00000000..5b291706 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0812.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by8olwkl80xh8" +path="res://.godot/imported/tile_0812.png-681f908ec5b74226aa7a02fd429158bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0812.png" +dest_files=["res://.godot/imported/tile_0812.png-681f908ec5b74226aa7a02fd429158bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0813.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0813.png new file mode 100644 index 00000000..298ffc4a Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0813.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0813.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0813.png.import new file mode 100644 index 00000000..865e85b6 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0813.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dym3fb4h42niu" +path="res://.godot/imported/tile_0813.png-5621e03dc0b0768f3b911f817f132265.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0813.png" +dest_files=["res://.godot/imported/tile_0813.png-5621e03dc0b0768f3b911f817f132265.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0814.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0814.png new file mode 100644 index 00000000..67a0bb1e Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0814.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0814.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0814.png.import new file mode 100644 index 00000000..b1ced90e --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0814.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chc3e613krqx8" +path="res://.godot/imported/tile_0814.png-7c1fc565ad1a479e0ae12ca611fc3df3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0814.png" +dest_files=["res://.godot/imported/tile_0814.png-7c1fc565ad1a479e0ae12ca611fc3df3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0815.png b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0815.png new file mode 100644 index 00000000..324abd15 Binary files /dev/null and b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0815.png differ diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0815.png.import b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0815.png.import new file mode 100644 index 00000000..c774d8a9 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0815.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bynjiyrqmvhof" +path="res://.godot/imported/tile_0815.png-67bcb8c9f5e19341a7bad868a0acc9c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0815.png" +dest_files=["res://.godot/imported/tile_0815.png-67bcb8c9f5e19341a7bad868a0acc9c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tilesheet.txt b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tilesheet.txt new file mode 100644 index 00000000..92ac63dd --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Tilesheet.txt @@ -0,0 +1,9 @@ +Tilesheet information: + +Tile size • 16px × 16px +Space between tiles • 1px × 1px +--- +Total tiles (horizontal) • 34 tiles +Total tiles (vertical) • 24 tiles +--- +Total tiles in sheet • 816 tiles \ No newline at end of file diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Visit Kenney.url b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Visit Kenney.url new file mode 100644 index 00000000..c220c41b --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Visit Kenney.url @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=http://www.kenney.nl/ \ No newline at end of file diff --git a/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Visit Patreon.url b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Visit Patreon.url new file mode 100644 index 00000000..67e9ea57 --- /dev/null +++ b/tools/configurator/assets/icons/kenney_input-prompts-pixel-16/Visit Patreon.url @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=https://www.patreon.com/kenney/ \ No newline at end of file diff --git a/tools/configurator/assets/icons/pixelitos/128/Alacritty.png b/tools/configurator/assets/icons/pixelitos/128/Alacritty.png new file mode 100644 index 00000000..baf8d0bf Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/Alacritty.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/Alacritty.png.import b/tools/configurator/assets/icons/pixelitos/128/Alacritty.png.import new file mode 100644 index 00000000..d84d12a7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/Alacritty.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://107pna7chok6" +path="res://.godot/imported/Alacritty.png-0514c7b887bbdd8bb536256f967f5eba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/Alacritty.png" +dest_files=["res://.godot/imported/Alacritty.png-0514c7b887bbdd8bb536256f967f5eba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/CMakeSetup.png b/tools/configurator/assets/icons/pixelitos/128/CMakeSetup.png new file mode 100644 index 00000000..390741ce Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/CMakeSetup.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/CMakeSetup.png.import b/tools/configurator/assets/icons/pixelitos/128/CMakeSetup.png.import new file mode 100644 index 00000000..332dba93 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/CMakeSetup.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p8fpyklwm3p1" +path="res://.godot/imported/CMakeSetup.png-6f68fb2147902ddfe52726d8a372abab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/CMakeSetup.png" +dest_files=["res://.godot/imported/CMakeSetup.png-6f68fb2147902ddfe52726d8a372abab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/QtProject-qtcreator.png b/tools/configurator/assets/icons/pixelitos/128/QtProject-qtcreator.png new file mode 100644 index 00000000..842fc3c5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/QtProject-qtcreator.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/QtProject-qtcreator.png.import b/tools/configurator/assets/icons/pixelitos/128/QtProject-qtcreator.png.import new file mode 100644 index 00000000..6c91c8da --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/QtProject-qtcreator.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvtiaqiwb63o4" +path="res://.godot/imported/QtProject-qtcreator.png-e718bfdcb6ac1fe7e962df20d324f2ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/QtProject-qtcreator.png" +dest_files=["res://.godot/imported/QtProject-qtcreator.png-e718bfdcb6ac1fe7e962df20d324f2ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/accesories-screenshoot.png b/tools/configurator/assets/icons/pixelitos/128/accesories-screenshoot.png new file mode 100644 index 00000000..23b8e8e5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/accesories-screenshoot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/accesories-screenshoot.png.import b/tools/configurator/assets/icons/pixelitos/128/accesories-screenshoot.png.import new file mode 100644 index 00000000..8f146575 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/accesories-screenshoot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clvsisb38lk72" +path="res://.godot/imported/accesories-screenshoot.png-e60ce7552e636fc611291b3c4863eb8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/accesories-screenshoot.png" +dest_files=["res://.godot/imported/accesories-screenshoot.png-e60ce7552e636fc611291b3c4863eb8e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/accessories-calculator.png b/tools/configurator/assets/icons/pixelitos/128/accessories-calculator.png new file mode 100644 index 00000000..5302b379 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/accessories-calculator.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/accessories-calculator.png.import b/tools/configurator/assets/icons/pixelitos/128/accessories-calculator.png.import new file mode 100644 index 00000000..d518b939 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/accessories-calculator.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2gugfs1p83sj" +path="res://.godot/imported/accessories-calculator.png-fdc02702e4fa9b78b08a128b160030d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/accessories-calculator.png" +dest_files=["res://.godot/imported/accessories-calculator.png-fdc02702e4fa9b78b08a128b160030d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/accessories-clock.png b/tools/configurator/assets/icons/pixelitos/128/accessories-clock.png new file mode 100644 index 00000000..51aecbb7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/accessories-clock.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/accessories-clock.png.import b/tools/configurator/assets/icons/pixelitos/128/accessories-clock.png.import new file mode 100644 index 00000000..aa012ac1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/accessories-clock.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgtsnuj6u3sls" +path="res://.godot/imported/accessories-clock.png-5bd84274db3159f64baf9222408c6f11.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/accessories-clock.png" +dest_files=["res://.godot/imported/accessories-clock.png-5bd84274db3159f64baf9222408c6f11.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/accessories-dictionary.png b/tools/configurator/assets/icons/pixelitos/128/accessories-dictionary.png new file mode 100644 index 00000000..0266a8c2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/accessories-dictionary.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/accessories-dictionary.png.import b/tools/configurator/assets/icons/pixelitos/128/accessories-dictionary.png.import new file mode 100644 index 00000000..d374ece8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/accessories-dictionary.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4tq8ui7wwdmi" +path="res://.godot/imported/accessories-dictionary.png-6450f625f149e54ce8987a9eb3f0d10e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/accessories-dictionary.png" +dest_files=["res://.godot/imported/accessories-dictionary.png-6450f625f149e54ce8987a9eb3f0d10e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/accessories-ebook-reader.png b/tools/configurator/assets/icons/pixelitos/128/accessories-ebook-reader.png new file mode 100644 index 00000000..0266a8c2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/accessories-ebook-reader.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/accessories-ebook-reader.png.import b/tools/configurator/assets/icons/pixelitos/128/accessories-ebook-reader.png.import new file mode 100644 index 00000000..a5105c4b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/accessories-ebook-reader.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c174gkwwsvylo" +path="res://.godot/imported/accessories-ebook-reader.png-38f25a5ea4de6c0990021c495f6701bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/accessories-ebook-reader.png" +dest_files=["res://.godot/imported/accessories-ebook-reader.png-38f25a5ea4de6c0990021c495f6701bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/accessories-notes.png b/tools/configurator/assets/icons/pixelitos/128/accessories-notes.png new file mode 100644 index 00000000..fe9e1264 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/accessories-notes.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/accessories-notes.png.import b/tools/configurator/assets/icons/pixelitos/128/accessories-notes.png.import new file mode 100644 index 00000000..ba184a92 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/accessories-notes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c75n51ufrt41t" +path="res://.godot/imported/accessories-notes.png-b6b6a5016e4764253731fa583dedda76.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/accessories-notes.png" +dest_files=["res://.godot/imported/accessories-notes.png-b6b6a5016e4764253731fa583dedda76.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/accessories-safe.png b/tools/configurator/assets/icons/pixelitos/128/accessories-safe.png new file mode 100644 index 00000000..87a85b38 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/accessories-safe.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/accessories-safe.png.import b/tools/configurator/assets/icons/pixelitos/128/accessories-safe.png.import new file mode 100644 index 00000000..567d6190 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/accessories-safe.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp40uga2unlhr" +path="res://.godot/imported/accessories-safe.png-95134d6d689184fa342b4315bbb25bfc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/accessories-safe.png" +dest_files=["res://.godot/imported/accessories-safe.png-95134d6d689184fa342b4315bbb25bfc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/accessories-screenshoot.png b/tools/configurator/assets/icons/pixelitos/128/accessories-screenshoot.png new file mode 100644 index 00000000..23b8e8e5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/accessories-screenshoot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/accessories-screenshoot.png.import b/tools/configurator/assets/icons/pixelitos/128/accessories-screenshoot.png.import new file mode 100644 index 00000000..a9d42f73 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/accessories-screenshoot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmfobhoo5xsgs" +path="res://.godot/imported/accessories-screenshoot.png-d847c874e79c96ec8317827981158722.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/accessories-screenshoot.png" +dest_files=["res://.godot/imported/accessories-screenshoot.png-d847c874e79c96ec8317827981158722.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/accessories-text-editor.png b/tools/configurator/assets/icons/pixelitos/128/accessories-text-editor.png new file mode 100644 index 00000000..3249a9b0 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/accessories-text-editor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/accessories-text-editor.png.import b/tools/configurator/assets/icons/pixelitos/128/accessories-text-editor.png.import new file mode 100644 index 00000000..e49bd886 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/accessories-text-editor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c24cmgxx1mder" +path="res://.godot/imported/accessories-text-editor.png-bda899cda96bf3fd99ab71fc724b9004.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/accessories-text-editor.png" +dest_files=["res://.godot/imported/accessories-text-editor.png-bda899cda96bf3fd99ab71fc724b9004.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/alacarte.png b/tools/configurator/assets/icons/pixelitos/128/alacarte.png new file mode 100644 index 00000000..3f17e805 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/alacarte.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/alacarte.png.import b/tools/configurator/assets/icons/pixelitos/128/alacarte.png.import new file mode 100644 index 00000000..20ea4c59 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/alacarte.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fhy4slivbki6" +path="res://.godot/imported/alacarte.png-24b9d75f2cb3726da56120fb3596a6c6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/alacarte.png" +dest_files=["res://.godot/imported/alacarte.png-24b9d75f2cb3726da56120fb3596a6c6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/anatine.png b/tools/configurator/assets/icons/pixelitos/128/anatine.png new file mode 100644 index 00000000..8f7c40f4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/anatine.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/anatine.png.import b/tools/configurator/assets/icons/pixelitos/128/anatine.png.import new file mode 100644 index 00000000..a097bf07 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/anatine.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buexxdg7bkarn" +path="res://.godot/imported/anatine.png-4228e76dccd3f70aabba52773ce73046.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/anatine.png" +dest_files=["res://.godot/imported/anatine.png-4228e76dccd3f70aabba52773ce73046.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/app.xemu.xemu.png b/tools/configurator/assets/icons/pixelitos/128/app.xemu.xemu.png new file mode 100644 index 00000000..fb949e27 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/app.xemu.xemu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/app.xemu.xemu.png.import b/tools/configurator/assets/icons/pixelitos/128/app.xemu.xemu.png.import new file mode 100644 index 00000000..45c0a0ea --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/app.xemu.xemu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxng1bakpvyyr" +path="res://.godot/imported/app.xemu.xemu.png-5f43191f044cb8f25d2ae680e801312e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/app.xemu.xemu.png" +dest_files=["res://.godot/imported/app.xemu.xemu.png-5f43191f044cb8f25d2ae680e801312e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/apple.png b/tools/configurator/assets/icons/pixelitos/128/apple.png new file mode 100644 index 00000000..cc7f14b9 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/apple.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/apple.png.import b/tools/configurator/assets/icons/pixelitos/128/apple.png.import new file mode 100644 index 00000000..e3eb9dc9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/apple.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwwd1lt70k7mj" +path="res://.godot/imported/apple.png-9d7d804e3a7091f4054efe55d3f10cde.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/apple.png" +dest_files=["res://.godot/imported/apple.png-9d7d804e3a7091f4054efe55d3f10cde.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/applets-screenshooter.png b/tools/configurator/assets/icons/pixelitos/128/applets-screenshooter.png new file mode 100644 index 00000000..23b8e8e5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/applets-screenshooter.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/applets-screenshooter.png.import b/tools/configurator/assets/icons/pixelitos/128/applets-screenshooter.png.import new file mode 100644 index 00000000..e5dd1505 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/applets-screenshooter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c01nr28307v3h" +path="res://.godot/imported/applets-screenshooter.png-3f3ed8870cfe18503860e085ef20cbf8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/applets-screenshooter.png" +dest_files=["res://.godot/imported/applets-screenshooter.png-3f3ed8870cfe18503860e085ef20cbf8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/applets-screenshot.png b/tools/configurator/assets/icons/pixelitos/128/applets-screenshot.png new file mode 100644 index 00000000..23b8e8e5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/applets-screenshot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/applets-screenshot.png.import b/tools/configurator/assets/icons/pixelitos/128/applets-screenshot.png.import new file mode 100644 index 00000000..db9bd9ca --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/applets-screenshot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d343q4mdmbvvw" +path="res://.godot/imported/applets-screenshot.png-dc23f2a2205648cad1b8c2b0e252d458.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/applets-screenshot.png" +dest_files=["res://.godot/imported/applets-screenshot.png-dc23f2a2205648cad1b8c2b0e252d458.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/application-vnd.affinity-designer.png b/tools/configurator/assets/icons/pixelitos/128/application-vnd.affinity-designer.png new file mode 100644 index 00000000..70342635 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/application-vnd.affinity-designer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/application-vnd.affinity-designer.png.import b/tools/configurator/assets/icons/pixelitos/128/application-vnd.affinity-designer.png.import new file mode 100644 index 00000000..752b0f9f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/application-vnd.affinity-designer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5rfbxg1cuqff" +path="res://.godot/imported/application-vnd.affinity-designer.png-9e66dcc53d6c7eeebb1a431864453f1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/application-vnd.affinity-designer.png" +dest_files=["res://.godot/imported/application-vnd.affinity-designer.png-9e66dcc53d6c7eeebb1a431864453f1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-accessories.png b/tools/configurator/assets/icons/pixelitos/128/applications-accessories.png new file mode 100644 index 00000000..f68e9f38 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/applications-accessories.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-accessories.png.import b/tools/configurator/assets/icons/pixelitos/128/applications-accessories.png.import new file mode 100644 index 00000000..bbe4171e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/applications-accessories.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bafdexg6aq8tn" +path="res://.godot/imported/applications-accessories.png-364de271adc0bb4c91fce51549c969a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/applications-accessories.png" +dest_files=["res://.godot/imported/applications-accessories.png-364de271adc0bb4c91fce51549c969a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-all.png b/tools/configurator/assets/icons/pixelitos/128/applications-all.png new file mode 100644 index 00000000..0b76cdb8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/applications-all.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-all.png.import b/tools/configurator/assets/icons/pixelitos/128/applications-all.png.import new file mode 100644 index 00000000..5a255fcd --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/applications-all.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7teuuj0xv6fq" +path="res://.godot/imported/applications-all.png-81d16b6526f68da4a2e91940e4876db6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/applications-all.png" +dest_files=["res://.godot/imported/applications-all.png-81d16b6526f68da4a2e91940e4876db6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-development.png b/tools/configurator/assets/icons/pixelitos/128/applications-development.png new file mode 100644 index 00000000..9b864ff2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/applications-development.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-development.png.import b/tools/configurator/assets/icons/pixelitos/128/applications-development.png.import new file mode 100644 index 00000000..e2a225ea --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/applications-development.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be3tmvgoa1wua" +path="res://.godot/imported/applications-development.png-d8ef12db064b0a8dc41a322eec851e84.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/applications-development.png" +dest_files=["res://.godot/imported/applications-development.png-d8ef12db064b0a8dc41a322eec851e84.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-education.png b/tools/configurator/assets/icons/pixelitos/128/applications-education.png new file mode 100644 index 00000000..cfceedd2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/applications-education.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-education.png.import b/tools/configurator/assets/icons/pixelitos/128/applications-education.png.import new file mode 100644 index 00000000..de4c0d89 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/applications-education.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4udooyrtr662" +path="res://.godot/imported/applications-education.png-b5780ce5e65060b470027cc06d73cca7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/applications-education.png" +dest_files=["res://.godot/imported/applications-education.png-b5780ce5e65060b470027cc06d73cca7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-games.png b/tools/configurator/assets/icons/pixelitos/128/applications-games.png new file mode 100644 index 00000000..a18ac31e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/applications-games.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-games.png.import b/tools/configurator/assets/icons/pixelitos/128/applications-games.png.import new file mode 100644 index 00000000..91ea99ac --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/applications-games.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qu88ngewoj4w" +path="res://.godot/imported/applications-games.png-c5c696be9ab0c8343f083d9ce8c4b837.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/applications-games.png" +dest_files=["res://.godot/imported/applications-games.png-c5c696be9ab0c8343f083d9ce8c4b837.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-graphics.png b/tools/configurator/assets/icons/pixelitos/128/applications-graphics.png new file mode 100644 index 00000000..c50ba26b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/applications-graphics.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-graphics.png.import b/tools/configurator/assets/icons/pixelitos/128/applications-graphics.png.import new file mode 100644 index 00000000..a73d3892 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/applications-graphics.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://suusabsjin6e" +path="res://.godot/imported/applications-graphics.png-481c2eef2037fa1a8887c6e5904f27d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/applications-graphics.png" +dest_files=["res://.godot/imported/applications-graphics.png-481c2eef2037fa1a8887c6e5904f27d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-internet.png b/tools/configurator/assets/icons/pixelitos/128/applications-internet.png new file mode 100644 index 00000000..422e3534 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/applications-internet.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-internet.png.import b/tools/configurator/assets/icons/pixelitos/128/applications-internet.png.import new file mode 100644 index 00000000..0dc10952 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/applications-internet.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6byd1jah4awf" +path="res://.godot/imported/applications-internet.png-6d718505ced6097a2bdcab50eb5f733c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/applications-internet.png" +dest_files=["res://.godot/imported/applications-internet.png-6d718505ced6097a2bdcab50eb5f733c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-multimedia.png b/tools/configurator/assets/icons/pixelitos/128/applications-multimedia.png new file mode 100644 index 00000000..77553e8e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/applications-multimedia.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-multimedia.png.import b/tools/configurator/assets/icons/pixelitos/128/applications-multimedia.png.import new file mode 100644 index 00000000..b6fde8a2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/applications-multimedia.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqhyfjg7wn40" +path="res://.godot/imported/applications-multimedia.png-69411c251df0c1c287c592eae47b6702.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/applications-multimedia.png" +dest_files=["res://.godot/imported/applications-multimedia.png-69411c251df0c1c287c592eae47b6702.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-office.png b/tools/configurator/assets/icons/pixelitos/128/applications-office.png new file mode 100644 index 00000000..053c85b2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/applications-office.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-office.png.import b/tools/configurator/assets/icons/pixelitos/128/applications-office.png.import new file mode 100644 index 00000000..9a7c399a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/applications-office.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://piywqx1xlun7" +path="res://.godot/imported/applications-office.png-8fbacf113e3c1a4423cfe6441c088ccf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/applications-office.png" +dest_files=["res://.godot/imported/applications-office.png-8fbacf113e3c1a4423cfe6441c088ccf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-other.png b/tools/configurator/assets/icons/pixelitos/128/applications-other.png new file mode 100644 index 00000000..1fe88a96 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/applications-other.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-other.png.import b/tools/configurator/assets/icons/pixelitos/128/applications-other.png.import new file mode 100644 index 00000000..e8c3e303 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/applications-other.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3mk136ei4e46" +path="res://.godot/imported/applications-other.png-5c7264b1f473e3a609b4423e8743bc16.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/applications-other.png" +dest_files=["res://.godot/imported/applications-other.png-5c7264b1f473e3a609b4423e8743bc16.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-science.png b/tools/configurator/assets/icons/pixelitos/128/applications-science.png new file mode 100644 index 00000000..cfceedd2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/applications-science.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-science.png.import b/tools/configurator/assets/icons/pixelitos/128/applications-science.png.import new file mode 100644 index 00000000..638fa034 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/applications-science.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coivk3dne4bgd" +path="res://.godot/imported/applications-science.png-d58e62669f6c1dba258a355dd3de7196.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/applications-science.png" +dest_files=["res://.godot/imported/applications-science.png-d58e62669f6c1dba258a355dd3de7196.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-system.png b/tools/configurator/assets/icons/pixelitos/128/applications-system.png new file mode 100644 index 00000000..ebaa4cac Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/applications-system.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-system.png.import b/tools/configurator/assets/icons/pixelitos/128/applications-system.png.import new file mode 100644 index 00000000..1a876cf1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/applications-system.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca2xg08hxnmd3" +path="res://.godot/imported/applications-system.png-e1bb3cfa9dfaa07921e0ead343528c2b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/applications-system.png" +dest_files=["res://.godot/imported/applications-system.png-e1bb3cfa9dfaa07921e0ead343528c2b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-webbrowsers.png b/tools/configurator/assets/icons/pixelitos/128/applications-webbrowsers.png new file mode 100644 index 00000000..422e3534 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/applications-webbrowsers.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/applications-webbrowsers.png.import b/tools/configurator/assets/icons/pixelitos/128/applications-webbrowsers.png.import new file mode 100644 index 00000000..c3c5e287 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/applications-webbrowsers.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvgf4wuxxpkhx" +path="res://.godot/imported/applications-webbrowsers.png-180fb4106ae62149527bbd4e7768c3e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/applications-webbrowsers.png" +dest_files=["res://.godot/imported/applications-webbrowsers.png-180fb4106ae62149527bbd4e7768c3e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/ares.png b/tools/configurator/assets/icons/pixelitos/128/ares.png new file mode 100644 index 00000000..176eb78b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/ares.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/ares.png.import b/tools/configurator/assets/icons/pixelitos/128/ares.png.import new file mode 100644 index 00000000..ca9e5227 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/ares.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3wd8ibadn6ii" +path="res://.godot/imported/ares.png-a52b02e03175f5ddadef9b702ed8ffb8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/ares.png" +dest_files=["res://.godot/imported/ares.png-a52b02e03175f5ddadef9b702ed8ffb8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/ark.png b/tools/configurator/assets/icons/pixelitos/128/ark.png new file mode 100644 index 00000000..3c7abcb6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/ark.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/ark.png.import b/tools/configurator/assets/icons/pixelitos/128/ark.png.import new file mode 100644 index 00000000..13d55f95 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/ark.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq7uvqatyl062" +path="res://.godot/imported/ark.png-bcf7742bf1be215689c6c64e12352230.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/ark.png" +dest_files=["res://.godot/imported/ark.png-bcf7742bf1be215689c6c64e12352230.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/arronax.png b/tools/configurator/assets/icons/pixelitos/128/arronax.png new file mode 100644 index 00000000..0cc0fee8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/arronax.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/arronax.png.import b/tools/configurator/assets/icons/pixelitos/128/arronax.png.import new file mode 100644 index 00000000..ef0194c5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/arronax.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7wprk5apqrcd" +path="res://.godot/imported/arronax.png-72a0708d1e333a5dd8eef1e123e9af8c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/arronax.png" +dest_files=["res://.godot/imported/arronax.png-72a0708d1e333a5dd8eef1e123e9af8c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/assaultcube.png b/tools/configurator/assets/icons/pixelitos/128/assaultcube.png new file mode 100644 index 00000000..3ed01320 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/assaultcube.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/assaultcube.png.import b/tools/configurator/assets/icons/pixelitos/128/assaultcube.png.import new file mode 100644 index 00000000..ee2f81a7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/assaultcube.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dueeopbtvx8gi" +path="res://.godot/imported/assaultcube.png-badf30fa649bbae06f89bfb33ca07eb4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/assaultcube.png" +dest_files=["res://.godot/imported/assaultcube.png-badf30fa649bbae06f89bfb33ca07eb4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/atril.png b/tools/configurator/assets/icons/pixelitos/128/atril.png new file mode 100644 index 00000000..18a45ef5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/atril.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/atril.png.import b/tools/configurator/assets/icons/pixelitos/128/atril.png.import new file mode 100644 index 00000000..b5c515b9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/atril.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ce1el7l4t1mhh" +path="res://.godot/imported/atril.png-b963a28ecd9ccd252d9b40873b554a02.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/atril.png" +dest_files=["res://.godot/imported/atril.png-b963a28ecd9ccd252d9b40873b554a02.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/audacity.png b/tools/configurator/assets/icons/pixelitos/128/audacity.png new file mode 100644 index 00000000..6a972382 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/audacity.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/audacity.png.import b/tools/configurator/assets/icons/pixelitos/128/audacity.png.import new file mode 100644 index 00000000..90d27920 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/audacity.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxasq3vfdalcy" +path="res://.godot/imported/audacity.png-e29dd2a6163ee942d810a07c1d673c46.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/audacity.png" +dest_files=["res://.godot/imported/audacity.png-e29dd2a6163ee942d810a07c1d673c46.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/avatar-default.png b/tools/configurator/assets/icons/pixelitos/128/avatar-default.png new file mode 100644 index 00000000..61f4ea3a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/avatar-default.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/avatar-default.png.import b/tools/configurator/assets/icons/pixelitos/128/avatar-default.png.import new file mode 100644 index 00000000..efa2fe7a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/avatar-default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4pr3xre5pfs6" +path="res://.godot/imported/avatar-default.png-8be812def97a85d31d45a315cba79011.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/avatar-default.png" +dest_files=["res://.godot/imported/avatar-default.png-8be812def97a85d31d45a315cba79011.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/balena-etcher-electron.png b/tools/configurator/assets/icons/pixelitos/128/balena-etcher-electron.png new file mode 100644 index 00000000..92aee85d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/balena-etcher-electron.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/balena-etcher-electron.png.import b/tools/configurator/assets/icons/pixelitos/128/balena-etcher-electron.png.import new file mode 100644 index 00000000..98eaaa5f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/balena-etcher-electron.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://colgehdu32sv" +path="res://.godot/imported/balena-etcher-electron.png-869155bd86ab5b0f818e71c39a45eca3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/balena-etcher-electron.png" +dest_files=["res://.godot/imported/balena-etcher-electron.png-869155bd86ab5b0f818e71c39a45eca3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/bigpemu.png b/tools/configurator/assets/icons/pixelitos/128/bigpemu.png new file mode 100644 index 00000000..059234d1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/bigpemu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/bigpemu.png.import b/tools/configurator/assets/icons/pixelitos/128/bigpemu.png.import new file mode 100644 index 00000000..4e68b8c7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/bigpemu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bndtco3t48kjv" +path="res://.godot/imported/bigpemu.png-b402d192288f133c5624e71a5132e5e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/bigpemu.png" +dest_files=["res://.godot/imported/bigpemu.png-b402d192288f133c5624e71a5132e5e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/blender.png b/tools/configurator/assets/icons/pixelitos/128/blender.png new file mode 100644 index 00000000..e38c72c7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/blender.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/blender.png.import b/tools/configurator/assets/icons/pixelitos/128/blender.png.import new file mode 100644 index 00000000..caa42917 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/blender.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0egvgph8x3as" +path="res://.godot/imported/blender.png-25a998e043925bcf92845fff557d5b90.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/blender.png" +dest_files=["res://.godot/imported/blender.png-25a998e043925bcf92845fff557d5b90.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/bulky.png b/tools/configurator/assets/icons/pixelitos/128/bulky.png new file mode 100644 index 00000000..3a261d76 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/bulky.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/bulky.png.import b/tools/configurator/assets/icons/pixelitos/128/bulky.png.import new file mode 100644 index 00000000..1f65dfcb --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/bulky.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br7flkxetxrho" +path="res://.godot/imported/bulky.png-959f9308ef1874ed57ed6ba798466e5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/bulky.png" +dest_files=["res://.godot/imported/bulky.png-959f9308ef1874ed57ed6ba798466e5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/chrome-beta.png b/tools/configurator/assets/icons/pixelitos/128/chrome-beta.png new file mode 100644 index 00000000..ca36104a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/chrome-beta.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/chrome-beta.png.import b/tools/configurator/assets/icons/pixelitos/128/chrome-beta.png.import new file mode 100644 index 00000000..dd969092 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/chrome-beta.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c34mpiqyg6qth" +path="res://.godot/imported/chrome-beta.png-7dcd1938ffbf5e00c4107b3b19f0582e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/chrome-beta.png" +dest_files=["res://.godot/imported/chrome-beta.png-7dcd1938ffbf5e00c4107b3b19f0582e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/chrome.png b/tools/configurator/assets/icons/pixelitos/128/chrome.png new file mode 100644 index 00000000..5691a779 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/chrome.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/chrome.png.import b/tools/configurator/assets/icons/pixelitos/128/chrome.png.import new file mode 100644 index 00000000..2849eaa5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/chrome.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba15fqeongl5k" +path="res://.godot/imported/chrome.png-56db972391ef9fa0630171acb12444ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/chrome.png" +dest_files=["res://.godot/imported/chrome.png-56db972391ef9fa0630171acb12444ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cinnamon-virtual-keyboard.png b/tools/configurator/assets/icons/pixelitos/128/cinnamon-virtual-keyboard.png new file mode 100644 index 00000000..2403518f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cinnamon-virtual-keyboard.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cinnamon-virtual-keyboard.png.import b/tools/configurator/assets/icons/pixelitos/128/cinnamon-virtual-keyboard.png.import new file mode 100644 index 00000000..45c050e3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cinnamon-virtual-keyboard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkt5hiu5vep6g" +path="res://.godot/imported/cinnamon-virtual-keyboard.png-fd555f11fa799afd30d35b72e5881775.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cinnamon-virtual-keyboard.png" +dest_files=["res://.godot/imported/cinnamon-virtual-keyboard.png-fd555f11fa799afd30d35b72e5881775.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/clementine.png b/tools/configurator/assets/icons/pixelitos/128/clementine.png new file mode 100644 index 00000000..66356665 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/clementine.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/clementine.png.import b/tools/configurator/assets/icons/pixelitos/128/clementine.png.import new file mode 100644 index 00000000..b5cc8054 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/clementine.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://evxkfi7a38e7" +path="res://.godot/imported/clementine.png-045b2ba53f12bd9e21bc924a1b5fcf85.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/clementine.png" +dest_files=["res://.godot/imported/clementine.png-045b2ba53f12bd9e21bc924a1b5fcf85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cmake-gui.png b/tools/configurator/assets/icons/pixelitos/128/cmake-gui.png new file mode 100644 index 00000000..390741ce Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cmake-gui.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cmake-gui.png.import b/tools/configurator/assets/icons/pixelitos/128/cmake-gui.png.import new file mode 100644 index 00000000..2f885006 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cmake-gui.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmc4ha8exyw06" +path="res://.godot/imported/cmake-gui.png-fd2aef3852861c2155e19f15ac703e0c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cmake-gui.png" +dest_files=["res://.godot/imported/cmake-gui.png-fd2aef3852861c2155e19f15ac703e0c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cmake.png b/tools/configurator/assets/icons/pixelitos/128/cmake.png new file mode 100644 index 00000000..390741ce Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cmake.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cmake.png.import b/tools/configurator/assets/icons/pixelitos/128/cmake.png.import new file mode 100644 index 00000000..24e73e98 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cmake.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byq5vusqo5cw6" +path="res://.godot/imported/cmake.png-a25819f8389097a53b8e885199853631.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cmake.png" +dest_files=["res://.godot/imported/cmake.png-a25819f8389097a53b8e885199853631.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/code-oss.png b/tools/configurator/assets/icons/pixelitos/128/code-oss.png new file mode 100644 index 00000000..3f03a4b1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/code-oss.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/code-oss.png.import b/tools/configurator/assets/icons/pixelitos/128/code-oss.png.import new file mode 100644 index 00000000..73e5ee34 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/code-oss.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6auptu62rnk7" +path="res://.godot/imported/code-oss.png-7ae638126b8903be11fc253d6b4d310d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/code-oss.png" +dest_files=["res://.godot/imported/code-oss.png-7ae638126b8903be11fc253d6b4d310d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/compton.png b/tools/configurator/assets/icons/pixelitos/128/compton.png new file mode 100644 index 00000000..3cc93d94 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/compton.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/compton.png.import b/tools/configurator/assets/icons/pixelitos/128/compton.png.import new file mode 100644 index 00000000..4bee8e83 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/compton.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8scjkdb7f2ow" +path="res://.godot/imported/compton.png-c7d5897661d650ddfe8d401763f321e4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/compton.png" +dest_files=["res://.godot/imported/compton.png-c7d5897661d650ddfe8d401763f321e4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/computer.png b/tools/configurator/assets/icons/pixelitos/128/computer.png new file mode 100644 index 00000000..218908f2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/computer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/computer.png.import b/tools/configurator/assets/icons/pixelitos/128/computer.png.import new file mode 100644 index 00000000..e04c989f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/computer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgh3df7ajg2c4" +path="res://.godot/imported/computer.png-1c2664ee00b43f5aef7e95f7f3290a69.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/computer.png" +dest_files=["res://.godot/imported/computer.png-1c2664ee00b43f5aef7e95f7f3290a69.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-applets.png b/tools/configurator/assets/icons/pixelitos/128/cs-applets.png new file mode 100644 index 00000000..e35488b2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-applets.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-applets.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-applets.png.import new file mode 100644 index 00000000..2b4ca973 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-applets.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3ifuw0uh15ao" +path="res://.godot/imported/cs-applets.png-048b7ec00ebba2302131b8403ec133b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-applets.png" +dest_files=["res://.godot/imported/cs-applets.png-048b7ec00ebba2302131b8403ec133b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-backgrounds.png b/tools/configurator/assets/icons/pixelitos/128/cs-backgrounds.png new file mode 100644 index 00000000..6b8b4b57 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-backgrounds.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-backgrounds.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-backgrounds.png.import new file mode 100644 index 00000000..a516f72c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-backgrounds.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c38u15tsar512" +path="res://.godot/imported/cs-backgrounds.png-af63900f048ce4072608c32dd7c62e94.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-backgrounds.png" +dest_files=["res://.godot/imported/cs-backgrounds.png-af63900f048ce4072608c32dd7c62e94.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-cat-appearance.png b/tools/configurator/assets/icons/pixelitos/128/cs-cat-appearance.png new file mode 100644 index 00000000..603016bb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-cat-appearance.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-cat-appearance.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-cat-appearance.png.import new file mode 100644 index 00000000..6e05130b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-cat-appearance.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwiusq0lmxcyj" +path="res://.godot/imported/cs-cat-appearance.png-50cbce4c90a3b0cbb6899bc7fe7ca78a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-cat-appearance.png" +dest_files=["res://.godot/imported/cs-cat-appearance.png-50cbce4c90a3b0cbb6899bc7fe7ca78a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-cat-hardware.png b/tools/configurator/assets/icons/pixelitos/128/cs-cat-hardware.png new file mode 100644 index 00000000..2403518f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-cat-hardware.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-cat-hardware.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-cat-hardware.png.import new file mode 100644 index 00000000..21923e53 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-cat-hardware.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4rt8mjxpp7ki" +path="res://.godot/imported/cs-cat-hardware.png-afb6ae205951f933eb78b5ac987cc226.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-cat-hardware.png" +dest_files=["res://.godot/imported/cs-cat-hardware.png-afb6ae205951f933eb78b5ac987cc226.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-cat-prefs.png b/tools/configurator/assets/icons/pixelitos/128/cs-cat-prefs.png new file mode 100644 index 00000000..ebaa4cac Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-cat-prefs.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-cat-prefs.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-cat-prefs.png.import new file mode 100644 index 00000000..f943b82c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-cat-prefs.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coqfmtijdcfey" +path="res://.godot/imported/cs-cat-prefs.png-cb1b58ad52735b57ee1edc173bd8a27d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-cat-prefs.png" +dest_files=["res://.godot/imported/cs-cat-prefs.png-cb1b58ad52735b57ee1edc173bd8a27d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-cat-tweaks.png b/tools/configurator/assets/icons/pixelitos/128/cs-cat-tweaks.png new file mode 100644 index 00000000..ebaa4cac Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-cat-tweaks.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-cat-tweaks.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-cat-tweaks.png.import new file mode 100644 index 00000000..1bae71f5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-cat-tweaks.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2t4lqvn4uf2" +path="res://.godot/imported/cs-cat-tweaks.png-51ec664f37cd72b18fd731627b30234c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-cat-tweaks.png" +dest_files=["res://.godot/imported/cs-cat-tweaks.png-51ec664f37cd72b18fd731627b30234c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-color.png b/tools/configurator/assets/icons/pixelitos/128/cs-color.png new file mode 100644 index 00000000..4a8df7a5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-color.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-color.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-color.png.import new file mode 100644 index 00000000..1df44b7e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-color.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kaqjk7025ljy" +path="res://.godot/imported/cs-color.png-4b87275909506d16123a9a5c73124e46.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-color.png" +dest_files=["res://.godot/imported/cs-color.png-4b87275909506d16123a9a5c73124e46.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-date-time.png b/tools/configurator/assets/icons/pixelitos/128/cs-date-time.png new file mode 100644 index 00000000..51aecbb7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-date-time.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-date-time.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-date-time.png.import new file mode 100644 index 00000000..255674be --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-date-time.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx7pxit6ii4oj" +path="res://.godot/imported/cs-date-time.png-165593125459f473e2c426686b0314cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-date-time.png" +dest_files=["res://.godot/imported/cs-date-time.png-165593125459f473e2c426686b0314cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-default-applications.png b/tools/configurator/assets/icons/pixelitos/128/cs-default-applications.png new file mode 100644 index 00000000..2fe13b29 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-default-applications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-default-applications.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-default-applications.png.import new file mode 100644 index 00000000..1079e169 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-default-applications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh3a7gwt5ero0" +path="res://.godot/imported/cs-default-applications.png-750bea098b6f27e154ae9cd7c0c6461d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-default-applications.png" +dest_files=["res://.godot/imported/cs-default-applications.png-750bea098b6f27e154ae9cd7c0c6461d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-desklets.png b/tools/configurator/assets/icons/pixelitos/128/cs-desklets.png new file mode 100644 index 00000000..fe9e1264 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-desklets.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-desklets.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-desklets.png.import new file mode 100644 index 00000000..bf146a68 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-desklets.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7me5xjopuw12" +path="res://.godot/imported/cs-desklets.png-479c570a231b1b3e46e493dc75b45f35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-desklets.png" +dest_files=["res://.godot/imported/cs-desklets.png-479c570a231b1b3e46e493dc75b45f35.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-desktop-effects.png b/tools/configurator/assets/icons/pixelitos/128/cs-desktop-effects.png new file mode 100644 index 00000000..9966c413 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-desktop-effects.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-desktop-effects.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-desktop-effects.png.import new file mode 100644 index 00000000..c45338de --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-desktop-effects.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cboyy7fkdijwg" +path="res://.godot/imported/cs-desktop-effects.png-fb641e4b0a2d0321c34adc2a9fc3a36e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-desktop-effects.png" +dest_files=["res://.godot/imported/cs-desktop-effects.png-fb641e4b0a2d0321c34adc2a9fc3a36e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-desktop.png b/tools/configurator/assets/icons/pixelitos/128/cs-desktop.png new file mode 100644 index 00000000..6d027caa Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-desktop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-desktop.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-desktop.png.import new file mode 100644 index 00000000..1013d084 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-desktop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uumslmbyqw6x" +path="res://.godot/imported/cs-desktop.png-e143208ce6e52489e741963fd7f21b63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-desktop.png" +dest_files=["res://.godot/imported/cs-desktop.png-e143208ce6e52489e741963fd7f21b63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-details.png b/tools/configurator/assets/icons/pixelitos/128/cs-details.png new file mode 100644 index 00000000..bcfc35db Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-details.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-details.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-details.png.import new file mode 100644 index 00000000..41aeb53d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-details.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbsd6yjvmadl6" +path="res://.godot/imported/cs-details.png-624c3e18bf1f827f3fc6df94b3522700.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-details.png" +dest_files=["res://.godot/imported/cs-details.png-624c3e18bf1f827f3fc6df94b3522700.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-display.png b/tools/configurator/assets/icons/pixelitos/128/cs-display.png new file mode 100644 index 00000000..218908f2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-display.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-display.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-display.png.import new file mode 100644 index 00000000..95ee9581 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-display.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdj8vt3vhucq4" +path="res://.godot/imported/cs-display.png-99a270cbca1cbe0a0678aa276d50d2ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-display.png" +dest_files=["res://.godot/imported/cs-display.png-99a270cbca1cbe0a0678aa276d50d2ec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-extensions.png b/tools/configurator/assets/icons/pixelitos/128/cs-extensions.png new file mode 100644 index 00000000..fabf381e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-extensions.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-extensions.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-extensions.png.import new file mode 100644 index 00000000..e2cc0f30 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-extensions.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjd0jbyvipcj6" +path="res://.godot/imported/cs-extensions.png-4cbb229290b7ac28836afd4ddcb36e69.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-extensions.png" +dest_files=["res://.godot/imported/cs-extensions.png-4cbb229290b7ac28836afd4ddcb36e69.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-fonts.png b/tools/configurator/assets/icons/pixelitos/128/cs-fonts.png new file mode 100644 index 00000000..2a6a1b47 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-fonts.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-fonts.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-fonts.png.import new file mode 100644 index 00000000..f11a302c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-fonts.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctvnsms3oij17" +path="res://.godot/imported/cs-fonts.png-000c1bf9dfe9619157493bc3ede25ff7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-fonts.png" +dest_files=["res://.godot/imported/cs-fonts.png-000c1bf9dfe9619157493bc3ede25ff7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-general.png b/tools/configurator/assets/icons/pixelitos/128/cs-general.png new file mode 100644 index 00000000..ebaa4cac Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-general.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-general.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-general.png.import new file mode 100644 index 00000000..df00f5b5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-general.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://debs53e7f7bjp" +path="res://.godot/imported/cs-general.png-1bcaf7061e5e73ca30aa4c50bbc2cad6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-general.png" +dest_files=["res://.godot/imported/cs-general.png-1bcaf7061e5e73ca30aa4c50bbc2cad6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-keyboard.png b/tools/configurator/assets/icons/pixelitos/128/cs-keyboard.png new file mode 100644 index 00000000..2403518f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-keyboard.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-keyboard.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-keyboard.png.import new file mode 100644 index 00000000..f01dd994 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-keyboard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lqdxe8tkpcjo" +path="res://.godot/imported/cs-keyboard.png-dea15bd948b70cecc485880946154272.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-keyboard.png" +dest_files=["res://.godot/imported/cs-keyboard.png-dea15bd948b70cecc485880946154272.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-mouse.png b/tools/configurator/assets/icons/pixelitos/128/cs-mouse.png new file mode 100644 index 00000000..a38709d8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-mouse.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-mouse.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-mouse.png.import new file mode 100644 index 00000000..4cd34b41 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-mouse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbpcpg12r1vmw" +path="res://.godot/imported/cs-mouse.png-299ecbd5325e2d4e7c2b54f749ce0f7d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-mouse.png" +dest_files=["res://.godot/imported/cs-mouse.png-299ecbd5325e2d4e7c2b54f749ce0f7d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-network.png b/tools/configurator/assets/icons/pixelitos/128/cs-network.png new file mode 100644 index 00000000..cba47f64 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-network.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-network.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-network.png.import new file mode 100644 index 00000000..aa7de325 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-network.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0awa8venu1h8" +path="res://.godot/imported/cs-network.png-7dbf01cd0ccc04af16cc8e9269126624.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-network.png" +dest_files=["res://.godot/imported/cs-network.png-7dbf01cd0ccc04af16cc8e9269126624.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-notifications.png b/tools/configurator/assets/icons/pixelitos/128/cs-notifications.png new file mode 100644 index 00000000..513e9cf1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-notifications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-notifications.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-notifications.png.import new file mode 100644 index 00000000..a3ced53c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-notifications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3lwh2jpnnyol" +path="res://.godot/imported/cs-notifications.png-97030a223b9c82e652a193c9e8fb65e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-notifications.png" +dest_files=["res://.godot/imported/cs-notifications.png-97030a223b9c82e652a193c9e8fb65e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-online-accounts.png b/tools/configurator/assets/icons/pixelitos/128/cs-online-accounts.png new file mode 100644 index 00000000..df2643d3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-online-accounts.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-online-accounts.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-online-accounts.png.import new file mode 100644 index 00000000..ae0679a6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-online-accounts.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqye7tqy8ftkk" +path="res://.godot/imported/cs-online-accounts.png-1cc4588c0e5d9e4b7a1ddb42abac1ad4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-online-accounts.png" +dest_files=["res://.godot/imported/cs-online-accounts.png-1cc4588c0e5d9e4b7a1ddb42abac1ad4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-overview.png b/tools/configurator/assets/icons/pixelitos/128/cs-overview.png new file mode 100644 index 00000000..1c262dc2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-overview.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-overview.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-overview.png.import new file mode 100644 index 00000000..2fa2b353 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-overview.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2cqoxjmod2g2" +path="res://.godot/imported/cs-overview.png-1f37cf90ca3611b27bc15df72ad8758a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-overview.png" +dest_files=["res://.godot/imported/cs-overview.png-1f37cf90ca3611b27bc15df72ad8758a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-panel.png b/tools/configurator/assets/icons/pixelitos/128/cs-panel.png new file mode 100644 index 00000000..95bda2ef Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-panel.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-panel.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-panel.png.import new file mode 100644 index 00000000..c059a7ed --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-panel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7wailw6scnbe" +path="res://.godot/imported/cs-panel.png-5fa1dff204e9912c421a1a1e60109c95.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-panel.png" +dest_files=["res://.godot/imported/cs-panel.png-5fa1dff204e9912c421a1a1e60109c95.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-power.png b/tools/configurator/assets/icons/pixelitos/128/cs-power.png new file mode 100644 index 00000000..cbfff2cf Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-power.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-power.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-power.png.import new file mode 100644 index 00000000..6971ff41 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-power.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bomcg62ap5anp" +path="res://.godot/imported/cs-power.png-1b480251fc2d5b61de244e711d34e7b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-power.png" +dest_files=["res://.godot/imported/cs-power.png-1b480251fc2d5b61de244e711d34e7b9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-printer.png b/tools/configurator/assets/icons/pixelitos/128/cs-printer.png new file mode 100644 index 00000000..a3845fad Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-printer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-printer.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-printer.png.import new file mode 100644 index 00000000..68b18569 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-printer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bopi6owknrx4u" +path="res://.godot/imported/cs-printer.png-41e7bf06ceadedb0a4da68f8fbed4582.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-printer.png" +dest_files=["res://.godot/imported/cs-printer.png-41e7bf06ceadedb0a4da68f8fbed4582.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-privacy.png b/tools/configurator/assets/icons/pixelitos/128/cs-privacy.png new file mode 100644 index 00000000..fc548837 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-privacy.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-privacy.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-privacy.png.import new file mode 100644 index 00000000..f3ca215b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-privacy.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnxnlxwnhpv42" +path="res://.godot/imported/cs-privacy.png-785c87b5efbe5de0739049bd0157ebac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-privacy.png" +dest_files=["res://.godot/imported/cs-privacy.png-785c87b5efbe5de0739049bd0157ebac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-screensaver.png b/tools/configurator/assets/icons/pixelitos/128/cs-screensaver.png new file mode 100644 index 00000000..16835ecd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-screensaver.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-screensaver.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-screensaver.png.import new file mode 100644 index 00000000..63d78123 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-screensaver.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c81l5vda272dq" +path="res://.godot/imported/cs-screensaver.png-0c7465e84fe52b17bdcbdd128bcf7962.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-screensaver.png" +dest_files=["res://.godot/imported/cs-screensaver.png-0c7465e84fe52b17bdcbdd128bcf7962.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-sound.png b/tools/configurator/assets/icons/pixelitos/128/cs-sound.png new file mode 100644 index 00000000..2c765069 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-sound.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-sound.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-sound.png.import new file mode 100644 index 00000000..08a6f97c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-sound.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8q3l08j2hl3a" +path="res://.godot/imported/cs-sound.png-5f3d67a4db4a04ffd51c528565589927.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-sound.png" +dest_files=["res://.godot/imported/cs-sound.png-5f3d67a4db4a04ffd51c528565589927.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-startup-programs.png b/tools/configurator/assets/icons/pixelitos/128/cs-startup-programs.png new file mode 100644 index 00000000..1b5febd8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-startup-programs.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-startup-programs.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-startup-programs.png.import new file mode 100644 index 00000000..5dacc4e6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-startup-programs.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxpdakjreeij2" +path="res://.godot/imported/cs-startup-programs.png-7479b8cfb2ab9466ec0043bbefc52b15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-startup-programs.png" +dest_files=["res://.godot/imported/cs-startup-programs.png-7479b8cfb2ab9466ec0043bbefc52b15.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-tablet.png b/tools/configurator/assets/icons/pixelitos/128/cs-tablet.png new file mode 100644 index 00000000..a4e04c43 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-tablet.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-tablet.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-tablet.png.import new file mode 100644 index 00000000..7b0c6c24 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-tablet.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcsscogehjw4j" +path="res://.godot/imported/cs-tablet.png-51a80457a3fafac624621cf99165e854.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-tablet.png" +dest_files=["res://.godot/imported/cs-tablet.png-51a80457a3fafac624621cf99165e854.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-themes.png b/tools/configurator/assets/icons/pixelitos/128/cs-themes.png new file mode 100644 index 00000000..603016bb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-themes.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-themes.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-themes.png.import new file mode 100644 index 00000000..875d61cd --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-themes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4ee8j2kh1tmy" +path="res://.godot/imported/cs-themes.png-1b6bc2abec3fd5414d84bcb77988caf4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-themes.png" +dest_files=["res://.godot/imported/cs-themes.png-1b6bc2abec3fd5414d84bcb77988caf4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-tiling.png b/tools/configurator/assets/icons/pixelitos/128/cs-tiling.png new file mode 100644 index 00000000..2175f280 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-tiling.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-tiling.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-tiling.png.import new file mode 100644 index 00000000..7f5d796b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-tiling.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv42c6hpi6tde" +path="res://.godot/imported/cs-tiling.png-3d1674c72e8a6471298f122726075c33.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-tiling.png" +dest_files=["res://.godot/imported/cs-tiling.png-3d1674c72e8a6471298f122726075c33.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-universal-access.png b/tools/configurator/assets/icons/pixelitos/128/cs-universal-access.png new file mode 100644 index 00000000..577cd803 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-universal-access.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-universal-access.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-universal-access.png.import new file mode 100644 index 00000000..d2d64464 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-universal-access.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjbtld2vojjxn" +path="res://.godot/imported/cs-universal-access.png-1a731fd86b0832ab3224ef6464800891.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-universal-access.png" +dest_files=["res://.godot/imported/cs-universal-access.png-1a731fd86b0832ab3224ef6464800891.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-user.png b/tools/configurator/assets/icons/pixelitos/128/cs-user.png new file mode 100644 index 00000000..61f4ea3a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-user.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-user.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-user.png.import new file mode 100644 index 00000000..964217cf --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-user.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diu1akug7xul8" +path="res://.godot/imported/cs-user.png-000ae36dd21d4ab3eea297adec89ae56.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-user.png" +dest_files=["res://.godot/imported/cs-user.png-000ae36dd21d4ab3eea297adec89ae56.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-windows.png b/tools/configurator/assets/icons/pixelitos/128/cs-windows.png new file mode 100644 index 00000000..ced711c7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-windows.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-windows.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-windows.png.import new file mode 100644 index 00000000..64baac40 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-windows.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5hwe733546r4" +path="res://.godot/imported/cs-windows.png-0da2a924644dbeb9d748617fe861d244.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-windows.png" +dest_files=["res://.godot/imported/cs-windows.png-0da2a924644dbeb9d748617fe861d244.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-workspaces.png b/tools/configurator/assets/icons/pixelitos/128/cs-workspaces.png new file mode 100644 index 00000000..1b6c0a43 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/cs-workspaces.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/cs-workspaces.png.import b/tools/configurator/assets/icons/pixelitos/128/cs-workspaces.png.import new file mode 100644 index 00000000..1e967b1b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/cs-workspaces.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brgluish6wykd" +path="res://.godot/imported/cs-workspaces.png-3ddb3c1ca5019c85120ced120f295dbf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/cs-workspaces.png" +dest_files=["res://.godot/imported/cs-workspaces.png-3ddb3c1ca5019c85120ced120f295dbf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/desktop-environment-xfce.png b/tools/configurator/assets/icons/pixelitos/128/desktop-environment-xfce.png new file mode 100644 index 00000000..98b156ec Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/desktop-environment-xfce.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/desktop-environment-xfce.png.import b/tools/configurator/assets/icons/pixelitos/128/desktop-environment-xfce.png.import new file mode 100644 index 00000000..52625ff5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/desktop-environment-xfce.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhiqqbrvlwo8a" +path="res://.godot/imported/desktop-environment-xfce.png-8ccba2ddf2da056271ee126173038360.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/desktop-environment-xfce.png" +dest_files=["res://.godot/imported/desktop-environment-xfce.png-8ccba2ddf2da056271ee126173038360.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/dialog-password.png b/tools/configurator/assets/icons/pixelitos/128/dialog-password.png new file mode 100644 index 00000000..2406c02f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/dialog-password.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/dialog-password.png.import b/tools/configurator/assets/icons/pixelitos/128/dialog-password.png.import new file mode 100644 index 00000000..fec67f43 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/dialog-password.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck1ff6wn5ge3w" +path="res://.godot/imported/dialog-password.png-0f52ccd8660440809594b41af10f2a44.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/dialog-password.png" +dest_files=["res://.godot/imported/dialog-password.png-0f52ccd8660440809594b41af10f2a44.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/discord.png b/tools/configurator/assets/icons/pixelitos/128/discord.png new file mode 100644 index 00000000..457fceff Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/discord.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/discord.png.import b/tools/configurator/assets/icons/pixelitos/128/discord.png.import new file mode 100644 index 00000000..e52b80b9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/discord.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo7vpff23a2ek" +path="res://.godot/imported/discord.png-764a2e950dc447e0487cbae736b2827c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/discord.png" +dest_files=["res://.godot/imported/discord.png-764a2e950dc447e0487cbae736b2827c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/disk-usage-analyzer.png b/tools/configurator/assets/icons/pixelitos/128/disk-usage-analyzer.png new file mode 100644 index 00000000..a5b9f063 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/disk-usage-analyzer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/disk-usage-analyzer.png.import b/tools/configurator/assets/icons/pixelitos/128/disk-usage-analyzer.png.import new file mode 100644 index 00000000..2b45c113 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/disk-usage-analyzer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca3ndbg0eykxn" +path="res://.godot/imported/disk-usage-analyzer.png-c8debc7095756256ac301be07c6f8f8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/disk-usage-analyzer.png" +dest_files=["res://.godot/imported/disk-usage-analyzer.png-c8debc7095756256ac301be07c6f8f8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/document-open-recent.png b/tools/configurator/assets/icons/pixelitos/128/document-open-recent.png new file mode 100644 index 00000000..51aecbb7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/document-open-recent.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/document-open-recent.png.import b/tools/configurator/assets/icons/pixelitos/128/document-open-recent.png.import new file mode 100644 index 00000000..bba454ee --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/document-open-recent.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5wybbuuoroae" +path="res://.godot/imported/document-open-recent.png-0d8b8a1aeb55ac7a298ab75fc0607416.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/document-open-recent.png" +dest_files=["res://.godot/imported/document-open-recent.png-0d8b8a1aeb55ac7a298ab75fc0607416.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/dosbox-x.png b/tools/configurator/assets/icons/pixelitos/128/dosbox-x.png new file mode 100644 index 00000000..44f18985 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/dosbox-x.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/dosbox-x.png.import b/tools/configurator/assets/icons/pixelitos/128/dosbox-x.png.import new file mode 100644 index 00000000..3b4b059b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/dosbox-x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ml4holu8xo5" +path="res://.godot/imported/dosbox-x.png-85fd7ce46c5f3e1f2adf8902369861bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/dosbox-x.png" +dest_files=["res://.godot/imported/dosbox-x.png-85fd7ce46c5f3e1f2adf8902369861bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/dosbox.png b/tools/configurator/assets/icons/pixelitos/128/dosbox.png new file mode 100644 index 00000000..5407003e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/dosbox.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/dosbox.png.import b/tools/configurator/assets/icons/pixelitos/128/dosbox.png.import new file mode 100644 index 00000000..743f90cc --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/dosbox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bf2k4h3nhmky0" +path="res://.godot/imported/dosbox.png-909d602e185042b90148dde59d0b8470.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/dosbox.png" +dest_files=["res://.godot/imported/dosbox.png-909d602e185042b90148dde59d0b8470.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/drive-removable-media.png b/tools/configurator/assets/icons/pixelitos/128/drive-removable-media.png new file mode 100644 index 00000000..cd7cb423 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/drive-removable-media.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/drive-removable-media.png.import b/tools/configurator/assets/icons/pixelitos/128/drive-removable-media.png.import new file mode 100644 index 00000000..0d5e8198 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/drive-removable-media.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvt2jky3bbjun" +path="res://.godot/imported/drive-removable-media.png-5e63d1639cd61e282ca958c0f31357ad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/drive-removable-media.png" +dest_files=["res://.godot/imported/drive-removable-media.png-5e63d1639cd61e282ca958c0f31357ad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/duck_tank.png b/tools/configurator/assets/icons/pixelitos/128/duck_tank.png new file mode 100644 index 00000000..55903cf1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/duck_tank.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/duck_tank.png.import b/tools/configurator/assets/icons/pixelitos/128/duck_tank.png.import new file mode 100644 index 00000000..43be5556 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/duck_tank.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://boqql5b5qhdy0" +path="res://.godot/imported/duck_tank.png-57c51996811a37bdb22d8eb02a91bc9b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/duck_tank.png" +dest_files=["res://.godot/imported/duck_tank.png-57c51996811a37bdb22d8eb02a91bc9b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/duckstation-nogui.png b/tools/configurator/assets/icons/pixelitos/128/duckstation-nogui.png new file mode 100644 index 00000000..de004260 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/duckstation-nogui.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/duckstation-nogui.png.import b/tools/configurator/assets/icons/pixelitos/128/duckstation-nogui.png.import new file mode 100644 index 00000000..6e42a7bf --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/duckstation-nogui.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmgoufconnsw6" +path="res://.godot/imported/duckstation-nogui.png-2cecc0c658d8c3836a8dedd3d289f88c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/duckstation-nogui.png" +dest_files=["res://.godot/imported/duckstation-nogui.png-2cecc0c658d8c3836a8dedd3d289f88c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/duckstation.png b/tools/configurator/assets/icons/pixelitos/128/duckstation.png new file mode 100644 index 00000000..de004260 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/duckstation.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/duckstation.png.import b/tools/configurator/assets/icons/pixelitos/128/duckstation.png.import new file mode 100644 index 00000000..5b719766 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/duckstation.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxwnt3djsrck7" +path="res://.godot/imported/duckstation.png-d574f4c1f99794d23c3f0156595831ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/duckstation.png" +dest_files=["res://.godot/imported/duckstation.png-d574f4c1f99794d23c3f0156595831ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/emacs.png b/tools/configurator/assets/icons/pixelitos/128/emacs.png new file mode 100644 index 00000000..a41f9933 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/emacs.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/emacs.png.import b/tools/configurator/assets/icons/pixelitos/128/emacs.png.import new file mode 100644 index 00000000..43e70039 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/emacs.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cse4phnvye0ns" +path="res://.godot/imported/emacs.png-2b2cc9db7cc1baa6b4353f0efccb4b85.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/emacs.png" +dest_files=["res://.godot/imported/emacs.png-2b2cc9db7cc1baa6b4353f0efccb4b85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/email.png b/tools/configurator/assets/icons/pixelitos/128/email.png new file mode 100644 index 00000000..a2205a63 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/email.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/email.png.import b/tools/configurator/assets/icons/pixelitos/128/email.png.import new file mode 100644 index 00000000..fced306e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/email.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5ecnu07605lf" +path="res://.godot/imported/email.png-45bf06b377b0eb722c80c384133c1077.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/email.png" +dest_files=["res://.godot/imported/email.png-45bf06b377b0eb722c80c384133c1077.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/es-de.png b/tools/configurator/assets/icons/pixelitos/128/es-de.png new file mode 100644 index 00000000..6575bb96 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/es-de.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/es-de.png.import b/tools/configurator/assets/icons/pixelitos/128/es-de.png.import new file mode 100644 index 00000000..f49c47ce --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/es-de.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhf620jyq75t1" +path="res://.godot/imported/es-de.png-7133c76b0fc370d6d2c311241df36cf6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/es-de.png" +dest_files=["res://.godot/imported/es-de.png-7133c76b0fc370d6d2c311241df36cf6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/eu.vcmi.VCMI.png b/tools/configurator/assets/icons/pixelitos/128/eu.vcmi.VCMI.png new file mode 100644 index 00000000..bbc4cd4f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/eu.vcmi.VCMI.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/eu.vcmi.VCMI.png.import b/tools/configurator/assets/icons/pixelitos/128/eu.vcmi.VCMI.png.import new file mode 100644 index 00000000..97f3afd7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/eu.vcmi.VCMI.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fekug3yq6xfh" +path="res://.godot/imported/eu.vcmi.VCMI.png-0b2f1629fb12f6bbf553c557b026a97f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/eu.vcmi.VCMI.png" +dest_files=["res://.godot/imported/eu.vcmi.VCMI.png-0b2f1629fb12f6bbf553c557b026a97f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/facebook.png b/tools/configurator/assets/icons/pixelitos/128/facebook.png new file mode 100644 index 00000000..959d91ec Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/facebook.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/facebook.png.import b/tools/configurator/assets/icons/pixelitos/128/facebook.png.import new file mode 100644 index 00000000..53e2e160 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/facebook.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by4khxtbjihao" +path="res://.godot/imported/facebook.png-8d1b09a90512cb973305d2ecda9282e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/facebook.png" +dest_files=["res://.godot/imported/facebook.png-8d1b09a90512cb973305d2ecda9282e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/fbneo.png b/tools/configurator/assets/icons/pixelitos/128/fbneo.png new file mode 100644 index 00000000..bea483b9 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/fbneo.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/fbneo.png.import b/tools/configurator/assets/icons/pixelitos/128/fbneo.png.import new file mode 100644 index 00000000..7e59f8e2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/fbneo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7ftqvcf52ehx" +path="res://.godot/imported/fbneo.png-5cb44510ee095ad7a4fc056fe416685b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/fbneo.png" +dest_files=["res://.godot/imported/fbneo.png-5cb44510ee095ad7a4fc056fe416685b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/feh.png b/tools/configurator/assets/icons/pixelitos/128/feh.png new file mode 100644 index 00000000..a5512228 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/feh.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/feh.png.import b/tools/configurator/assets/icons/pixelitos/128/feh.png.import new file mode 100644 index 00000000..20f0e448 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/feh.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6kkm8auviaxc" +path="res://.godot/imported/feh.png-61005c4ad1c3af6f5340bf5ae4d4796b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/feh.png" +dest_files=["res://.godot/imported/feh.png-61005c4ad1c3af6f5340bf5ae4d4796b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/file-roller.png b/tools/configurator/assets/icons/pixelitos/128/file-roller.png new file mode 100644 index 00000000..3c7abcb6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/file-roller.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/file-roller.png.import b/tools/configurator/assets/icons/pixelitos/128/file-roller.png.import new file mode 100644 index 00000000..990cf8e6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/file-roller.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq16w3q022bnk" +path="res://.godot/imported/file-roller.png-370cbd22228e9e66110b9415dec131a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/file-roller.png" +dest_files=["res://.godot/imported/file-roller.png-370cbd22228e9e66110b9415dec131a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/file-system-manager.png b/tools/configurator/assets/icons/pixelitos/128/file-system-manager.png new file mode 100644 index 00000000..04548a3e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/file-system-manager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/file-system-manager.png.import b/tools/configurator/assets/icons/pixelitos/128/file-system-manager.png.import new file mode 100644 index 00000000..c8873211 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/file-system-manager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0tfalr4np88w" +path="res://.godot/imported/file-system-manager.png-1a3dc6e82979cf2be0ab48f5f412ae45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/file-system-manager.png" +dest_files=["res://.godot/imported/file-system-manager.png-1a3dc6e82979cf2be0ab48f5f412ae45.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/filezilla.png b/tools/configurator/assets/icons/pixelitos/128/filezilla.png new file mode 100644 index 00000000..69aebb88 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/filezilla.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/filezilla.png.import b/tools/configurator/assets/icons/pixelitos/128/filezilla.png.import new file mode 100644 index 00000000..25f71d5b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/filezilla.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4qr63lg3vneh" +path="res://.godot/imported/filezilla.png-dcbd807dff2df96b89fd825f4bcfc53d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/filezilla.png" +dest_files=["res://.godot/imported/filezilla.png-dcbd807dff2df96b89fd825f4bcfc53d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/firefox.png b/tools/configurator/assets/icons/pixelitos/128/firefox.png new file mode 100644 index 00000000..866120b8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/firefox.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/firefox.png.import b/tools/configurator/assets/icons/pixelitos/128/firefox.png.import new file mode 100644 index 00000000..0f4805ec --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/firefox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqv0urumnr7bm" +path="res://.godot/imported/firefox.png-14f24890b76123178afd8b35584f0e53.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/firefox.png" +dest_files=["res://.godot/imported/firefox.png-14f24890b76123178afd8b35584f0e53.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/floorp.png b/tools/configurator/assets/icons/pixelitos/128/floorp.png new file mode 100644 index 00000000..60089a12 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/floorp.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/floorp.png.import b/tools/configurator/assets/icons/pixelitos/128/floorp.png.import new file mode 100644 index 00000000..e7199b7f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/floorp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl404iew0kt24" +path="res://.godot/imported/floorp.png-6d277ff687514a2a4d95956bdebe8f48.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/floorp.png" +dest_files=["res://.godot/imported/floorp.png-6d277ff687514a2a4d95956bdebe8f48.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/flycast.png b/tools/configurator/assets/icons/pixelitos/128/flycast.png new file mode 100644 index 00000000..a98a8cee Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/flycast.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/flycast.png.import b/tools/configurator/assets/icons/pixelitos/128/flycast.png.import new file mode 100644 index 00000000..294b5552 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/flycast.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctm3f56t7jhiw" +path="res://.godot/imported/flycast.png-454d63296971d85691881883d8c379e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/flycast.png" +dest_files=["res://.godot/imported/flycast.png-454d63296971d85691881883d8c379e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/fuse.png b/tools/configurator/assets/icons/pixelitos/128/fuse.png new file mode 100644 index 00000000..a4cbea7a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/fuse.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/fuse.png.import b/tools/configurator/assets/icons/pixelitos/128/fuse.png.import new file mode 100644 index 00000000..eb520d80 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/fuse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://t4bq3t2l0rja" +path="res://.godot/imported/fuse.png-798b47a8862532036e29b84ce0746e43.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/fuse.png" +dest_files=["res://.godot/imported/fuse.png-798b47a8862532036e29b84ce0746e43.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/futurepinball.png b/tools/configurator/assets/icons/pixelitos/128/futurepinball.png new file mode 100644 index 00000000..05ff4793 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/futurepinball.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/futurepinball.png.import b/tools/configurator/assets/icons/pixelitos/128/futurepinball.png.import new file mode 100644 index 00000000..bcb6b27d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/futurepinball.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpku11sp5a25j" +path="res://.godot/imported/futurepinball.png-6f75ac8b29ef4ee45b338864d9bfbcc0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/futurepinball.png" +dest_files=["res://.godot/imported/futurepinball.png-6f75ac8b29ef4ee45b338864d9bfbcc0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/gcolor.png b/tools/configurator/assets/icons/pixelitos/128/gcolor.png new file mode 100644 index 00000000..866b8f68 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/gcolor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/gcolor.png.import b/tools/configurator/assets/icons/pixelitos/128/gcolor.png.import new file mode 100644 index 00000000..b3e978c8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/gcolor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fyo3qk8f5bvh" +path="res://.godot/imported/gcolor.png-05f7aaa2a3b33aefad8871cbd3798907.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/gcolor.png" +dest_files=["res://.godot/imported/gcolor.png-05f7aaa2a3b33aefad8871cbd3798907.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/gcolor2.png b/tools/configurator/assets/icons/pixelitos/128/gcolor2.png new file mode 100644 index 00000000..866b8f68 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/gcolor2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/gcolor2.png.import b/tools/configurator/assets/icons/pixelitos/128/gcolor2.png.import new file mode 100644 index 00000000..e2dfe28d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/gcolor2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckoddod3jst6x" +path="res://.godot/imported/gcolor2.png-a5f53d48d87a6fb271f3f4f8a25a662e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/gcolor2.png" +dest_files=["res://.godot/imported/gcolor2.png-a5f53d48d87a6fb271f3f4f8a25a662e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/gcolor3.png b/tools/configurator/assets/icons/pixelitos/128/gcolor3.png new file mode 100644 index 00000000..866b8f68 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/gcolor3.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/gcolor3.png.import b/tools/configurator/assets/icons/pixelitos/128/gcolor3.png.import new file mode 100644 index 00000000..85231b7e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/gcolor3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wjugkn6u6gqc" +path="res://.godot/imported/gcolor3.png-147a77e26aad92e3de34d082dc2a23fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/gcolor3.png" +dest_files=["res://.godot/imported/gcolor3.png-147a77e26aad92e3de34d082dc2a23fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/geometry-dash.png b/tools/configurator/assets/icons/pixelitos/128/geometry-dash.png new file mode 100644 index 00000000..085f0aeb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/geometry-dash.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/geometry-dash.png.import b/tools/configurator/assets/icons/pixelitos/128/geometry-dash.png.import new file mode 100644 index 00000000..3a710aa7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/geometry-dash.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk1f73f1b65sb" +path="res://.godot/imported/geometry-dash.png-6d3bc8ff8470f5bd63df4398ad3f0daa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/geometry-dash.png" +dest_files=["res://.godot/imported/geometry-dash.png-6d3bc8ff8470f5bd63df4398ad3f0daa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/gimp.png b/tools/configurator/assets/icons/pixelitos/128/gimp.png new file mode 100644 index 00000000..564e9b23 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/gimp.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/gimp.png.import b/tools/configurator/assets/icons/pixelitos/128/gimp.png.import new file mode 100644 index 00000000..7c29b931 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/gimp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4ghn71uu1xvc" +path="res://.godot/imported/gimp.png-c384c515ca1dcbb815a720bf48c501d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/gimp.png" +dest_files=["res://.godot/imported/gimp.png-c384c515ca1dcbb815a720bf48c501d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/github-desktop.png b/tools/configurator/assets/icons/pixelitos/128/github-desktop.png new file mode 100644 index 00000000..db0543cb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/github-desktop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/github-desktop.png.import b/tools/configurator/assets/icons/pixelitos/128/github-desktop.png.import new file mode 100644 index 00000000..3fa8b7e0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/github-desktop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l8a431oxkvpq" +path="res://.godot/imported/github-desktop.png-a4ba13d7e9dd468ecda22bd8e0e39310.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/github-desktop.png" +dest_files=["res://.godot/imported/github-desktop.png-a4ba13d7e9dd468ecda22bd8e0e39310.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/github.png b/tools/configurator/assets/icons/pixelitos/128/github.png new file mode 100644 index 00000000..ab5b98f1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/github.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/github.png.import b/tools/configurator/assets/icons/pixelitos/128/github.png.import new file mode 100644 index 00000000..bb8a7ceb --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/github.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b46ewb4e52rx" +path="res://.godot/imported/github.png-af3431399b3d3d462e5bceddaa03c257.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/github.png" +dest_files=["res://.godot/imported/github.png-af3431399b3d3d462e5bceddaa03c257.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/godot.png b/tools/configurator/assets/icons/pixelitos/128/godot.png new file mode 100644 index 00000000..d29092b3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/godot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/godot.png.import b/tools/configurator/assets/icons/pixelitos/128/godot.png.import new file mode 100644 index 00000000..5522158f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/godot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://namrlgb3qfkc" +path="res://.godot/imported/godot.png-37ed3bbbd818218ced68b3664b52a940.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/godot.png" +dest_files=["res://.godot/imported/godot.png-37ed3bbbd818218ced68b3664b52a940.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/google-chrome.png b/tools/configurator/assets/icons/pixelitos/128/google-chrome.png new file mode 100644 index 00000000..5691a779 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/google-chrome.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/google-chrome.png.import b/tools/configurator/assets/icons/pixelitos/128/google-chrome.png.import new file mode 100644 index 00000000..6301d9dd --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/google-chrome.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pxpf5spvp8g5" +path="res://.godot/imported/google-chrome.png-410ef66d252a44636508876339dd477e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/google-chrome.png" +dest_files=["res://.godot/imported/google-chrome.png-410ef66d252a44636508876339dd477e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/gparted.png b/tools/configurator/assets/icons/pixelitos/128/gparted.png new file mode 100644 index 00000000..a5b9f063 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/gparted.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/gparted.png.import b/tools/configurator/assets/icons/pixelitos/128/gparted.png.import new file mode 100644 index 00000000..a7084331 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/gparted.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0juq1nhlogmp" +path="res://.godot/imported/gparted.png-d21066af64b024c626668650d6833b2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/gparted.png" +dest_files=["res://.godot/imported/gparted.png-d21066af64b024c626668650d6833b2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/gsplus.png b/tools/configurator/assets/icons/pixelitos/128/gsplus.png new file mode 100644 index 00000000..080d2c51 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/gsplus.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/gsplus.png.import b/tools/configurator/assets/icons/pixelitos/128/gsplus.png.import new file mode 100644 index 00000000..e8472da0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/gsplus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dop5wi7ink0q1" +path="res://.godot/imported/gsplus.png-34f10ea7c795883064944277a89c453e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/gsplus.png" +dest_files=["res://.godot/imported/gsplus.png-34f10ea7c795883064944277a89c453e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/gtk-preferences.png b/tools/configurator/assets/icons/pixelitos/128/gtk-preferences.png new file mode 100644 index 00000000..ebaa4cac Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/gtk-preferences.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/gtk-preferences.png.import b/tools/configurator/assets/icons/pixelitos/128/gtk-preferences.png.import new file mode 100644 index 00000000..00e60665 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/gtk-preferences.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxihxao3wikhf" +path="res://.godot/imported/gtk-preferences.png-dae9d4ea82057e16583e63c51570dfb4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/gtk-preferences.png" +dest_files=["res://.godot/imported/gtk-preferences.png-dae9d4ea82057e16583e63c51570dfb4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/gtk-select-color.png b/tools/configurator/assets/icons/pixelitos/128/gtk-select-color.png new file mode 100644 index 00000000..866b8f68 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/gtk-select-color.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/gtk-select-color.png.import b/tools/configurator/assets/icons/pixelitos/128/gtk-select-color.png.import new file mode 100644 index 00000000..45eed715 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/gtk-select-color.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnfutb05f4u8m" +path="res://.godot/imported/gtk-select-color.png-a63485c8848b0d3c46c2ce216342b25e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/gtk-select-color.png" +dest_files=["res://.godot/imported/gtk-select-color.png-a63485c8848b0d3c46c2ce216342b25e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/gvim.png b/tools/configurator/assets/icons/pixelitos/128/gvim.png new file mode 100644 index 00000000..a7b829ff Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/gvim.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/gvim.png.import b/tools/configurator/assets/icons/pixelitos/128/gvim.png.import new file mode 100644 index 00000000..394360e4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/gvim.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cleworehdh0fu" +path="res://.godot/imported/gvim.png-1a93fa3d5f6a313a30a93f3d02835ec6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/gvim.png" +dest_files=["res://.godot/imported/gvim.png-1a93fa3d5f6a313a30a93f3d02835ec6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/half-life.png b/tools/configurator/assets/icons/pixelitos/128/half-life.png new file mode 100644 index 00000000..d75738ee Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/half-life.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/half-life.png.import b/tools/configurator/assets/icons/pixelitos/128/half-life.png.import new file mode 100644 index 00000000..84159411 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/half-life.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfqk8lqk5mqig" +path="res://.godot/imported/half-life.png-de13cba368a35d9f229982ffb584a61b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/half-life.png" +dest_files=["res://.godot/imported/half-life.png-de13cba368a35d9f229982ffb584a61b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/half-life2.png b/tools/configurator/assets/icons/pixelitos/128/half-life2.png new file mode 100644 index 00000000..e69d9eaa Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/half-life2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/half-life2.png.import b/tools/configurator/assets/icons/pixelitos/128/half-life2.png.import new file mode 100644 index 00000000..fbce5d51 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/half-life2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddf3scws2epnp" +path="res://.godot/imported/half-life2.png-8d839042d89763333994af01d0d2b0ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/half-life2.png" +dest_files=["res://.godot/imported/half-life2.png-8d839042d89763333994af01d0d2b0ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/helltaker.png b/tools/configurator/assets/icons/pixelitos/128/helltaker.png new file mode 100644 index 00000000..ca1abc9c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/helltaker.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/helltaker.png.import b/tools/configurator/assets/icons/pixelitos/128/helltaker.png.import new file mode 100644 index 00000000..25157dee --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/helltaker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt77qr4c71lov" +path="res://.godot/imported/helltaker.png-bd91dd93e39434255ea2dda84230b199.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/helltaker.png" +dest_files=["res://.godot/imported/helltaker.png-bd91dd93e39434255ea2dda84230b199.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/help-about.png b/tools/configurator/assets/icons/pixelitos/128/help-about.png new file mode 100644 index 00000000..bcfc35db Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/help-about.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/help-about.png.import b/tools/configurator/assets/icons/pixelitos/128/help-about.png.import new file mode 100644 index 00000000..b4ebd173 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/help-about.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cytuu85wuu5tq" +path="res://.godot/imported/help-about.png-19f7d3dd86bbcc76528f87f85d61bbef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/help-about.png" +dest_files=["res://.godot/imported/help-about.png-19f7d3dd86bbcc76528f87f85d61bbef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/help-browser.png b/tools/configurator/assets/icons/pixelitos/128/help-browser.png new file mode 100644 index 00000000..d7ccea7d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/help-browser.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/help-browser.png.import b/tools/configurator/assets/icons/pixelitos/128/help-browser.png.import new file mode 100644 index 00000000..984c0bc5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/help-browser.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3sw7gtoiuab3" +path="res://.godot/imported/help-browser.png-994c5f92e172be830d38ef3b78170ae8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/help-browser.png" +dest_files=["res://.godot/imported/help-browser.png-994c5f92e172be830d38ef3b78170ae8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/help.contents.png b/tools/configurator/assets/icons/pixelitos/128/help.contents.png new file mode 100644 index 00000000..d7ccea7d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/help.contents.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/help.contents.png.import b/tools/configurator/assets/icons/pixelitos/128/help.contents.png.import new file mode 100644 index 00000000..17745375 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/help.contents.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds7qcptikd8lg" +path="res://.godot/imported/help.contents.png-b6383d82bf9777265d4814da668ce491.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/help.contents.png" +dest_files=["res://.godot/imported/help.contents.png-b6383d82bf9777265d4814da668ce491.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/htop.png b/tools/configurator/assets/icons/pixelitos/128/htop.png new file mode 100644 index 00000000..547ee141 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/htop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/htop.png.import b/tools/configurator/assets/icons/pixelitos/128/htop.png.import new file mode 100644 index 00000000..ddbe56f1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/htop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5tmbruvls8cj" +path="res://.godot/imported/htop.png-0761ef556ab3403369a9cf2802abb1f3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/htop.png" +dest_files=["res://.godot/imported/htop.png-0761ef556ab3403369a9cf2802abb1f3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/hwloc.png b/tools/configurator/assets/icons/pixelitos/128/hwloc.png new file mode 100644 index 00000000..a07f6ab1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/hwloc.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/hwloc.png.import b/tools/configurator/assets/icons/pixelitos/128/hwloc.png.import new file mode 100644 index 00000000..13ba0282 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/hwloc.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgqe0be1qivy3" +path="res://.godot/imported/hwloc.png-ce7f82eb5f86678b614999042b9d2d83.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/hwloc.png" +dest_files=["res://.godot/imported/hwloc.png-ce7f82eb5f86678b614999042b9d2d83.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/hypseus.png b/tools/configurator/assets/icons/pixelitos/128/hypseus.png new file mode 100644 index 00000000..99067182 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/hypseus.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/hypseus.png.import b/tools/configurator/assets/icons/pixelitos/128/hypseus.png.import new file mode 100644 index 00000000..b88717c7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/hypseus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c33ts4h2oqq00" +path="res://.godot/imported/hypseus.png-38a0e1c5627ba094096218b3515a3070.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/hypseus.png" +dest_files=["res://.godot/imported/hypseus.png-38a0e1c5627ba094096218b3515a3070.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/ibus-setup.png b/tools/configurator/assets/icons/pixelitos/128/ibus-setup.png new file mode 100644 index 00000000..ebaa4cac Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/ibus-setup.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/ibus-setup.png.import b/tools/configurator/assets/icons/pixelitos/128/ibus-setup.png.import new file mode 100644 index 00000000..327b11fe --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/ibus-setup.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0purt0sx6d1d" +path="res://.godot/imported/ibus-setup.png-b29ef44b354685317a657dfa8903820d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/ibus-setup.png" +dest_files=["res://.godot/imported/ibus-setup.png-b29ef44b354685317a657dfa8903820d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/ikemego.png b/tools/configurator/assets/icons/pixelitos/128/ikemego.png new file mode 100644 index 00000000..3266aabe Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/ikemego.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/ikemego.png.import b/tools/configurator/assets/icons/pixelitos/128/ikemego.png.import new file mode 100644 index 00000000..04c665ac --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/ikemego.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dplkus3kvxupj" +path="res://.godot/imported/ikemego.png-4299b1bf3db8a58bc32bd9ef46e37eee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/ikemego.png" +dest_files=["res://.godot/imported/ikemego.png-4299b1bf3db8a58bc32bd9ef46e37eee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/info.cemu.Cemu.png b/tools/configurator/assets/icons/pixelitos/128/info.cemu.Cemu.png new file mode 100644 index 00000000..1c3d4d63 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/info.cemu.Cemu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/info.cemu.Cemu.png.import b/tools/configurator/assets/icons/pixelitos/128/info.cemu.Cemu.png.import new file mode 100644 index 00000000..e305da81 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/info.cemu.Cemu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lopxvipv6asb" +path="res://.godot/imported/info.cemu.Cemu.png-2e7c64f8e39165c9cf2bee9af0d15f91.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/info.cemu.Cemu.png" +dest_files=["res://.godot/imported/info.cemu.Cemu.png-2e7c64f8e39165c9cf2bee9af0d15f91.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/inkscape.png b/tools/configurator/assets/icons/pixelitos/128/inkscape.png new file mode 100644 index 00000000..4173b2a4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/inkscape.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/inkscape.png.import b/tools/configurator/assets/icons/pixelitos/128/inkscape.png.import new file mode 100644 index 00000000..2a4d8e9a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/inkscape.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccimn7lm85cr5" +path="res://.godot/imported/inkscape.png-f7a8e7292f7e59c23a6da8c1e74df2f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/inkscape.png" +dest_files=["res://.godot/imported/inkscape.png-f7a8e7292f7e59c23a6da8c1e74df2f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/input-keyboard.png b/tools/configurator/assets/icons/pixelitos/128/input-keyboard.png new file mode 100644 index 00000000..2403518f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/input-keyboard.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/input-keyboard.png.import b/tools/configurator/assets/icons/pixelitos/128/input-keyboard.png.import new file mode 100644 index 00000000..2e394d83 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/input-keyboard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5ffepsmqopkx" +path="res://.godot/imported/input-keyboard.png-3c98868a1606d075af12ec4b921f8d73.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/input-keyboard.png" +dest_files=["res://.godot/imported/input-keyboard.png-3c98868a1606d075af12ec4b921f8d73.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/internet-web-browser.png b/tools/configurator/assets/icons/pixelitos/128/internet-web-browser.png new file mode 100644 index 00000000..422e3534 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/internet-web-browser.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/internet-web-browser.png.import b/tools/configurator/assets/icons/pixelitos/128/internet-web-browser.png.import new file mode 100644 index 00000000..7748a3c9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/internet-web-browser.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ble152m6361l8" +path="res://.godot/imported/internet-web-browser.png-f05127c79d8acdbcf89e5bb61219433b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/internet-web-browser.png" +dest_files=["res://.godot/imported/internet-web-browser.png-f05127c79d8acdbcf89e5bb61219433b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/io.github.antimicrox.antimicrox.png b/tools/configurator/assets/icons/pixelitos/128/io.github.antimicrox.antimicrox.png new file mode 100644 index 00000000..a18ac31e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/io.github.antimicrox.antimicrox.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/io.github.antimicrox.antimicrox.png.import b/tools/configurator/assets/icons/pixelitos/128/io.github.antimicrox.antimicrox.png.import new file mode 100644 index 00000000..c1238798 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/io.github.antimicrox.antimicrox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ywle6dfph2qd" +path="res://.godot/imported/io.github.antimicrox.antimicrox.png-ba67b34d05d2b47b477fac4dab4f0321.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/io.github.antimicrox.antimicrox.png" +dest_files=["res://.godot/imported/io.github.antimicrox.antimicrox.png-ba67b34d05d2b47b477fac4dab4f0321.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/io.github.ihhub.Fheroes2.png b/tools/configurator/assets/icons/pixelitos/128/io.github.ihhub.Fheroes2.png new file mode 100644 index 00000000..522f50aa Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/io.github.ihhub.Fheroes2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/io.github.ihhub.Fheroes2.png.import b/tools/configurator/assets/icons/pixelitos/128/io.github.ihhub.Fheroes2.png.import new file mode 100644 index 00000000..2222da05 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/io.github.ihhub.Fheroes2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4irfouvwgs7e" +path="res://.godot/imported/io.github.ihhub.Fheroes2.png-73d26a8b0572da1223b2628b6627e2b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/io.github.ihhub.Fheroes2.png" +dest_files=["res://.godot/imported/io.github.ihhub.Fheroes2.png-73d26a8b0572da1223b2628b6627e2b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/itch.png b/tools/configurator/assets/icons/pixelitos/128/itch.png new file mode 100644 index 00000000..799b341e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/itch.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/itch.png.import b/tools/configurator/assets/icons/pixelitos/128/itch.png.import new file mode 100644 index 00000000..2b2b69d5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/itch.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dve4w2h2e7i1s" +path="res://.godot/imported/itch.png-d8c3b6a19c559e91c8cad437c21d24bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/itch.png" +dest_files=["res://.godot/imported/itch.png-d8c3b6a19c559e91c8cad437c21d24bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/kde-frameworks.png b/tools/configurator/assets/icons/pixelitos/128/kde-frameworks.png new file mode 100644 index 00000000..c18cca1b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/kde-frameworks.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/kde-frameworks.png.import b/tools/configurator/assets/icons/pixelitos/128/kde-frameworks.png.import new file mode 100644 index 00000000..068b1ce3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/kde-frameworks.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3l7hnbu8hu2t" +path="res://.godot/imported/kde-frameworks.png-a6cc713daa6507538b2b637333c32fbb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/kde-frameworks.png" +dest_files=["res://.godot/imported/kde-frameworks.png-a6cc713daa6507538b2b637333c32fbb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/kdenlive.png b/tools/configurator/assets/icons/pixelitos/128/kdenlive.png new file mode 100644 index 00000000..4e124c17 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/kdenlive.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/kdenlive.png.import b/tools/configurator/assets/icons/pixelitos/128/kdenlive.png.import new file mode 100644 index 00000000..494c4ab6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/kdenlive.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnr2ga3qus2fn" +path="res://.godot/imported/kdenlive.png-55fe551b4b6a0dc4af0d9c71219de14b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/kdenlive.png" +dest_files=["res://.godot/imported/kdenlive.png-55fe551b4b6a0dc4af0d9c71219de14b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/kfontview.png b/tools/configurator/assets/icons/pixelitos/128/kfontview.png new file mode 100644 index 00000000..2a6a1b47 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/kfontview.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/kfontview.png.import b/tools/configurator/assets/icons/pixelitos/128/kfontview.png.import new file mode 100644 index 00000000..87095071 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/kfontview.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db12stqxl6c0h" +path="res://.godot/imported/kfontview.png-6e0e01a35e252bf54ffcf430607aea15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/kfontview.png" +dest_files=["res://.godot/imported/kfontview.png-6e0e01a35e252bf54ffcf430607aea15.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/klipper.png b/tools/configurator/assets/icons/pixelitos/128/klipper.png new file mode 100644 index 00000000..fe9e1264 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/klipper.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/klipper.png.import b/tools/configurator/assets/icons/pixelitos/128/klipper.png.import new file mode 100644 index 00000000..b36419e4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/klipper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djudttsw3yglx" +path="res://.godot/imported/klipper.png-ff984f348e21fdce7d148192522593a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/klipper.png" +dest_files=["res://.godot/imported/klipper.png-ff984f348e21fdce7d148192522593a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/kmenuedit.png b/tools/configurator/assets/icons/pixelitos/128/kmenuedit.png new file mode 100644 index 00000000..3f17e805 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/kmenuedit.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/kmenuedit.png.import b/tools/configurator/assets/icons/pixelitos/128/kmenuedit.png.import new file mode 100644 index 00000000..98bed29b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/kmenuedit.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chyirfvyme5hw" +path="res://.godot/imported/kmenuedit.png-05a5c7921571c220be644a35435d3c57.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/kmenuedit.png" +dest_files=["res://.godot/imported/kmenuedit.png-05a5c7921571c220be644a35435d3c57.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/knetattach.png b/tools/configurator/assets/icons/pixelitos/128/knetattach.png new file mode 100644 index 00000000..422e3534 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/knetattach.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/knetattach.png.import b/tools/configurator/assets/icons/pixelitos/128/knetattach.png.import new file mode 100644 index 00000000..d48d9543 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/knetattach.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coixl0irgu3wc" +path="res://.godot/imported/knetattach.png-ccbd76d448649c2674951243772b51f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/knetattach.png" +dest_files=["res://.godot/imported/knetattach.png-ccbd76d448649c2674951243772b51f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/kotatogram.png b/tools/configurator/assets/icons/pixelitos/128/kotatogram.png new file mode 100644 index 00000000..818ae2fe Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/kotatogram.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/kotatogram.png.import b/tools/configurator/assets/icons/pixelitos/128/kotatogram.png.import new file mode 100644 index 00000000..9783cc25 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/kotatogram.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjmrk4ibnc48j" +path="res://.godot/imported/kotatogram.png-8a06cbf3b42b668aedf8074c3bcb83e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/kotatogram.png" +dest_files=["res://.godot/imported/kotatogram.png-8a06cbf3b42b668aedf8074c3bcb83e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/krita.png b/tools/configurator/assets/icons/pixelitos/128/krita.png new file mode 100644 index 00000000..72575e93 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/krita.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/krita.png.import b/tools/configurator/assets/icons/pixelitos/128/krita.png.import new file mode 100644 index 00000000..d26f7258 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/krita.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7kpb7gew6un4" +path="res://.godot/imported/krita.png-ba122d125c080e62a63db5943b260008.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/krita.png" +dest_files=["res://.godot/imported/krita.png-ba122d125c080e62a63db5943b260008.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/kwalletmanager.png b/tools/configurator/assets/icons/pixelitos/128/kwalletmanager.png new file mode 100644 index 00000000..1d9c1876 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/kwalletmanager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/kwalletmanager.png.import b/tools/configurator/assets/icons/pixelitos/128/kwalletmanager.png.import new file mode 100644 index 00000000..d9c95911 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/kwalletmanager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0vfdulb6wppf" +path="res://.godot/imported/kwalletmanager.png-0c3c7decab3fcdc5db9aa2fcabfce341.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/kwalletmanager.png" +dest_files=["res://.godot/imported/kwalletmanager.png-0c3c7decab3fcdc5db9aa2fcabfce341.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/libre-office-draw.png b/tools/configurator/assets/icons/pixelitos/128/libre-office-draw.png new file mode 100644 index 00000000..61a38266 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/libre-office-draw.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/libre-office-draw.png.import b/tools/configurator/assets/icons/pixelitos/128/libre-office-draw.png.import new file mode 100644 index 00000000..fcdefd74 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/libre-office-draw.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5wg2ogac8jc4" +path="res://.godot/imported/libre-office-draw.png-279d9ea37b058290d3537eb601815464.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/libre-office-draw.png" +dest_files=["res://.godot/imported/libre-office-draw.png-279d9ea37b058290d3537eb601815464.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/libre-office-math.png b/tools/configurator/assets/icons/pixelitos/128/libre-office-math.png new file mode 100644 index 00000000..7cf137e3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/libre-office-math.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/libre-office-math.png.import b/tools/configurator/assets/icons/pixelitos/128/libre-office-math.png.import new file mode 100644 index 00000000..111699b1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/libre-office-math.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxuqcc43xcla4" +path="res://.godot/imported/libre-office-math.png-24f6cbdc97d0920fa9ca3b8ef4b6c77a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/libre-office-math.png" +dest_files=["res://.godot/imported/libre-office-math.png-24f6cbdc97d0920fa9ca3b8ef4b6c77a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/libreoffice-base.png b/tools/configurator/assets/icons/pixelitos/128/libreoffice-base.png new file mode 100644 index 00000000..274c9fcb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/libreoffice-base.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/libreoffice-base.png.import b/tools/configurator/assets/icons/pixelitos/128/libreoffice-base.png.import new file mode 100644 index 00000000..a0c90c5e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/libreoffice-base.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kt5siqx0seks" +path="res://.godot/imported/libreoffice-base.png-43dacc3ae5983b26fd7157b5eca9e1f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/libreoffice-base.png" +dest_files=["res://.godot/imported/libreoffice-base.png-43dacc3ae5983b26fd7157b5eca9e1f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/libreoffice-calc.png b/tools/configurator/assets/icons/pixelitos/128/libreoffice-calc.png new file mode 100644 index 00000000..a21272c6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/libreoffice-calc.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/libreoffice-calc.png.import b/tools/configurator/assets/icons/pixelitos/128/libreoffice-calc.png.import new file mode 100644 index 00000000..635519db --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/libreoffice-calc.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4ltlpmbfjfr2" +path="res://.godot/imported/libreoffice-calc.png-d4422e13c44b9769a1fda9d7c5885757.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/libreoffice-calc.png" +dest_files=["res://.godot/imported/libreoffice-calc.png-d4422e13c44b9769a1fda9d7c5885757.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/libreoffice-impress.png b/tools/configurator/assets/icons/pixelitos/128/libreoffice-impress.png new file mode 100644 index 00000000..216da4ef Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/libreoffice-impress.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/libreoffice-impress.png.import b/tools/configurator/assets/icons/pixelitos/128/libreoffice-impress.png.import new file mode 100644 index 00000000..805f64dc --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/libreoffice-impress.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b01e7gjm7pyue" +path="res://.godot/imported/libreoffice-impress.png-c2633c092866b14efeeffe900189399c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/libreoffice-impress.png" +dest_files=["res://.godot/imported/libreoffice-impress.png-c2633c092866b14efeeffe900189399c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/libreoffice-startcenter.png b/tools/configurator/assets/icons/pixelitos/128/libreoffice-startcenter.png new file mode 100644 index 00000000..7a0619fd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/libreoffice-startcenter.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/libreoffice-startcenter.png.import b/tools/configurator/assets/icons/pixelitos/128/libreoffice-startcenter.png.import new file mode 100644 index 00000000..85dfee87 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/libreoffice-startcenter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk3pjbeuj3y7q" +path="res://.godot/imported/libreoffice-startcenter.png-3672582facd47a62720bd472fdac0536.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/libreoffice-startcenter.png" +dest_files=["res://.godot/imported/libreoffice-startcenter.png-3672582facd47a62720bd472fdac0536.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/libreoffice-writer.png b/tools/configurator/assets/icons/pixelitos/128/libreoffice-writer.png new file mode 100644 index 00000000..dd923d93 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/libreoffice-writer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/libreoffice-writer.png.import b/tools/configurator/assets/icons/pixelitos/128/libreoffice-writer.png.import new file mode 100644 index 00000000..99063ded --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/libreoffice-writer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bujdqloru5l72" +path="res://.godot/imported/libreoffice-writer.png-0e0c81b66522bab31313f4aab4ae768b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/libreoffice-writer.png" +dest_files=["res://.godot/imported/libreoffice-writer.png-0e0c81b66522bab31313f4aab4ae768b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/libreoffice.png b/tools/configurator/assets/icons/pixelitos/128/libreoffice.png new file mode 100644 index 00000000..7a0619fd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/libreoffice.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/libreoffice.png.import b/tools/configurator/assets/icons/pixelitos/128/libreoffice.png.import new file mode 100644 index 00000000..e7eb12f4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/libreoffice.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2cus8rk6o8b5" +path="res://.godot/imported/libreoffice.png-4bd197a749f2c151d7ff48f78ea3b16b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/libreoffice.png" +dest_files=["res://.godot/imported/libreoffice.png-4bd197a749f2c151d7ff48f78ea3b16b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/lightdm-gtk-greeter-settings.png b/tools/configurator/assets/icons/pixelitos/128/lightdm-gtk-greeter-settings.png new file mode 100644 index 00000000..0f9aa4ec Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/lightdm-gtk-greeter-settings.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/lightdm-gtk-greeter-settings.png.import b/tools/configurator/assets/icons/pixelitos/128/lightdm-gtk-greeter-settings.png.import new file mode 100644 index 00000000..0a38e143 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/lightdm-gtk-greeter-settings.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6840m3rkuco5" +path="res://.godot/imported/lightdm-gtk-greeter-settings.png-9c2f554d3f4c86e339eea26212894dfe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/lightdm-gtk-greeter-settings.png" +dest_files=["res://.godot/imported/lightdm-gtk-greeter-settings.png-9c2f554d3f4c86e339eea26212894dfe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/lime3ds.png b/tools/configurator/assets/icons/pixelitos/128/lime3ds.png new file mode 100644 index 00000000..c0363111 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/lime3ds.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/lime3ds.png.import b/tools/configurator/assets/icons/pixelitos/128/lime3ds.png.import new file mode 100644 index 00000000..3f1489d4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/lime3ds.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjxqyxpxb8h8q" +path="res://.godot/imported/lime3ds.png-46636e55aca4b1efb87cc2bb6ef805bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/lime3ds.png" +dest_files=["res://.godot/imported/lime3ds.png-46636e55aca4b1efb87cc2bb6ef805bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/linapple.png b/tools/configurator/assets/icons/pixelitos/128/linapple.png new file mode 100644 index 00000000..5a46707c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/linapple.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/linapple.png.import b/tools/configurator/assets/icons/pixelitos/128/linapple.png.import new file mode 100644 index 00000000..a32f4e02 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/linapple.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0fk238ijmb48" +path="res://.godot/imported/linapple.png-93e92afb3ced76e70286d13b44d87055.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/linapple.png" +dest_files=["res://.godot/imported/linapple.png-93e92afb3ced76e70286d13b44d87055.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/links-48x48.xpm.png b/tools/configurator/assets/icons/pixelitos/128/links-48x48.xpm.png new file mode 100644 index 00000000..422e3534 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/links-48x48.xpm.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/links-48x48.xpm.png.import b/tools/configurator/assets/icons/pixelitos/128/links-48x48.xpm.png.import new file mode 100644 index 00000000..abb5a7f5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/links-48x48.xpm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0ap8a6e4dyj1" +path="res://.godot/imported/links-48x48.xpm.png-09fd77ce9f76e8ea123f6f1206783cfd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/links-48x48.xpm.png" +dest_files=["res://.godot/imported/links-48x48.xpm.png-09fd77ce9f76e8ea123f6f1206783cfd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/lmms.png b/tools/configurator/assets/icons/pixelitos/128/lmms.png new file mode 100644 index 00000000..8867019b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/lmms.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/lmms.png.import b/tools/configurator/assets/icons/pixelitos/128/lmms.png.import new file mode 100644 index 00000000..77769023 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/lmms.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dekkouqnudw7a" +path="res://.godot/imported/lmms.png-1b1312eebb57e06d93053d7575796fa4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/lmms.png" +dest_files=["res://.godot/imported/lmms.png-1b1312eebb57e06d93053d7575796fa4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/lutris.png b/tools/configurator/assets/icons/pixelitos/128/lutris.png new file mode 100644 index 00000000..e3622e03 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/lutris.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/lutris.png.import b/tools/configurator/assets/icons/pixelitos/128/lutris.png.import new file mode 100644 index 00000000..df8ebafc --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/lutris.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db34eachxp8jn" +path="res://.godot/imported/lutris.png-cdc6da4c3c18dacef1af861367c61f77.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/lutris.png" +dest_files=["res://.godot/imported/lutris.png-cdc6da4c3c18dacef1af861367c61f77.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/map-globe.png b/tools/configurator/assets/icons/pixelitos/128/map-globe.png new file mode 100644 index 00000000..422e3534 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/map-globe.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/map-globe.png.import b/tools/configurator/assets/icons/pixelitos/128/map-globe.png.import new file mode 100644 index 00000000..585ac387 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/map-globe.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nscotydmur5w" +path="res://.godot/imported/map-globe.png-0707c405ea187bd54f45874d456a960a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/map-globe.png" +dest_files=["res://.godot/imported/map-globe.png-0707c405ea187bd54f45874d456a960a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/mate-desktop.png b/tools/configurator/assets/icons/pixelitos/128/mate-desktop.png new file mode 100644 index 00000000..15fc3c56 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/mate-desktop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/mate-desktop.png.import b/tools/configurator/assets/icons/pixelitos/128/mate-desktop.png.import new file mode 100644 index 00000000..df14344f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/mate-desktop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dksjxqhntrvrh" +path="res://.godot/imported/mate-desktop.png-52e37f96c89315d5199c7f53da992357.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/mate-desktop.png" +dest_files=["res://.godot/imported/mate-desktop.png-52e37f96c89315d5199c7f53da992357.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/mate-disk-usage-analyzer.png b/tools/configurator/assets/icons/pixelitos/128/mate-disk-usage-analyzer.png new file mode 100644 index 00000000..a5b9f063 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/mate-disk-usage-analyzer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/mate-disk-usage-analyzer.png.import b/tools/configurator/assets/icons/pixelitos/128/mate-disk-usage-analyzer.png.import new file mode 100644 index 00000000..a636f013 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/mate-disk-usage-analyzer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c72lyhi3fiwyb" +path="res://.godot/imported/mate-disk-usage-analyzer.png-35b6b3757119ebefa2105ab46f394213.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/mate-disk-usage-analyzer.png" +dest_files=["res://.godot/imported/mate-disk-usage-analyzer.png-35b6b3757119ebefa2105ab46f394213.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/mate-notification-properties.png b/tools/configurator/assets/icons/pixelitos/128/mate-notification-properties.png new file mode 100644 index 00000000..513e9cf1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/mate-notification-properties.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/mate-notification-properties.png.import b/tools/configurator/assets/icons/pixelitos/128/mate-notification-properties.png.import new file mode 100644 index 00000000..8704ab64 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/mate-notification-properties.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://32j6vf5l7nk" +path="res://.godot/imported/mate-notification-properties.png-366c15e76d8b892a05c9f9b867a37550.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/mate-notification-properties.png" +dest_files=["res://.godot/imported/mate-notification-properties.png-366c15e76d8b892a05c9f9b867a37550.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/mate-panel.png b/tools/configurator/assets/icons/pixelitos/128/mate-panel.png new file mode 100644 index 00000000..95bda2ef Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/mate-panel.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/mate-panel.png.import b/tools/configurator/assets/icons/pixelitos/128/mate-panel.png.import new file mode 100644 index 00000000..1676be65 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/mate-panel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddi1xgyx0nctf" +path="res://.godot/imported/mate-panel.png-5adb07e7fbe5c371330b3199fc7f5702.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/mate-panel.png" +dest_files=["res://.godot/imported/mate-panel.png-5adb07e7fbe5c371330b3199fc7f5702.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/mate-session-properties.png b/tools/configurator/assets/icons/pixelitos/128/mate-session-properties.png new file mode 100644 index 00000000..1b5febd8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/mate-session-properties.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/mate-session-properties.png.import b/tools/configurator/assets/icons/pixelitos/128/mate-session-properties.png.import new file mode 100644 index 00000000..cfbcd21e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/mate-session-properties.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5vfp7wsudj1g" +path="res://.godot/imported/mate-session-properties.png-731730f0a57eb397cc360e7dce881ba0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/mate-session-properties.png" +dest_files=["res://.godot/imported/mate-session-properties.png-731730f0a57eb397cc360e7dce881ba0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/mate-system-log.png b/tools/configurator/assets/icons/pixelitos/128/mate-system-log.png new file mode 100644 index 00000000..cec5609c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/mate-system-log.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/mate-system-log.png.import b/tools/configurator/assets/icons/pixelitos/128/mate-system-log.png.import new file mode 100644 index 00000000..b4f97be9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/mate-system-log.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://33f5uahr5tqm" +path="res://.godot/imported/mate-system-log.png-fd41883b90fb64164607e302186006bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/mate-system-log.png" +dest_files=["res://.godot/imported/mate-system-log.png-fd41883b90fb64164607e302186006bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/menulibre.png b/tools/configurator/assets/icons/pixelitos/128/menulibre.png new file mode 100644 index 00000000..3f17e805 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/menulibre.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/menulibre.png.import b/tools/configurator/assets/icons/pixelitos/128/menulibre.png.import new file mode 100644 index 00000000..4222e041 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/menulibre.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blomp60uslt7q" +path="res://.godot/imported/menulibre.png-94e95d496c2fea66a6b56d188dc4157c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/menulibre.png" +dest_files=["res://.godot/imported/menulibre.png-94e95d496c2fea66a6b56d188dc4157c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/microsoft-edge.png b/tools/configurator/assets/icons/pixelitos/128/microsoft-edge.png new file mode 100644 index 00000000..f81e1ece Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/microsoft-edge.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/microsoft-edge.png.import b/tools/configurator/assets/icons/pixelitos/128/microsoft-edge.png.import new file mode 100644 index 00000000..c9709e74 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/microsoft-edge.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnm4gdgckpdn2" +path="res://.godot/imported/microsoft-edge.png-ceb69ccac4f3f1e3be761262c0cc34ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/microsoft-edge.png" +dest_files=["res://.godot/imported/microsoft-edge.png-ceb69ccac4f3f1e3be761262c0cc34ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/midori.png b/tools/configurator/assets/icons/pixelitos/128/midori.png new file mode 100644 index 00000000..e6976b83 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/midori.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/midori.png.import b/tools/configurator/assets/icons/pixelitos/128/midori.png.import new file mode 100644 index 00000000..c5d6ea81 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/midori.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h6cy68fsuoyw" +path="res://.godot/imported/midori.png-ddd5c9a5ead2133b80e74074374dff2b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/midori.png" +dest_files=["res://.godot/imported/midori.png-ddd5c9a5ead2133b80e74074374dff2b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/minecraft.png b/tools/configurator/assets/icons/pixelitos/128/minecraft.png new file mode 100644 index 00000000..9b30af42 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/minecraft.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/minecraft.png.import b/tools/configurator/assets/icons/pixelitos/128/minecraft.png.import new file mode 100644 index 00000000..1319600a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/minecraft.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuou4puikv8uy" +path="res://.godot/imported/minecraft.png-cc2de990b1bb32fe5125cc2e4ca7d336.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/minecraft.png" +dest_files=["res://.godot/imported/minecraft.png-cc2de990b1bb32fe5125cc2e4ca7d336.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/mpv.png b/tools/configurator/assets/icons/pixelitos/128/mpv.png new file mode 100644 index 00000000..9bb43599 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/mpv.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/mpv.png.import b/tools/configurator/assets/icons/pixelitos/128/mpv.png.import new file mode 100644 index 00000000..459cda33 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/mpv.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n4vlubo40ord" +path="res://.godot/imported/mpv.png-dfd27bd86f70a76518093adbfdb59b39.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/mpv.png" +dest_files=["res://.godot/imported/mpv.png-dfd27bd86f70a76518093adbfdb59b39.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/multimedia-volume-control.png b/tools/configurator/assets/icons/pixelitos/128/multimedia-volume-control.png new file mode 100644 index 00000000..2c765069 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/multimedia-volume-control.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/multimedia-volume-control.png.import b/tools/configurator/assets/icons/pixelitos/128/multimedia-volume-control.png.import new file mode 100644 index 00000000..9f6c9ce9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/multimedia-volume-control.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2q0ghgkrd3ly" +path="res://.godot/imported/multimedia-volume-control.png-8082dac5eb1c8671ffd28dbe6a3ff660.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/multimedia-volume-control.png" +dest_files=["res://.godot/imported/multimedia-volume-control.png-8082dac5eb1c8671ffd28dbe6a3ff660.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/nestopia.png b/tools/configurator/assets/icons/pixelitos/128/nestopia.png new file mode 100644 index 00000000..0499a7cf Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/nestopia.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/nestopia.png.import b/tools/configurator/assets/icons/pixelitos/128/nestopia.png.import new file mode 100644 index 00000000..94a30a0b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/nestopia.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de3s3tkxffqk0" +path="res://.godot/imported/nestopia.png-e3a5ed0832cb977733e851f186fe9167.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/nestopia.png" +dest_files=["res://.godot/imported/nestopia.png-e3a5ed0832cb977733e851f186fe9167.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/net.kuribo64.melonDS.png b/tools/configurator/assets/icons/pixelitos/128/net.kuribo64.melonDS.png new file mode 100644 index 00000000..e351ffb3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/net.kuribo64.melonDS.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/net.kuribo64.melonDS.png.import b/tools/configurator/assets/icons/pixelitos/128/net.kuribo64.melonDS.png.import new file mode 100644 index 00000000..4e855155 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/net.kuribo64.melonDS.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2furjlxwkxih" +path="res://.godot/imported/net.kuribo64.melonDS.png-1dfe19050b20e5ca2d51b9ddc306163c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/net.kuribo64.melonDS.png" +dest_files=["res://.godot/imported/net.kuribo64.melonDS.png-1dfe19050b20e5ca2d51b9ddc306163c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/net.openra.OpenRA.png b/tools/configurator/assets/icons/pixelitos/128/net.openra.OpenRA.png new file mode 100644 index 00000000..ea66c8e9 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/net.openra.OpenRA.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/net.openra.OpenRA.png.import b/tools/configurator/assets/icons/pixelitos/128/net.openra.OpenRA.png.import new file mode 100644 index 00000000..10af44a5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/net.openra.OpenRA.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdleyyhjntuwn" +path="res://.godot/imported/net.openra.OpenRA.png-25b00f90fb7439947fe3a0b31d24862f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/net.openra.OpenRA.png" +dest_files=["res://.godot/imported/net.openra.OpenRA.png-25b00f90fb7439947fe3a0b31d24862f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/net.pcsx2.PCSX2.png b/tools/configurator/assets/icons/pixelitos/128/net.pcsx2.PCSX2.png new file mode 100644 index 00000000..7df1c994 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/net.pcsx2.PCSX2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/net.pcsx2.PCSX2.png.import b/tools/configurator/assets/icons/pixelitos/128/net.pcsx2.PCSX2.png.import new file mode 100644 index 00000000..ffee5d8b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/net.pcsx2.PCSX2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fhxlwf7in0ke" +path="res://.godot/imported/net.pcsx2.PCSX2.png-ff783d804054a6212a0b9fe72f08847b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/net.pcsx2.PCSX2.png" +dest_files=["res://.godot/imported/net.pcsx2.PCSX2.png-ff783d804054a6212a0b9fe72f08847b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/net.retrodeck.retrodeck.png b/tools/configurator/assets/icons/pixelitos/128/net.retrodeck.retrodeck.png new file mode 100644 index 00000000..8ad3624d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/net.retrodeck.retrodeck.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/net.retrodeck.retrodeck.png.import b/tools/configurator/assets/icons/pixelitos/128/net.retrodeck.retrodeck.png.import new file mode 100644 index 00000000..d1204d8f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/net.retrodeck.retrodeck.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do6o02gxjxneh" +path="res://.godot/imported/net.retrodeck.retrodeck.png-727a9e5b0eb0c6a4dcba72a06ac92fb0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/net.retrodeck.retrodeck.png" +dest_files=["res://.godot/imported/net.retrodeck.retrodeck.png-727a9e5b0eb0c6a4dcba72a06ac92fb0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/net.rpcs3.RPCS3.png b/tools/configurator/assets/icons/pixelitos/128/net.rpcs3.RPCS3.png new file mode 100644 index 00000000..d7580360 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/net.rpcs3.RPCS3.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/net.rpcs3.RPCS3.png.import b/tools/configurator/assets/icons/pixelitos/128/net.rpcs3.RPCS3.png.import new file mode 100644 index 00000000..df51ebfe --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/net.rpcs3.RPCS3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6x4onimvsynx" +path="res://.godot/imported/net.rpcs3.RPCS3.png-ff2cd324d04bc951733243ffbbb64b31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/net.rpcs3.RPCS3.png" +dest_files=["res://.godot/imported/net.rpcs3.RPCS3.png-ff2cd324d04bc951733243ffbbb64b31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/net.veloren.airshipper.png b/tools/configurator/assets/icons/pixelitos/128/net.veloren.airshipper.png new file mode 100644 index 00000000..97537995 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/net.veloren.airshipper.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/net.veloren.airshipper.png.import b/tools/configurator/assets/icons/pixelitos/128/net.veloren.airshipper.png.import new file mode 100644 index 00000000..8b8caceb --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/net.veloren.airshipper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxyhqo3i1x2kk" +path="res://.godot/imported/net.veloren.airshipper.png-a817f84ccbdf3107d39dca070b2574ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/net.veloren.airshipper.png" +dest_files=["res://.godot/imported/net.veloren.airshipper.png-a817f84ccbdf3107d39dca070b2574ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/network-server.png b/tools/configurator/assets/icons/pixelitos/128/network-server.png new file mode 100644 index 00000000..27c2aa59 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/network-server.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/network-server.png.import b/tools/configurator/assets/icons/pixelitos/128/network-server.png.import new file mode 100644 index 00000000..2a68efd0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/network-server.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fg7cocbuy0y4" +path="res://.godot/imported/network-server.png-b9ed00c02c4f52dc5b2eb601b8c27d71.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/network-server.png" +dest_files=["res://.godot/imported/network-server.png-b9ed00c02c4f52dc5b2eb601b8c27d71.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/network-wired.png b/tools/configurator/assets/icons/pixelitos/128/network-wired.png new file mode 100644 index 00000000..cba47f64 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/network-wired.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/network-wired.png.import b/tools/configurator/assets/icons/pixelitos/128/network-wired.png.import new file mode 100644 index 00000000..b08a9b6f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/network-wired.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xxfv1s6sejis" +path="res://.godot/imported/network-wired.png-6a4383740d06343421cbcb8035d643e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/network-wired.png" +dest_files=["res://.godot/imported/network-wired.png-6a4383740d06343421cbcb8035d643e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/network-workgroup.png b/tools/configurator/assets/icons/pixelitos/128/network-workgroup.png new file mode 100644 index 00000000..cba47f64 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/network-workgroup.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/network-workgroup.png.import b/tools/configurator/assets/icons/pixelitos/128/network-workgroup.png.import new file mode 100644 index 00000000..924da1c2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/network-workgroup.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dakog32vmkkpo" +path="res://.godot/imported/network-workgroup.png-379aa65837308f2d8a908c8d7ac59dcd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/network-workgroup.png" +dest_files=["res://.godot/imported/network-workgroup.png-379aa65837308f2d8a908c8d7ac59dcd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/nl.hjdskes.gcolor3.png b/tools/configurator/assets/icons/pixelitos/128/nl.hjdskes.gcolor3.png new file mode 100644 index 00000000..866b8f68 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/nl.hjdskes.gcolor3.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/nl.hjdskes.gcolor3.png.import b/tools/configurator/assets/icons/pixelitos/128/nl.hjdskes.gcolor3.png.import new file mode 100644 index 00000000..32fed54e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/nl.hjdskes.gcolor3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b82bybn2j6iko" +path="res://.godot/imported/nl.hjdskes.gcolor3.png-741417c6445a241c6b0092614d9f6882.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/nl.hjdskes.gcolor3.png" +dest_files=["res://.godot/imported/nl.hjdskes.gcolor3.png-741417c6445a241c6b0092614d9f6882.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/nm-device-wireless.png b/tools/configurator/assets/icons/pixelitos/128/nm-device-wireless.png new file mode 100644 index 00000000..cba47f64 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/nm-device-wireless.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/nm-device-wireless.png.import b/tools/configurator/assets/icons/pixelitos/128/nm-device-wireless.png.import new file mode 100644 index 00000000..ded1cd7e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/nm-device-wireless.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dplw7vul7psit" +path="res://.godot/imported/nm-device-wireless.png-64b69da369c08720df2c9e4e358439f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/nm-device-wireless.png" +dest_files=["res://.godot/imported/nm-device-wireless.png-64b69da369c08720df2c9e4e358439f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/nnn.png b/tools/configurator/assets/icons/pixelitos/128/nnn.png new file mode 100644 index 00000000..e4ef6b6a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/nnn.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/nnn.png.import b/tools/configurator/assets/icons/pixelitos/128/nnn.png.import new file mode 100644 index 00000000..fda6405f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/nnn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1p06wxw7dcoc" +path="res://.godot/imported/nnn.png-4e59fc0cb045b3bea0fc204c443a064d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/nnn.png" +dest_files=["res://.godot/imported/nnn.png-4e59fc0cb045b3bea0fc204c443a064d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/notepadqq.png b/tools/configurator/assets/icons/pixelitos/128/notepadqq.png new file mode 100644 index 00000000..2edaad59 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/notepadqq.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/notepadqq.png.import b/tools/configurator/assets/icons/pixelitos/128/notepadqq.png.import new file mode 100644 index 00000000..c2ee0675 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/notepadqq.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://45cp6u1h6pp1" +path="res://.godot/imported/notepadqq.png-159488f44e18a23cfe715fd0d27a6ca8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/notepadqq.png" +dest_files=["res://.godot/imported/notepadqq.png-159488f44e18a23cfe715fd0d27a6ca8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/nvim.png b/tools/configurator/assets/icons/pixelitos/128/nvim.png new file mode 100644 index 00000000..3ebcc3f4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/nvim.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/nvim.png.import b/tools/configurator/assets/icons/pixelitos/128/nvim.png.import new file mode 100644 index 00000000..ed60e889 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/nvim.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxfvhjv3ullwf" +path="res://.godot/imported/nvim.png-4050035a9b898731c0c11ca1447cba62.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/nvim.png" +dest_files=["res://.godot/imported/nvim.png-4050035a9b898731c0c11ca1447cba62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/octopi.png b/tools/configurator/assets/icons/pixelitos/128/octopi.png new file mode 100644 index 00000000..746c1bb9 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/octopi.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/octopi.png.import b/tools/configurator/assets/icons/pixelitos/128/octopi.png.import new file mode 100644 index 00000000..ebb1c238 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/octopi.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq7gtasg2w7fl" +path="res://.godot/imported/octopi.png-b6b03168aa81ef864de6b55056a2fd79.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/octopi.png" +dest_files=["res://.godot/imported/octopi.png-b6b03168aa81ef864de6b55056a2fd79.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/okular.png b/tools/configurator/assets/icons/pixelitos/128/okular.png new file mode 100644 index 00000000..e2c377f6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/okular.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/okular.png.import b/tools/configurator/assets/icons/pixelitos/128/okular.png.import new file mode 100644 index 00000000..6e512d64 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/okular.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c26auf7og8mrw" +path="res://.godot/imported/okular.png-d36db85b08aca17029154b1fb1b41a26.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/okular.png" +dest_files=["res://.godot/imported/okular.png-d36db85b08aca17029154b1fb1b41a26.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/openarena-server.png b/tools/configurator/assets/icons/pixelitos/128/openarena-server.png new file mode 100644 index 00000000..ad207306 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/openarena-server.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/openarena-server.png.import b/tools/configurator/assets/icons/pixelitos/128/openarena-server.png.import new file mode 100644 index 00000000..f7301daf --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/openarena-server.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4t54ofjsqdtv" +path="res://.godot/imported/openarena-server.png-0402bb1d3e196cb03e61643cf5f14d32.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/openarena-server.png" +dest_files=["res://.godot/imported/openarena-server.png-0402bb1d3e196cb03e61643cf5f14d32.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/openarena.png b/tools/configurator/assets/icons/pixelitos/128/openarena.png new file mode 100644 index 00000000..a3522814 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/openarena.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/openarena.png.import b/tools/configurator/assets/icons/pixelitos/128/openarena.png.import new file mode 100644 index 00000000..8e0fa36c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/openarena.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuxdyj8q328io" +path="res://.godot/imported/openarena.png-9e4a3a5e213549474f6c2fa7d39a72ac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/openarena.png" +dest_files=["res://.godot/imported/openarena.png-9e4a3a5e213549474f6c2fa7d39a72ac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/openbor.png b/tools/configurator/assets/icons/pixelitos/128/openbor.png new file mode 100644 index 00000000..5e6d611c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/openbor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/openbor.png.import b/tools/configurator/assets/icons/pixelitos/128/openbor.png.import new file mode 100644 index 00000000..2ad4333f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/openbor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blxqnof2t8d5g" +path="res://.godot/imported/openbor.png-ef084f0587cb4ac91e4b8778bf123c08.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/openbor.png" +dest_files=["res://.godot/imported/openbor.png-ef084f0587cb4ac91e4b8778bf123c08.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/opera-beta.png b/tools/configurator/assets/icons/pixelitos/128/opera-beta.png new file mode 100644 index 00000000..5fa57fcc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/opera-beta.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/opera-beta.png.import b/tools/configurator/assets/icons/pixelitos/128/opera-beta.png.import new file mode 100644 index 00000000..61ab94b0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/opera-beta.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tymx2jn6y744" +path="res://.godot/imported/opera-beta.png-4f45482a975213eb6cc0b00fe04ae371.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/opera-beta.png" +dest_files=["res://.godot/imported/opera-beta.png-4f45482a975213eb6cc0b00fe04ae371.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/opera-developer.png b/tools/configurator/assets/icons/pixelitos/128/opera-developer.png new file mode 100644 index 00000000..b9cfcccc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/opera-developer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/opera-developer.png.import b/tools/configurator/assets/icons/pixelitos/128/opera-developer.png.import new file mode 100644 index 00000000..43b4e44d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/opera-developer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dan16b3fj5nm5" +path="res://.godot/imported/opera-developer.png-32ef970e79272bf93af4fafc12a617f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/opera-developer.png" +dest_files=["res://.godot/imported/opera-developer.png-32ef970e79272bf93af4fafc12a617f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/opera.png b/tools/configurator/assets/icons/pixelitos/128/opera.png new file mode 100644 index 00000000..e0275afb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/opera.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/opera.png.import b/tools/configurator/assets/icons/pixelitos/128/opera.png.import new file mode 100644 index 00000000..8da32c81 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/opera.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1mkbpx3r8hl2" +path="res://.godot/imported/opera.png-8084500df6748863d26eaefc7c345905.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/opera.png" +dest_files=["res://.godot/imported/opera.png-8084500df6748863d26eaefc7c345905.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.DolphinEmu.dolphin-emu.png b/tools/configurator/assets/icons/pixelitos/128/org.DolphinEmu.dolphin-emu.png new file mode 100644 index 00000000..510d0ef4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.DolphinEmu.dolphin-emu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.DolphinEmu.dolphin-emu.png.import b/tools/configurator/assets/icons/pixelitos/128/org.DolphinEmu.dolphin-emu.png.import new file mode 100644 index 00000000..868a784c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.DolphinEmu.dolphin-emu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbvjugxp84gsj" +path="res://.godot/imported/org.DolphinEmu.dolphin-emu.png-092be828a6da39c74eff4466ed58b605.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.DolphinEmu.dolphin-emu.png" +dest_files=["res://.godot/imported/org.DolphinEmu.dolphin-emu.png-092be828a6da39c74eff4466ed58b605.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.citra_emu.citra.png b/tools/configurator/assets/icons/pixelitos/128/org.citra_emu.citra.png new file mode 100644 index 00000000..2ab3004e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.citra_emu.citra.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.citra_emu.citra.png.import b/tools/configurator/assets/icons/pixelitos/128/org.citra_emu.citra.png.import new file mode 100644 index 00000000..ca1b3534 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.citra_emu.citra.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bevamv2c8knnn" +path="res://.godot/imported/org.citra_emu.citra.png-91f685385890396c6cec7cfe8c683feb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.citra_emu.citra.png" +dest_files=["res://.godot/imported/org.citra_emu.citra.png-91f685385890396c6cec7cfe8c683feb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.flameshot.Flameshot.png b/tools/configurator/assets/icons/pixelitos/128/org.flameshot.Flameshot.png new file mode 100644 index 00000000..23b8e8e5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.flameshot.Flameshot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.flameshot.Flameshot.png.import b/tools/configurator/assets/icons/pixelitos/128/org.flameshot.Flameshot.png.import new file mode 100644 index 00000000..081de9c1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.flameshot.Flameshot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbx8dakxdvmgy" +path="res://.godot/imported/org.flameshot.Flameshot.png-746a23841aa5220736e212d855d56fa3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.flameshot.Flameshot.png" +dest_files=["res://.godot/imported/org.flameshot.Flameshot.png-746a23841aa5220736e212d855d56fa3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.gnome.ArchiveManager.png b/tools/configurator/assets/icons/pixelitos/128/org.gnome.ArchiveManager.png new file mode 100644 index 00000000..3c7abcb6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.gnome.ArchiveManager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.gnome.ArchiveManager.png.import b/tools/configurator/assets/icons/pixelitos/128/org.gnome.ArchiveManager.png.import new file mode 100644 index 00000000..be9cf2e7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.gnome.ArchiveManager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5kabv7uetpco" +path="res://.godot/imported/org.gnome.ArchiveManager.png-5f0bb0a2424e76d141dce54dc5a70a5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.gnome.ArchiveManager.png" +dest_files=["res://.godot/imported/org.gnome.ArchiveManager.png-5f0bb0a2424e76d141dce54dc5a70a5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.gnome.Nautilus.png b/tools/configurator/assets/icons/pixelitos/128/org.gnome.Nautilus.png new file mode 100644 index 00000000..04548a3e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.gnome.Nautilus.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.gnome.Nautilus.png.import b/tools/configurator/assets/icons/pixelitos/128/org.gnome.Nautilus.png.import new file mode 100644 index 00000000..9885eb2b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.gnome.Nautilus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br8xu5lxvdphq" +path="res://.godot/imported/org.gnome.Nautilus.png-a2eff9cd03f7252f16d5381fd9e59c6a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.gnome.Nautilus.png" +dest_files=["res://.godot/imported/org.gnome.Nautilus.png-a2eff9cd03f7252f16d5381fd9e59c6a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.gnome.Screenshot.png b/tools/configurator/assets/icons/pixelitos/128/org.gnome.Screenshot.png new file mode 100644 index 00000000..23b8e8e5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.gnome.Screenshot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.gnome.Screenshot.png.import b/tools/configurator/assets/icons/pixelitos/128/org.gnome.Screenshot.png.import new file mode 100644 index 00000000..c20f7991 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.gnome.Screenshot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6btsfw4ohb6g" +path="res://.godot/imported/org.gnome.Screenshot.png-e30f0ff527c1b01e966c236bed568533.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.gnome.Screenshot.png" +dest_files=["res://.godot/imported/org.gnome.Screenshot.png-e30f0ff527c1b01e966c236bed568533.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.gnome.Yelp.png b/tools/configurator/assets/icons/pixelitos/128/org.gnome.Yelp.png new file mode 100644 index 00000000..d7ccea7d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.gnome.Yelp.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.gnome.Yelp.png.import b/tools/configurator/assets/icons/pixelitos/128/org.gnome.Yelp.png.import new file mode 100644 index 00000000..04fb1504 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.gnome.Yelp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pjp08x0a3bvp" +path="res://.godot/imported/org.gnome.Yelp.png-050600f15ab0409276cadc8a4010003e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.gnome.Yelp.png" +dest_files=["res://.godot/imported/org.gnome.Yelp.png-050600f15ab0409276cadc8a4010003e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.gnome.clocks.png b/tools/configurator/assets/icons/pixelitos/128/org.gnome.clocks.png new file mode 100644 index 00000000..51aecbb7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.gnome.clocks.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.gnome.clocks.png.import b/tools/configurator/assets/icons/pixelitos/128/org.gnome.clocks.png.import new file mode 100644 index 00000000..993a309f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.gnome.clocks.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw6s7t1w3y4tp" +path="res://.godot/imported/org.gnome.clocks.png-c12584ed392f608c5912ee3cdba7e1b4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.gnome.clocks.png" +dest_files=["res://.godot/imported/org.gnome.clocks.png-c12584ed392f608c5912ee3cdba7e1b4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.gtk.IconBrowser4.png b/tools/configurator/assets/icons/pixelitos/128/org.gtk.IconBrowser4.png new file mode 100644 index 00000000..c6727a37 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.gtk.IconBrowser4.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.gtk.IconBrowser4.png.import b/tools/configurator/assets/icons/pixelitos/128/org.gtk.IconBrowser4.png.import new file mode 100644 index 00000000..0126f04a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.gtk.IconBrowser4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c11vnrxplpsg7" +path="res://.godot/imported/org.gtk.IconBrowser4.png-5af7d384f87c9e59c360d01896f62de8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.gtk.IconBrowser4.png" +dest_files=["res://.godot/imported/org.gtk.IconBrowser4.png-5af7d384f87c9e59c360d01896f62de8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.inkscape.Inkscape.png b/tools/configurator/assets/icons/pixelitos/128/org.inkscape.Inkscape.png new file mode 100644 index 00000000..4173b2a4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.inkscape.Inkscape.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.inkscape.Inkscape.png.import b/tools/configurator/assets/icons/pixelitos/128/org.inkscape.Inkscape.png.import new file mode 100644 index 00000000..171a8a83 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.inkscape.Inkscape.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dp2ys4t2svqb2" +path="res://.godot/imported/org.inkscape.Inkscape.png-a83f373eb16275ee5f2496cad9691a65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.inkscape.Inkscape.png" +dest_files=["res://.godot/imported/org.inkscape.Inkscape.png-a83f373eb16275ee5f2496cad9691a65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.mamedev.MAME.png b/tools/configurator/assets/icons/pixelitos/128/org.mamedev.MAME.png new file mode 100644 index 00000000..b6c7d1f0 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.mamedev.MAME.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.mamedev.MAME.png.import b/tools/configurator/assets/icons/pixelitos/128/org.mamedev.MAME.png.import new file mode 100644 index 00000000..b4e0e143 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.mamedev.MAME.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chd6d8tx081hm" +path="res://.godot/imported/org.mamedev.MAME.png-f34dd0c0146803127a92291b3913652c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.mamedev.MAME.png" +dest_files=["res://.godot/imported/org.mamedev.MAME.png-f34dd0c0146803127a92291b3913652c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.midori_browser.Midori.png b/tools/configurator/assets/icons/pixelitos/128/org.midori_browser.Midori.png new file mode 100644 index 00000000..e6976b83 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.midori_browser.Midori.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.midori_browser.Midori.png.import b/tools/configurator/assets/icons/pixelitos/128/org.midori_browser.Midori.png.import new file mode 100644 index 00000000..cd681d08 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.midori_browser.Midori.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dswevgfdnv4te" +path="res://.godot/imported/org.midori_browser.Midori.png-ff86f7510ecf8d50f2a12a677d9313f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.midori_browser.Midori.png" +dest_files=["res://.godot/imported/org.midori_browser.Midori.png-ff86f7510ecf8d50f2a12a677d9313f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.openmw.OpenMW.png b/tools/configurator/assets/icons/pixelitos/128/org.openmw.OpenMW.png new file mode 100644 index 00000000..b7f78074 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.openmw.OpenMW.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.openmw.OpenMW.png.import b/tools/configurator/assets/icons/pixelitos/128/org.openmw.OpenMW.png.import new file mode 100644 index 00000000..9465d1d4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.openmw.OpenMW.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chaysd7aq35vw" +path="res://.godot/imported/org.openmw.OpenMW.png-b1b41dcca3912c4df9d6d3cf848df8d4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.openmw.OpenMW.png" +dest_files=["res://.godot/imported/org.openmw.OpenMW.png-b1b41dcca3912c4df9d6d3cf848df8d4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.openttd.OpenTTD.png b/tools/configurator/assets/icons/pixelitos/128/org.openttd.OpenTTD.png new file mode 100644 index 00000000..1497a9a7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.openttd.OpenTTD.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.openttd.OpenTTD.png.import b/tools/configurator/assets/icons/pixelitos/128/org.openttd.OpenTTD.png.import new file mode 100644 index 00000000..745ee752 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.openttd.OpenTTD.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1txv0x6sdsip" +path="res://.godot/imported/org.openttd.OpenTTD.png-96d71e8666342e841032ae66b41fc500.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.openttd.OpenTTD.png" +dest_files=["res://.godot/imported/org.openttd.OpenTTD.png-96d71e8666342e841032ae66b41fc500.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.ppsspp.PPSSPP.png b/tools/configurator/assets/icons/pixelitos/128/org.ppsspp.PPSSPP.png new file mode 100644 index 00000000..f2bc6cfd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.ppsspp.PPSSPP.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.ppsspp.PPSSPP.png.import b/tools/configurator/assets/icons/pixelitos/128/org.ppsspp.PPSSPP.png.import new file mode 100644 index 00000000..7fdeba1d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.ppsspp.PPSSPP.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7i7mr38qxa4f" +path="res://.godot/imported/org.ppsspp.PPSSPP.png-f1a9290bc77a6fe74f23f5bb92512485.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.ppsspp.PPSSPP.png" +dest_files=["res://.godot/imported/org.ppsspp.PPSSPP.png-f1a9290bc77a6fe74f23f5bb92512485.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.ppsspp.PPSSPP_.png b/tools/configurator/assets/icons/pixelitos/128/org.ppsspp.PPSSPP_.png new file mode 100644 index 00000000..b328ab3d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.ppsspp.PPSSPP_.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.ppsspp.PPSSPP_.png.import b/tools/configurator/assets/icons/pixelitos/128/org.ppsspp.PPSSPP_.png.import new file mode 100644 index 00000000..471fb495 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.ppsspp.PPSSPP_.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr6bt56ugwk6i" +path="res://.godot/imported/org.ppsspp.PPSSPP_.png-225a119369cf136a8060cd1aa3d322fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.ppsspp.PPSSPP_.png" +dest_files=["res://.godot/imported/org.ppsspp.PPSSPP_.png-225a119369cf136a8060cd1aa3d322fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.prismlauncher.PrismLauncher.png b/tools/configurator/assets/icons/pixelitos/128/org.prismlauncher.PrismLauncher.png new file mode 100644 index 00000000..a4592271 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.prismlauncher.PrismLauncher.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.prismlauncher.PrismLauncher.png.import b/tools/configurator/assets/icons/pixelitos/128/org.prismlauncher.PrismLauncher.png.import new file mode 100644 index 00000000..b4d9c3d9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.prismlauncher.PrismLauncher.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk6ecp2idgh5c" +path="res://.godot/imported/org.prismlauncher.PrismLauncher.png-7b06871b9024796ef85c154e0d4a8397.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.prismlauncher.PrismLauncher.png" +dest_files=["res://.godot/imported/org.prismlauncher.PrismLauncher.png-7b06871b9024796ef85c154e0d4a8397.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.rnd2.cpupower-gui.png b/tools/configurator/assets/icons/pixelitos/128/org.rnd2.cpupower-gui.png new file mode 100644 index 00000000..a07f6ab1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.rnd2.cpupower-gui.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.rnd2.cpupower-gui.png.import b/tools/configurator/assets/icons/pixelitos/128/org.rnd2.cpupower-gui.png.import new file mode 100644 index 00000000..6785dd55 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.rnd2.cpupower-gui.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clmsoks51adqb" +path="res://.godot/imported/org.rnd2.cpupower-gui.png-9750f3e1dafaa0bc86cb6934e3a98861.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.rnd2.cpupower-gui.png" +dest_files=["res://.godot/imported/org.rnd2.cpupower-gui.png-9750f3e1dafaa0bc86cb6934e3a98861.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.ryujinx.Ryujinx.png b/tools/configurator/assets/icons/pixelitos/128/org.ryujinx.Ryujinx.png new file mode 100644 index 00000000..1e3a15f6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.ryujinx.Ryujinx.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.ryujinx.Ryujinx.png.import b/tools/configurator/assets/icons/pixelitos/128/org.ryujinx.Ryujinx.png.import new file mode 100644 index 00000000..0c505d42 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.ryujinx.Ryujinx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4rxej78gwu6" +path="res://.godot/imported/org.ryujinx.Ryujinx.png-871f8aaaaf6ba7a66e744cafc42d5fd0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.ryujinx.Ryujinx.png" +dest_files=["res://.godot/imported/org.ryujinx.Ryujinx.png-871f8aaaaf6ba7a66e744cafc42d5fd0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.about.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.about.png new file mode 100644 index 00000000..98b156ec Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.about.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.about.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.about.png.import new file mode 100644 index 00000000..3cf9a600 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.about.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b82i5ui0bblg7" +path="res://.godot/imported/org.xfce.about.png-90531a0faff09afa7f0e465b647bb048.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.about.png" +dest_files=["res://.godot/imported/org.xfce.about.png-90531a0faff09afa7f0e465b647bb048.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.appfinder.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.appfinder.png new file mode 100644 index 00000000..e7c60acb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.appfinder.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.appfinder.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.appfinder.png.import new file mode 100644 index 00000000..262be02a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.appfinder.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csemlr5spum68" +path="res://.godot/imported/org.xfce.appfinder.png-24d4a7b912e1a4277c69ada4106cd8a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.appfinder.png" +dest_files=["res://.godot/imported/org.xfce.appfinder.png-24d4a7b912e1a4277c69ada4106cd8a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.filemanager.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.filemanager.png new file mode 100644 index 00000000..04548a3e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.filemanager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.filemanager.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.filemanager.png.import new file mode 100644 index 00000000..2ceb7359 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.filemanager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhb0w2kapkn4n" +path="res://.godot/imported/org.xfce.filemanager.png-21ee2198b3f6e18a4084cf5350a60b38.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.filemanager.png" +dest_files=["res://.godot/imported/org.xfce.filemanager.png-21ee2198b3f6e18a4084cf5350a60b38.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.garcon.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.garcon.png new file mode 100644 index 00000000..3f17e805 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.garcon.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.garcon.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.garcon.png.import new file mode 100644 index 00000000..b632c7ba --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.garcon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bu6bahk8xx2m0" +path="res://.godot/imported/org.xfce.garcon.png-63021670aeda654daf04f51fb2a1b4b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.garcon.png" +dest_files=["res://.godot/imported/org.xfce.garcon.png-63021670aeda654daf04f51fb2a1b4b9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.mailreader.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.mailreader.png new file mode 100644 index 00000000..a2205a63 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.mailreader.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.mailreader.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.mailreader.png.import new file mode 100644 index 00000000..e4d252ce --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.mailreader.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8qcbcm7lj6je" +path="res://.godot/imported/org.xfce.mailreader.png-9506fd84ee9b813a79097cc5420c0601.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.mailreader.png" +dest_files=["res://.godot/imported/org.xfce.mailreader.png-9506fd84ee9b813a79097cc5420c0601.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.notification.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.notification.png new file mode 100644 index 00000000..513e9cf1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.notification.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.notification.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.notification.png.import new file mode 100644 index 00000000..911051ca --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.notification.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlrqxhlpe4gao" +path="res://.godot/imported/org.xfce.notification.png-b18543c5608d7eb8d98cb774d51f6a2d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.notification.png" +dest_files=["res://.godot/imported/org.xfce.notification.png-b18543c5608d7eb8d98cb774d51f6a2d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.actions.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.actions.png new file mode 100644 index 00000000..94300165 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.actions.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.actions.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.actions.png.import new file mode 100644 index 00000000..2c30e0b3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.actions.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4p4b4danhgvn" +path="res://.godot/imported/org.xfce.panel.actions.png-43619270e13be5adeb63f65f14683067.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.panel.actions.png" +dest_files=["res://.godot/imported/org.xfce.panel.actions.png-43619270e13be5adeb63f65f14683067.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.applicationsmenu.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.applicationsmenu.png new file mode 100644 index 00000000..98b156ec Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.applicationsmenu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.applicationsmenu.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.applicationsmenu.png.import new file mode 100644 index 00000000..242bf455 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.applicationsmenu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h7eg5tc507x" +path="res://.godot/imported/org.xfce.panel.applicationsmenu.png-4061dacb8ca7b6df8ce46eb23acef035.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.panel.applicationsmenu.png" +dest_files=["res://.godot/imported/org.xfce.panel.applicationsmenu.png-4061dacb8ca7b6df8ce46eb23acef035.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.png new file mode 100644 index 00000000..95bda2ef Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.png.import new file mode 100644 index 00000000..97cd9a86 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0t8ro7bd5mvu" +path="res://.godot/imported/org.xfce.panel.png-ffc9ef0ba93b9374eadee219bbddf57e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.panel.png" +dest_files=["res://.godot/imported/org.xfce.panel.png-ffc9ef0ba93b9374eadee219bbddf57e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.tasklist.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.tasklist.png new file mode 100644 index 00000000..95bda2ef Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.tasklist.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.tasklist.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.tasklist.png.import new file mode 100644 index 00000000..e5c7be37 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.tasklist.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dokcpvp4n6ylo" +path="res://.godot/imported/org.xfce.panel.tasklist.png-87c44272fdc4cbe3c29241fbaff8e710.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.panel.tasklist.png" +dest_files=["res://.godot/imported/org.xfce.panel.tasklist.png-87c44272fdc4cbe3c29241fbaff8e710.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.whiskermenu.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.whiskermenu.png new file mode 100644 index 00000000..98b156ec Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.whiskermenu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.whiskermenu.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.whiskermenu.png.import new file mode 100644 index 00000000..19653fa3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.whiskermenu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br7dhthb81mw8" +path="res://.godot/imported/org.xfce.panel.whiskermenu.png-e18e2b78182b8376e82b528a9945bfb5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.panel.whiskermenu.png" +dest_files=["res://.godot/imported/org.xfce.panel.whiskermenu.png-e18e2b78182b8376e82b528a9945bfb5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.windowmenu.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.windowmenu.png new file mode 100644 index 00000000..3f17e805 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.windowmenu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.windowmenu.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.windowmenu.png.import new file mode 100644 index 00000000..d4c207a3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.panel.windowmenu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cptatnriqs1ik" +path="res://.godot/imported/org.xfce.panel.windowmenu.png-2c42733870e5ad2240022d61d6961c7a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.panel.windowmenu.png" +dest_files=["res://.godot/imported/org.xfce.panel.windowmenu.png-2c42733870e5ad2240022d61d6961c7a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.powermanager.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.powermanager.png new file mode 100644 index 00000000..cbfff2cf Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.powermanager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.powermanager.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.powermanager.png.import new file mode 100644 index 00000000..37169e6c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.powermanager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d37t1xpnbc5wu" +path="res://.godot/imported/org.xfce.powermanager.png-6872de45f11986c2fe0beb7d1b1740ef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.powermanager.png" +dest_files=["res://.godot/imported/org.xfce.powermanager.png-6872de45f11986c2fe0beb7d1b1740ef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.session.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.session.png new file mode 100644 index 00000000..1b5febd8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.session.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.session.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.session.png.import new file mode 100644 index 00000000..f7ab72ec --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.session.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baghbnb372dq2" +path="res://.godot/imported/org.xfce.session.png-87fc71f6b9689bcf8bbc9fbd1e80c39c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.session.png" +dest_files=["res://.godot/imported/org.xfce.session.png-87fc71f6b9689bcf8bbc9fbd1e80c39c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.accessibility.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.accessibility.png new file mode 100644 index 00000000..577cd803 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.accessibility.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.accessibility.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.accessibility.png.import new file mode 100644 index 00000000..d0d40515 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.accessibility.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s13i2jyrl8pa" +path="res://.godot/imported/org.xfce.settings.accessibility.png-0eba1db8fe428c10786d62c7be2030a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.settings.accessibility.png" +dest_files=["res://.godot/imported/org.xfce.settings.accessibility.png-0eba1db8fe428c10786d62c7be2030a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.appearance.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.appearance.png new file mode 100644 index 00000000..603016bb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.appearance.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.appearance.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.appearance.png.import new file mode 100644 index 00000000..999cad37 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.appearance.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bextme6eghsu0" +path="res://.godot/imported/org.xfce.settings.appearance.png-dde788aee68cfd43c15fb3e99029ca9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.settings.appearance.png" +dest_files=["res://.godot/imported/org.xfce.settings.appearance.png-dde788aee68cfd43c15fb3e99029ca9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.color.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.color.png new file mode 100644 index 00000000..4a8df7a5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.color.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.color.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.color.png.import new file mode 100644 index 00000000..ff2691c4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.color.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://di77niow8qova" +path="res://.godot/imported/org.xfce.settings.color.png-d87f136a18c321c75deeb2c25318d3b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.settings.color.png" +dest_files=["res://.godot/imported/org.xfce.settings.color.png-d87f136a18c321c75deeb2c25318d3b2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.default-applications.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.default-applications.png new file mode 100644 index 00000000..2fe13b29 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.default-applications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.default-applications.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.default-applications.png.import new file mode 100644 index 00000000..ca39b6c9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.default-applications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmni2kcwm7a6t" +path="res://.godot/imported/org.xfce.settings.default-applications.png-7d167c6249a1ede743d627224ce7b59a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.settings.default-applications.png" +dest_files=["res://.godot/imported/org.xfce.settings.default-applications.png-7d167c6249a1ede743d627224ce7b59a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.display.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.display.png new file mode 100644 index 00000000..218908f2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.display.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.display.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.display.png.import new file mode 100644 index 00000000..6c37f945 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.display.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rtsr13uvnogr" +path="res://.godot/imported/org.xfce.settings.display.png-0cf8e32a35d7a847cee3d015592c05af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.settings.display.png" +dest_files=["res://.godot/imported/org.xfce.settings.display.png-0cf8e32a35d7a847cee3d015592c05af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.editor.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.editor.png new file mode 100644 index 00000000..ebaa4cac Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.editor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.editor.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.editor.png.import new file mode 100644 index 00000000..42d4d7a9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.editor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgkih3nyjog3g" +path="res://.godot/imported/org.xfce.settings.editor.png-750af87db1141f41d4084e45eb6d455d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.settings.editor.png" +dest_files=["res://.godot/imported/org.xfce.settings.editor.png-750af87db1141f41d4084e45eb6d455d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.keyboard.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.keyboard.png new file mode 100644 index 00000000..2403518f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.keyboard.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.keyboard.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.keyboard.png.import new file mode 100644 index 00000000..d9b74a23 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.keyboard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://en047gj7bkjt" +path="res://.godot/imported/org.xfce.settings.keyboard.png-bd781ccb1b438ef1e74d5c1a260a9d48.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.settings.keyboard.png" +dest_files=["res://.godot/imported/org.xfce.settings.keyboard.png-bd781ccb1b438ef1e74d5c1a260a9d48.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.manager.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.manager.png new file mode 100644 index 00000000..ebaa4cac Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.manager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.manager.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.manager.png.import new file mode 100644 index 00000000..a4897bd5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.manager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgbq8eflsctp2" +path="res://.godot/imported/org.xfce.settings.manager.png-0dbe0c875f970f33032bb8ea7348237a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.settings.manager.png" +dest_files=["res://.godot/imported/org.xfce.settings.manager.png-0dbe0c875f970f33032bb8ea7348237a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.mouse.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.mouse.png new file mode 100644 index 00000000..a38709d8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.mouse.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.mouse.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.mouse.png.import new file mode 100644 index 00000000..1c827325 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.settings.mouse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u6tamygvq2rm" +path="res://.godot/imported/org.xfce.settings.mouse.png-8d714d79611a370e44d1a3adc0898b4c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.settings.mouse.png" +dest_files=["res://.godot/imported/org.xfce.settings.mouse.png-8d714d79611a370e44d1a3adc0898b4c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminal-settings.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminal-settings.png new file mode 100644 index 00000000..c19c8d16 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminal-settings.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminal-settings.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminal-settings.png.import new file mode 100644 index 00000000..c59232db --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminal-settings.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5e61evwj5kf8" +path="res://.godot/imported/org.xfce.terminal-settings.png-d3bf1b42d5baeadf3e4d1112476e3690.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.terminal-settings.png" +dest_files=["res://.godot/imported/org.xfce.terminal-settings.png-d3bf1b42d5baeadf3e4d1112476e3690.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminal.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminal.png new file mode 100644 index 00000000..c19c8d16 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminal.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminal.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminal.png.import new file mode 100644 index 00000000..a0050a46 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcdyrrao640o5" +path="res://.godot/imported/org.xfce.terminal.png-69191a192d249f03f9105e1827910ef3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.terminal.png" +dest_files=["res://.godot/imported/org.xfce.terminal.png-69191a192d249f03f9105e1827910ef3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminalemulator.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminalemulator.png new file mode 100644 index 00000000..c19c8d16 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminalemulator.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminalemulator.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminalemulator.png.import new file mode 100644 index 00000000..1ffe4b97 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.terminalemulator.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnm6wpepm0hgk" +path="res://.godot/imported/org.xfce.terminalemulator.png-f465a54499cffc8d10f11e3bae6e06b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.terminalemulator.png" +dest_files=["res://.godot/imported/org.xfce.terminalemulator.png-f465a54499cffc8d10f11e3bae6e06b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.thunar.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.thunar.png new file mode 100644 index 00000000..04548a3e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.thunar.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.thunar.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.thunar.png.import new file mode 100644 index 00000000..e902af90 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.thunar.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvosi3xmkax5l" +path="res://.godot/imported/org.xfce.thunar.png-4f7e5a37c26deb1d22edf44470b5b5ee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.thunar.png" +dest_files=["res://.godot/imported/org.xfce.thunar.png-4f7e5a37c26deb1d22edf44470b5b5ee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.tumbler.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.tumbler.png new file mode 100644 index 00000000..a5512228 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.tumbler.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.tumbler.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.tumbler.png.import new file mode 100644 index 00000000..475ec7bd --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.tumbler.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkkhqvrwrk5pq" +path="res://.godot/imported/org.xfce.tumbler.png-25045e11f31c998b40755c705fec5a7e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.tumbler.png" +dest_files=["res://.godot/imported/org.xfce.tumbler.png-25045e11f31c998b40755c705fec5a7e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.volman.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.volman.png new file mode 100644 index 00000000..2d2687cb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.volman.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.volman.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.volman.png.import new file mode 100644 index 00000000..a6555186 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.volman.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ciqpgoirkk6yg" +path="res://.godot/imported/org.xfce.volman.png-bdf27009994e3b19d8786a190db1bf3b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.volman.png" +dest_files=["res://.godot/imported/org.xfce.volman.png-bdf27009994e3b19d8786a190db1bf3b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.webbrowser.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.webbrowser.png new file mode 100644 index 00000000..422e3534 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.webbrowser.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.webbrowser.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.webbrowser.png.import new file mode 100644 index 00000000..939a9d9f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.webbrowser.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5sqng0wijalx" +path="res://.godot/imported/org.xfce.webbrowser.png-bf0212b66e2e33445271ef5924635566.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.webbrowser.png" +dest_files=["res://.godot/imported/org.xfce.webbrowser.png-bf0212b66e2e33445271ef5924635566.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.workspaces.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.workspaces.png new file mode 100644 index 00000000..1b6c0a43 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.workspaces.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.workspaces.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.workspaces.png.import new file mode 100644 index 00000000..140125a5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.workspaces.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cy3xa5pkayi8b" +path="res://.godot/imported/org.xfce.workspaces.png-39c0a1796740ce3a762b8b419fa7b1b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.workspaces.png" +dest_files=["res://.godot/imported/org.xfce.workspaces.png-39c0a1796740ce3a762b8b419fa7b1b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfdesktop.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfdesktop.png new file mode 100644 index 00000000..6d027caa Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfdesktop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfdesktop.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfdesktop.png.import new file mode 100644 index 00000000..df2d07a8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfdesktop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://die5l00xk7srp" +path="res://.godot/imported/org.xfce.xfdesktop.png-6bcbe181c15c8aad04ab52004255eec6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.xfdesktop.png" +dest_files=["res://.godot/imported/org.xfce.xfdesktop.png-6bcbe181c15c8aad04ab52004255eec6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfwm4-tweaks.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfwm4-tweaks.png new file mode 100644 index 00000000..ebaa4cac Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfwm4-tweaks.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfwm4-tweaks.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfwm4-tweaks.png.import new file mode 100644 index 00000000..82b1428f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfwm4-tweaks.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbgjy0kuhotck" +path="res://.godot/imported/org.xfce.xfwm4-tweaks.png-368800aa47c172cbd632e15799adb344.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.xfwm4-tweaks.png" +dest_files=["res://.godot/imported/org.xfce.xfwm4-tweaks.png-368800aa47c172cbd632e15799adb344.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfwm4.png b/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfwm4.png new file mode 100644 index 00000000..ced711c7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfwm4.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfwm4.png.import b/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfwm4.png.import new file mode 100644 index 00000000..ad6fadb1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.xfce.xfwm4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfwkrkaeges0p" +path="res://.godot/imported/org.xfce.xfwm4.png-d573899afe153e63c7d6e23456f67c18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.xfce.xfwm4.png" +dest_files=["res://.godot/imported/org.xfce.xfwm4.png-d573899afe153e63c7d6e23456f67c18.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.yuzu_emu.yuzu.png b/tools/configurator/assets/icons/pixelitos/128/org.yuzu_emu.yuzu.png new file mode 100644 index 00000000..2d5e71b1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.yuzu_emu.yuzu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.yuzu_emu.yuzu.png.import b/tools/configurator/assets/icons/pixelitos/128/org.yuzu_emu.yuzu.png.import new file mode 100644 index 00000000..1bd175f8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.yuzu_emu.yuzu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca6cwqb6eu48c" +path="res://.godot/imported/org.yuzu_emu.yuzu.png-52f615da58fd0cbdd91148e8157be5d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.yuzu_emu.yuzu.png" +dest_files=["res://.godot/imported/org.yuzu_emu.yuzu.png-52f615da58fd0cbdd91148e8157be5d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.zdoom.GZDoom.png b/tools/configurator/assets/icons/pixelitos/128/org.zdoom.GZDoom.png new file mode 100644 index 00000000..51fdb052 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.zdoom.GZDoom.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.zdoom.GZDoom.png.import b/tools/configurator/assets/icons/pixelitos/128/org.zdoom.GZDoom.png.import new file mode 100644 index 00000000..48dbff24 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.zdoom.GZDoom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djpgrd6fs7u2w" +path="res://.godot/imported/org.zdoom.GZDoom.png-a1eb01025576eb6cd0d9e18ec4bb72d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.zdoom.GZDoom.png" +dest_files=["res://.godot/imported/org.zdoom.GZDoom.png-a1eb01025576eb6cd0d9e18ec4bb72d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/org.zdoom.LZDoom.png b/tools/configurator/assets/icons/pixelitos/128/org.zdoom.LZDoom.png new file mode 100644 index 00000000..23f110fe Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/org.zdoom.LZDoom.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/org.zdoom.LZDoom.png.import b/tools/configurator/assets/icons/pixelitos/128/org.zdoom.LZDoom.png.import new file mode 100644 index 00000000..d64de799 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/org.zdoom.LZDoom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csldbtsqds4ji" +path="res://.godot/imported/org.zdoom.LZDoom.png-8a099f8485980b40e5e82bdf1a5df834.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/org.zdoom.LZDoom.png" +dest_files=["res://.godot/imported/org.zdoom.LZDoom.png-8a099f8485980b40e5e82bdf1a5df834.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/oricutron.png b/tools/configurator/assets/icons/pixelitos/128/oricutron.png new file mode 100644 index 00000000..6aae70e8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/oricutron.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/oricutron.png.import b/tools/configurator/assets/icons/pixelitos/128/oricutron.png.import new file mode 100644 index 00000000..2e76395f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/oricutron.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cco48hw426p36" +path="res://.godot/imported/oricutron.png-8c627d585c7f14c1590f3c71c78f910f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/oricutron.png" +dest_files=["res://.godot/imported/oricutron.png-8c627d585c7f14c1590f3c71c78f910f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/pcsxr-icon.png b/tools/configurator/assets/icons/pixelitos/128/pcsxr-icon.png new file mode 100644 index 00000000..118e83b4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/pcsxr-icon.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/pcsxr-icon.png.import b/tools/configurator/assets/icons/pixelitos/128/pcsxr-icon.png.import new file mode 100644 index 00000000..86ee1fb6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/pcsxr-icon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnhocekre4n71" +path="res://.godot/imported/pcsxr-icon.png-425c530fccaaba1c96a4d92c424d0ed4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/pcsxr-icon.png" +dest_files=["res://.godot/imported/pcsxr-icon.png-425c530fccaaba1c96a4d92c424d0ed4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/picom.png b/tools/configurator/assets/icons/pixelitos/128/picom.png new file mode 100644 index 00000000..70320ab7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/picom.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/picom.png.import b/tools/configurator/assets/icons/pixelitos/128/picom.png.import new file mode 100644 index 00000000..823c9aaa --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/picom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c15rm78maih12" +path="res://.godot/imported/picom.png-ff260d89b223ec9c6439e82b83dee126.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/picom.png" +dest_files=["res://.godot/imported/picom.png-ff260d89b223ec9c6439e82b83dee126.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/plasma-search.png b/tools/configurator/assets/icons/pixelitos/128/plasma-search.png new file mode 100644 index 00000000..e7c60acb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/plasma-search.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/plasma-search.png.import b/tools/configurator/assets/icons/pixelitos/128/plasma-search.png.import new file mode 100644 index 00000000..995bd098 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/plasma-search.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq5oante1xm8p" +path="res://.godot/imported/plasma-search.png-9f84fb9293a91b0668997a00339b5d86.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/plasma-search.png" +dest_files=["res://.godot/imported/plasma-search.png-9f84fb9293a91b0668997a00339b5d86.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/plasma.png b/tools/configurator/assets/icons/pixelitos/128/plasma.png new file mode 100644 index 00000000..3865eeb8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/plasma.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/plasma.png.import b/tools/configurator/assets/icons/pixelitos/128/plasma.png.import new file mode 100644 index 00000000..9f06889e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/plasma.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dotw3uithrjlq" +path="res://.godot/imported/plasma.png-101a8282dfe4bf20ee39b03368897744.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/plasma.png" +dest_files=["res://.godot/imported/plasma.png-101a8282dfe4bf20ee39b03368897744.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/plasmashell.png b/tools/configurator/assets/icons/pixelitos/128/plasmashell.png new file mode 100644 index 00000000..3865eeb8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/plasmashell.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/plasmashell.png.import b/tools/configurator/assets/icons/pixelitos/128/plasmashell.png.import new file mode 100644 index 00000000..2e7f08ff --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/plasmashell.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7v2sfcaai11g" +path="res://.godot/imported/plasmashell.png-35750ff168550aeccc8ec05cf27198b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/plasmashell.png" +dest_files=["res://.godot/imported/plasmashell.png-35750ff168550aeccc8ec05cf27198b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/playonlinux.png b/tools/configurator/assets/icons/pixelitos/128/playonlinux.png new file mode 100644 index 00000000..e7b383ab Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/playonlinux.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/playonlinux.png.import b/tools/configurator/assets/icons/pixelitos/128/playonlinux.png.import new file mode 100644 index 00000000..51850a24 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/playonlinux.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yv84nhpv38nc" +path="res://.godot/imported/playonlinux.png-2f3b57a6830f69be0720b2dc2990d685.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/playonlinux.png" +dest_files=["res://.godot/imported/playonlinux.png-2f3b57a6830f69be0720b2dc2990d685.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/portal2.png b/tools/configurator/assets/icons/pixelitos/128/portal2.png new file mode 100644 index 00000000..9990ba37 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/portal2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/portal2.png.import b/tools/configurator/assets/icons/pixelitos/128/portal2.png.import new file mode 100644 index 00000000..1fbd7012 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/portal2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f8c6tobon13p" +path="res://.godot/imported/portal2.png-8c359b0df7fa9dc3dad992debc6f16c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/portal2.png" +dest_files=["res://.godot/imported/portal2.png-8c359b0df7fa9dc3dad992debc6f16c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/portal2.png2 b/tools/configurator/assets/icons/pixelitos/128/portal2.png2 new file mode 120000 index 00000000..69558735 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/portal2.png2 @@ -0,0 +1 @@ +portal2.png \ No newline at end of file diff --git a/tools/configurator/assets/icons/pixelitos/128/portmaster.png b/tools/configurator/assets/icons/pixelitos/128/portmaster.png new file mode 100644 index 00000000..42846ead Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/portmaster.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/portmaster.png.import b/tools/configurator/assets/icons/pixelitos/128/portmaster.png.import new file mode 100644 index 00000000..32d6e62c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/portmaster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br71sju3tnoox" +path="res://.godot/imported/portmaster.png-fec8c712b89c149f8cc27bcd7585c3c1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/portmaster.png" +dest_files=["res://.godot/imported/portmaster.png-fec8c712b89c149f8cc27bcd7585c3c1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-accessibility.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-accessibility.png new file mode 100644 index 00000000..577cd803 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-accessibility.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-accessibility.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-accessibility.png.import new file mode 100644 index 00000000..588bfc9d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-accessibility.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3qf7pxorcccw" +path="res://.godot/imported/preferences-desktop-accessibility.png-c1f063bc903f8502748a52006d7b9d28.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-accessibility.png" +dest_files=["res://.godot/imported/preferences-desktop-accessibility.png-c1f063bc903f8502748a52006d7b9d28.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-activities.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-activities.png new file mode 100644 index 00000000..1b6c0a43 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-activities.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-activities.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-activities.png.import new file mode 100644 index 00000000..ed642984 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-activities.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwumtasp4xc5o" +path="res://.godot/imported/preferences-desktop-activities.png-65bb414bd7bb84a074914c2863e9f0d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-activities.png" +dest_files=["res://.godot/imported/preferences-desktop-activities.png-65bb414bd7bb84a074914c2863e9f0d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-baloo.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-baloo.png new file mode 100644 index 00000000..e7c60acb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-baloo.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-baloo.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-baloo.png.import new file mode 100644 index 00000000..3d5e79ad --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-baloo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8jgtdwt2asin" +path="res://.godot/imported/preferences-desktop-baloo.png-eeca9d39b5391dfde98ed463b98f3228.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-baloo.png" +dest_files=["res://.godot/imported/preferences-desktop-baloo.png-eeca9d39b5391dfde98ed463b98f3228.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-color.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-color.png new file mode 100644 index 00000000..4a8df7a5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-color.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-color.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-color.png.import new file mode 100644 index 00000000..f5326172 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-color.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b32wlkb0juks3" +path="res://.godot/imported/preferences-desktop-color.png-37a184a8b8884c3fddb85994c4df5688.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-color.png" +dest_files=["res://.godot/imported/preferences-desktop-color.png-37a184a8b8884c3fddb85994c4df5688.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-cursors.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-cursors.png new file mode 100644 index 00000000..0387e20c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-cursors.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-cursors.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-cursors.png.import new file mode 100644 index 00000000..3c4787f1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-cursors.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ogrb4xygq7ji" +path="res://.godot/imported/preferences-desktop-cursors.png-a67d1bd496d4b8e9d60dab8213197bf3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-cursors.png" +dest_files=["res://.godot/imported/preferences-desktop-cursors.png-a67d1bd496d4b8e9d60dab8213197bf3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-default-applications.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-default-applications.png new file mode 100644 index 00000000..2fe13b29 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-default-applications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-default-applications.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-default-applications.png.import new file mode 100644 index 00000000..f8f2bb11 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-default-applications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1u1f5nwoqs4w" +path="res://.godot/imported/preferences-desktop-default-applications.png-3be4e31e18f01e99958721e58dc7ef9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-default-applications.png" +dest_files=["res://.godot/imported/preferences-desktop-default-applications.png-3be4e31e18f01e99958721e58dc7ef9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-display-nightcolor.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-display-nightcolor.png new file mode 100644 index 00000000..218908f2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-display-nightcolor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-display-nightcolor.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-display-nightcolor.png.import new file mode 100644 index 00000000..e6014133 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-display-nightcolor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bga2c1pw2ma5" +path="res://.godot/imported/preferences-desktop-display-nightcolor.png-2b9d49a8a73ec999057a4bed628c76cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-display-nightcolor.png" +dest_files=["res://.godot/imported/preferences-desktop-display-nightcolor.png-2b9d49a8a73ec999057a4bed628c76cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-display.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-display.png new file mode 100644 index 00000000..218908f2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-display.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-display.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-display.png.import new file mode 100644 index 00000000..e37446b3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-display.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jrhe4mkvtbqw" +path="res://.godot/imported/preferences-desktop-display.png-0e80139afd48a19076c0d0ee4e587592.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-display.png" +dest_files=["res://.godot/imported/preferences-desktop-display.png-0e80139afd48a19076c0d0ee4e587592.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-emoticons.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-emoticons.png new file mode 100644 index 00000000..279d8c1a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-emoticons.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-emoticons.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-emoticons.png.import new file mode 100644 index 00000000..d3774915 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-emoticons.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cor4o8jfwojf6" +path="res://.godot/imported/preferences-desktop-emoticons.png-48a1a177969a6235fb459d60badfed24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-emoticons.png" +dest_files=["res://.godot/imported/preferences-desktop-emoticons.png-48a1a177969a6235fb459d60badfed24.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-feedback.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-feedback.png new file mode 100644 index 00000000..8aa76a98 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-feedback.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-feedback.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-feedback.png.import new file mode 100644 index 00000000..7c3d1500 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-feedback.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://banbovpy8g67u" +path="res://.godot/imported/preferences-desktop-feedback.png-b3b03baf1dbfae946cbab340fda452c2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-feedback.png" +dest_files=["res://.godot/imported/preferences-desktop-feedback.png-b3b03baf1dbfae946cbab340fda452c2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-filetype-association.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-filetype-association.png new file mode 100644 index 00000000..053c85b2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-filetype-association.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-filetype-association.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-filetype-association.png.import new file mode 100644 index 00000000..797c33c2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-filetype-association.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmkjj1lgv8u4d" +path="res://.godot/imported/preferences-desktop-filetype-association.png-2c7e6e585eaef7e3781ab314fbfbcd0d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-filetype-association.png" +dest_files=["res://.godot/imported/preferences-desktop-filetype-association.png-2c7e6e585eaef7e3781ab314fbfbcd0d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-font-installer.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-font-installer.png new file mode 100644 index 00000000..2a6a1b47 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-font-installer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-font-installer.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-font-installer.png.import new file mode 100644 index 00000000..320f4cbf --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-font-installer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://76deo6girc04" +path="res://.godot/imported/preferences-desktop-font-installer.png-bd9434281464fbd1383e47d0ad696e35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-font-installer.png" +dest_files=["res://.godot/imported/preferences-desktop-font-installer.png-bd9434281464fbd1383e47d0ad696e35.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-font.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-font.png new file mode 100644 index 00000000..2a6a1b47 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-font.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-font.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-font.png.import new file mode 100644 index 00000000..8476c150 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-font.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d27jmbxhhgcl1" +path="res://.godot/imported/preferences-desktop-font.png-4d6b1fab34f4d1471db3ed3d4e388c46.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-font.png" +dest_files=["res://.godot/imported/preferences-desktop-font.png-4d6b1fab34f4d1471db3ed3d4e388c46.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-gaming.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-gaming.png new file mode 100644 index 00000000..a18ac31e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-gaming.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-gaming.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-gaming.png.import new file mode 100644 index 00000000..4315be4d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-gaming.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pva53gfr7uqq" +path="res://.godot/imported/preferences-desktop-gaming.png-54d7e5a9f51745a3b22ef4f611913890.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-gaming.png" +dest_files=["res://.godot/imported/preferences-desktop-gaming.png-54d7e5a9f51745a3b22ef4f611913890.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-icons.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-icons.png new file mode 100644 index 00000000..c6727a37 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-icons.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-icons.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-icons.png.import new file mode 100644 index 00000000..d7fcccd4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-icons.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jhx5b6lyubms" +path="res://.godot/imported/preferences-desktop-icons.png-9d04e01c5f3950b04fd8900534a6a956.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-icons.png" +dest_files=["res://.godot/imported/preferences-desktop-icons.png-9d04e01c5f3950b04fd8900534a6a956.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard-shortcut.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard-shortcut.png new file mode 100644 index 00000000..2403518f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard-shortcut.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard-shortcut.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard-shortcut.png.import new file mode 100644 index 00000000..c4119d3c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard-shortcut.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs4yatd5rpkl3" +path="res://.godot/imported/preferences-desktop-keyboard-shortcut.png-25daca5adf7f656b696367834c9f9b18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-keyboard-shortcut.png" +dest_files=["res://.godot/imported/preferences-desktop-keyboard-shortcut.png-25daca5adf7f656b696367834c9f9b18.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard-shortcuts.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard-shortcuts.png new file mode 100644 index 00000000..727ab43a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard-shortcuts.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard-shortcuts.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard-shortcuts.png.import new file mode 100644 index 00000000..09eb36c2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard-shortcuts.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkpvl0oxnpx25" +path="res://.godot/imported/preferences-desktop-keyboard-shortcuts.png-68dfd6b47113214733404bad7b1e6401.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-keyboard-shortcuts.png" +dest_files=["res://.godot/imported/preferences-desktop-keyboard-shortcuts.png-68dfd6b47113214733404bad7b1e6401.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard.png new file mode 100644 index 00000000..2403518f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard.png.import new file mode 100644 index 00000000..0dbbc52d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-keyboard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjfeufbid4en7" +path="res://.godot/imported/preferences-desktop-keyboard.png-5fe16a3db31ecabacd3de31a374e8d99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-keyboard.png" +dest_files=["res://.godot/imported/preferences-desktop-keyboard.png-5fe16a3db31ecabacd3de31a374e8d99.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-launch-feedback.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-launch-feedback.png new file mode 100644 index 00000000..1b5febd8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-launch-feedback.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-launch-feedback.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-launch-feedback.png.import new file mode 100644 index 00000000..5699131e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-launch-feedback.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6vndtbu4qduo" +path="res://.godot/imported/preferences-desktop-launch-feedback.png-53e13e87bfb573a8c4f64d3908f8d9db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-launch-feedback.png" +dest_files=["res://.godot/imported/preferences-desktop-launch-feedback.png-53e13e87bfb573a8c4f64d3908f8d9db.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-locale.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-locale.png new file mode 100644 index 00000000..f0a3fe0b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-locale.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-locale.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-locale.png.import new file mode 100644 index 00000000..7d3e61f0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-locale.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb2qwvt770wi3" +path="res://.godot/imported/preferences-desktop-locale.png-c80687a283fc30e2bfae60c53fb98d07.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-locale.png" +dest_files=["res://.godot/imported/preferences-desktop-locale.png-c80687a283fc30e2bfae60c53fb98d07.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-mouse.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-mouse.png new file mode 100644 index 00000000..a38709d8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-mouse.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-mouse.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-mouse.png.import new file mode 100644 index 00000000..56ae9287 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-mouse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://claf8e1sci28c" +path="res://.godot/imported/preferences-desktop-mouse.png-d578761120fdda71a0a64774eff9a94b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-mouse.png" +dest_files=["res://.godot/imported/preferences-desktop-mouse.png-d578761120fdda71a0a64774eff9a94b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-notification-bell.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-notification-bell.png new file mode 100644 index 00000000..513e9cf1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-notification-bell.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-notification-bell.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-notification-bell.png.import new file mode 100644 index 00000000..bd29a0a1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-notification-bell.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ro1kdkjpfq3r" +path="res://.godot/imported/preferences-desktop-notification-bell.png-29c0cb483263a567d7f024f21dfef2c2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-notification-bell.png" +dest_files=["res://.godot/imported/preferences-desktop-notification-bell.png-29c0cb483263a567d7f024f21dfef2c2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-peripherals.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-peripherals.png new file mode 100644 index 00000000..a38709d8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-peripherals.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-peripherals.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-peripherals.png.import new file mode 100644 index 00000000..09835523 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-peripherals.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cufvnasqatgpl" +path="res://.godot/imported/preferences-desktop-peripherals.png-ad4d6b1791854b4adea97018bbbf05a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-peripherals.png" +dest_files=["res://.godot/imported/preferences-desktop-peripherals.png-ad4d6b1791854b4adea97018bbbf05a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-personal.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-personal.png new file mode 100644 index 00000000..61f4ea3a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-personal.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-personal.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-personal.png.import new file mode 100644 index 00000000..a65874d8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-personal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://41eoa20k8rpb" +path="res://.godot/imported/preferences-desktop-personal.png-4e3ec15010f67b8c2169f29d28b6fcb7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-personal.png" +dest_files=["res://.godot/imported/preferences-desktop-personal.png-4e3ec15010f67b8c2169f29d28b6fcb7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-plasma-theme.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-plasma-theme.png new file mode 100644 index 00000000..26d87f8b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-plasma-theme.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-plasma-theme.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-plasma-theme.png.import new file mode 100644 index 00000000..8493224e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-plasma-theme.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk4567tpvqpr6" +path="res://.godot/imported/preferences-desktop-plasma-theme.png-3a026fc045fac91fe233f4837b8a81e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-plasma-theme.png" +dest_files=["res://.godot/imported/preferences-desktop-plasma-theme.png-3a026fc045fac91fe233f4837b8a81e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-tablet.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-tablet.png new file mode 100644 index 00000000..a4e04c43 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-tablet.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-tablet.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-tablet.png.import new file mode 100644 index 00000000..e18df295 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-tablet.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3qer0je87civ" +path="res://.godot/imported/preferences-desktop-tablet.png-2335e591f86fc3d6ce0b6474e31fe9c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-tablet.png" +dest_files=["res://.godot/imported/preferences-desktop-tablet.png-2335e591f86fc3d6ce0b6474e31fe9c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme-applications.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme-applications.png new file mode 100644 index 00000000..1c8769fd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme-applications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme-applications.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme-applications.png.import new file mode 100644 index 00000000..b0e733fa --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme-applications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw3tdbhmpkst7" +path="res://.godot/imported/preferences-desktop-theme-applications.png-87ec32215cb02e45c475829f923ff202.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-theme-applications.png" +dest_files=["res://.godot/imported/preferences-desktop-theme-applications.png-87ec32215cb02e45c475829f923ff202.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme-global.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme-global.png new file mode 100644 index 00000000..603016bb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme-global.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme-global.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme-global.png.import new file mode 100644 index 00000000..31077b51 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme-global.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du53ctm5inga8" +path="res://.godot/imported/preferences-desktop-theme-global.png-595df7ed6b917df3dd72c49e294ed702.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-theme-global.png" +dest_files=["res://.godot/imported/preferences-desktop-theme-global.png-595df7ed6b917df3dd72c49e294ed702.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme.png new file mode 100644 index 00000000..603016bb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme.png.import new file mode 100644 index 00000000..6a030dbb --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-theme.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh40ml7potgd8" +path="res://.godot/imported/preferences-desktop-theme.png-efa254385f369af93c64ebcfc1c3c5d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-theme.png" +dest_files=["res://.godot/imported/preferences-desktop-theme.png-efa254385f369af93c64ebcfc1c3c5d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-touchpad.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-touchpad.png new file mode 100644 index 00000000..5c79ef04 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-touchpad.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-touchpad.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-touchpad.png.import new file mode 100644 index 00000000..93dd0b94 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-touchpad.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckm2jmquht2ui" +path="res://.godot/imported/preferences-desktop-touchpad.png-3248c676528eac4bf1b1f6093f0ad5ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-touchpad.png" +dest_files=["res://.godot/imported/preferences-desktop-touchpad.png-3248c676528eac4bf1b1f6093f0ad5ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-user.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-user.png new file mode 100644 index 00000000..61f4ea3a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-user.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-user.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-user.png.import new file mode 100644 index 00000000..b7478e1d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-user.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b04ktjkejwhad" +path="res://.godot/imported/preferences-desktop-user.png-394ce07dabc797d4c2f380ed1bdb2e90.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-user.png" +dest_files=["res://.godot/imported/preferences-desktop-user.png-394ce07dabc797d4c2f380ed1bdb2e90.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-wallpaper.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-wallpaper.png new file mode 100644 index 00000000..6b8b4b57 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-wallpaper.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-wallpaper.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-wallpaper.png.import new file mode 100644 index 00000000..32551f02 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop-wallpaper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://npb44g6ogmr4" +path="res://.godot/imported/preferences-desktop-wallpaper.png-04467db7885ff63d38cc41e41053a1d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop-wallpaper.png" +dest_files=["res://.godot/imported/preferences-desktop-wallpaper.png-04467db7885ff63d38cc41e41053a1d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop.png b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop.png new file mode 100644 index 00000000..ebaa4cac Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-desktop.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop.png.import new file mode 100644 index 00000000..1a05e333 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-desktop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cygqbmaqtb1ow" +path="res://.godot/imported/preferences-desktop.png-2ad03122be5684ac1800e14a735efa08.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-desktop.png" +dest_files=["res://.godot/imported/preferences-desktop.png-2ad03122be5684ac1800e14a735efa08.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-network.png b/tools/configurator/assets/icons/pixelitos/128/preferences-system-network.png new file mode 100644 index 00000000..cba47f64 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-system-network.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-network.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-system-network.png.import new file mode 100644 index 00000000..ed5a1a3c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-system-network.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ci2y3rddowju3" +path="res://.godot/imported/preferences-system-network.png-86fb79f4bfe5956d6ae902bd51a9fc2a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-system-network.png" +dest_files=["res://.godot/imported/preferences-system-network.png-86fb79f4bfe5956d6ae902bd51a9fc2a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-notifications.png b/tools/configurator/assets/icons/pixelitos/128/preferences-system-notifications.png new file mode 100644 index 00000000..513e9cf1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-system-notifications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-notifications.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-system-notifications.png.import new file mode 100644 index 00000000..92100a83 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-system-notifications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfcgi6owxt3uu" +path="res://.godot/imported/preferences-system-notifications.png-ab98ca7aa6a5e24869f12e2bd4fbc21e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-system-notifications.png" +dest_files=["res://.godot/imported/preferences-system-notifications.png-ab98ca7aa6a5e24869f12e2bd4fbc21e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-search.png b/tools/configurator/assets/icons/pixelitos/128/preferences-system-search.png new file mode 100644 index 00000000..e7c60acb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-system-search.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-search.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-system-search.png.import new file mode 100644 index 00000000..5b0018a7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-system-search.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ic142ikd8ywv" +path="res://.godot/imported/preferences-system-search.png-0cf0fba82b08b16cb4f9d2be0be8574c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-system-search.png" +dest_files=["res://.godot/imported/preferences-system-search.png-0cf0fba82b08b16cb4f9d2be0be8574c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-session-services.png b/tools/configurator/assets/icons/pixelitos/128/preferences-system-session-services.png new file mode 100644 index 00000000..917fd055 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-system-session-services.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-session-services.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-system-session-services.png.import new file mode 100644 index 00000000..b26a503a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-system-session-services.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj7n7i3u6b1qu" +path="res://.godot/imported/preferences-system-session-services.png-156d58ba735d6c84ceceded223ba9b14.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-system-session-services.png" +dest_files=["res://.godot/imported/preferences-system-session-services.png-156d58ba735d6c84ceceded223ba9b14.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-splash.png b/tools/configurator/assets/icons/pixelitos/128/preferences-system-splash.png new file mode 100644 index 00000000..d16722c3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-system-splash.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-splash.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-system-splash.png.import new file mode 100644 index 00000000..f05b478f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-system-splash.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uoqlk45u013o" +path="res://.godot/imported/preferences-system-splash.png-439a2706cc6a838443e37007e3ca4291.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-system-splash.png" +dest_files=["res://.godot/imported/preferences-system-splash.png-439a2706cc6a838443e37007e3ca4291.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-time.png b/tools/configurator/assets/icons/pixelitos/128/preferences-system-time.png new file mode 100644 index 00000000..51aecbb7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-system-time.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-time.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-system-time.png.import new file mode 100644 index 00000000..474e0dfd --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-system-time.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0pbart7aj657" +path="res://.godot/imported/preferences-system-time.png-e4b09d0646945aa81c84272a44c1b8e4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-system-time.png" +dest_files=["res://.godot/imported/preferences-system-time.png-e4b09d0646945aa81c84272a44c1b8e4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-users.png b/tools/configurator/assets/icons/pixelitos/128/preferences-system-users.png new file mode 100644 index 00000000..61f4ea3a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-system-users.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-users.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-system-users.png.import new file mode 100644 index 00000000..d16c2bb6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-system-users.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj7i3gmibp8vr" +path="res://.godot/imported/preferences-system-users.png-9310d4295e6d1e86154e393b078d1fef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-system-users.png" +dest_files=["res://.godot/imported/preferences-system-users.png-9310d4295e6d1e86154e393b078d1fef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-windows-actions.png b/tools/configurator/assets/icons/pixelitos/128/preferences-system-windows-actions.png new file mode 100644 index 00000000..f4dd7342 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-system-windows-actions.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-windows-actions.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-system-windows-actions.png.import new file mode 100644 index 00000000..bf311a6a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-system-windows-actions.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2mf5yc40rr5y" +path="res://.godot/imported/preferences-system-windows-actions.png-33ba81754cb9fdd2fad744a2846e2b2b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-system-windows-actions.png" +dest_files=["res://.godot/imported/preferences-system-windows-actions.png-33ba81754cb9fdd2fad744a2846e2b2b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-windows.png b/tools/configurator/assets/icons/pixelitos/128/preferences-system-windows.png new file mode 100644 index 00000000..f4dd7342 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-system-windows.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system-windows.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-system-windows.png.import new file mode 100644 index 00000000..197d6a2c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-system-windows.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chs2qfbttnoen" +path="res://.godot/imported/preferences-system-windows.png-1a347924c5cbded5ab72bbaef4cdf877.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-system-windows.png" +dest_files=["res://.godot/imported/preferences-system-windows.png-1a347924c5cbded5ab72bbaef4cdf877.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system.png b/tools/configurator/assets/icons/pixelitos/128/preferences-system.png new file mode 100644 index 00000000..ebaa4cac Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-system.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-system.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-system.png.import new file mode 100644 index 00000000..5813acb4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-system.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5nn3t7wqinbt" +path="res://.godot/imported/preferences-system.png-d526a2e39daf9733c5314527291e651d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-system.png" +dest_files=["res://.godot/imported/preferences-system.png-d526a2e39daf9733c5314527291e651d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-tweaks-shadows.png b/tools/configurator/assets/icons/pixelitos/128/preferences-tweaks-shadows.png new file mode 100644 index 00000000..9966c413 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/preferences-tweaks-shadows.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/preferences-tweaks-shadows.png.import b/tools/configurator/assets/icons/pixelitos/128/preferences-tweaks-shadows.png.import new file mode 100644 index 00000000..33c7f5f0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/preferences-tweaks-shadows.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1vbhrfrja41j" +path="res://.godot/imported/preferences-tweaks-shadows.png-abe3e8cac16b0b6b9feefbef675afa42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/preferences-tweaks-shadows.png" +dest_files=["res://.godot/imported/preferences-tweaks-shadows.png-abe3e8cac16b0b6b9feefbef675afa42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/primehack.png b/tools/configurator/assets/icons/pixelitos/128/primehack.png new file mode 100644 index 00000000..3f0fdb23 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/primehack.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/primehack.png.import b/tools/configurator/assets/icons/pixelitos/128/primehack.png.import new file mode 100644 index 00000000..629f3479 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/primehack.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr637stsnsg01" +path="res://.godot/imported/primehack.png-7accd8a3f2a13e4998da8bbae6fcfc74.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/primehack.png" +dest_files=["res://.godot/imported/primehack.png-7accd8a3f2a13e4998da8bbae6fcfc74.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/pvz.png b/tools/configurator/assets/icons/pixelitos/128/pvz.png new file mode 100644 index 00000000..2c64757d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/pvz.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/pvz.png.import b/tools/configurator/assets/icons/pixelitos/128/pvz.png.import new file mode 100644 index 00000000..f506bb2d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/pvz.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://beoq7o1y68jub" +path="res://.godot/imported/pvz.png-acebdb89abf72505ab527e2a696ade70.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/pvz.png" +dest_files=["res://.godot/imported/pvz.png-acebdb89abf72505ab527e2a696ade70.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/qemu.png b/tools/configurator/assets/icons/pixelitos/128/qemu.png new file mode 100644 index 00000000..d053926c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/qemu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/qemu.png.import b/tools/configurator/assets/icons/pixelitos/128/qemu.png.import new file mode 100644 index 00000000..7749903a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/qemu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs1ymwen0gbfp" +path="res://.godot/imported/qemu.png-fe2f1a305a6e03ed46a0871c10bd260b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/qemu.png" +dest_files=["res://.godot/imported/qemu.png-fe2f1a305a6e03ed46a0871c10bd260b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/raze.png b/tools/configurator/assets/icons/pixelitos/128/raze.png new file mode 100644 index 00000000..35f9b629 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/raze.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/raze.png.import b/tools/configurator/assets/icons/pixelitos/128/raze.png.import new file mode 100644 index 00000000..75c2f265 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/raze.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jvmn7wdcslp" +path="res://.godot/imported/raze.png-28a01dca55c620ed35d73b36d6a56182.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/raze.png" +dest_files=["res://.godot/imported/raze.png-28a01dca55c620ed35d73b36d6a56182.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/redream.png b/tools/configurator/assets/icons/pixelitos/128/redream.png new file mode 100644 index 00000000..9bf89d6c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/redream.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/redream.png.import b/tools/configurator/assets/icons/pixelitos/128/redream.png.import new file mode 100644 index 00000000..cfae046e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/redream.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://v13pb8s3kf1x" +path="res://.godot/imported/redream.png-9d2c5d7b496b9a6551b10a07e1dfdf89.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/redream.png" +dest_files=["res://.godot/imported/redream.png-9d2c5d7b496b9a6551b10a07e1dfdf89.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/retroachievements.png b/tools/configurator/assets/icons/pixelitos/128/retroachievements.png new file mode 100644 index 00000000..307f47da Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/retroachievements.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/retroachievements.png.import b/tools/configurator/assets/icons/pixelitos/128/retroachievements.png.import new file mode 100644 index 00000000..fbfe9725 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/retroachievements.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgvrhhcyb3oav" +path="res://.godot/imported/retroachievements.png-c4b29821ae12837e3710e30d4646ea39.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/retroachievements.png" +dest_files=["res://.godot/imported/retroachievements.png-c4b29821ae12837e3710e30d4646ea39.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/retroachievements_r.png b/tools/configurator/assets/icons/pixelitos/128/retroachievements_r.png new file mode 100644 index 00000000..2198a47a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/retroachievements_r.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/retroachievements_r.png.import b/tools/configurator/assets/icons/pixelitos/128/retroachievements_r.png.import new file mode 100644 index 00000000..833f3863 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/retroachievements_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4r1xk6ubwkmd" +path="res://.godot/imported/retroachievements_r.png-30093fcb234d7cc500450fe7b2bae8aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/retroachievements_r.png" +dest_files=["res://.godot/imported/retroachievements_r.png-30093fcb234d7cc500450fe7b2bae8aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/retroarch.png b/tools/configurator/assets/icons/pixelitos/128/retroarch.png new file mode 100644 index 00000000..684f8f20 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/retroarch.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/retroarch.png.import b/tools/configurator/assets/icons/pixelitos/128/retroarch.png.import new file mode 100644 index 00000000..cf3fbc63 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/retroarch.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk856hwnwsuab" +path="res://.godot/imported/retroarch.png-1656c6218c023209a7f3b81ad43f6fdd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/retroarch.png" +dest_files=["res://.godot/imported/retroarch.png-1656c6218c023209a7f3b81ad43f6fdd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/romm.png b/tools/configurator/assets/icons/pixelitos/128/romm.png new file mode 100644 index 00000000..b859d2d7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/romm.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/romm.png.import b/tools/configurator/assets/icons/pixelitos/128/romm.png.import new file mode 100644 index 00000000..c824abdb --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/romm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://beh8ftcus8d1g" +path="res://.godot/imported/romm.png-7c55ddb50dd757e23898300288660633.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/romm.png" +dest_files=["res://.godot/imported/romm.png-7c55ddb50dd757e23898300288660633.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/roxterm.png b/tools/configurator/assets/icons/pixelitos/128/roxterm.png new file mode 100644 index 00000000..c19c8d16 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/roxterm.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/roxterm.png.import b/tools/configurator/assets/icons/pixelitos/128/roxterm.png.import new file mode 100644 index 00000000..350a6dab --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/roxterm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uxc1xyvgkna2" +path="res://.godot/imported/roxterm.png-280a348c573ef444933fa1a5fb1f9823.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/roxterm.png" +dest_files=["res://.godot/imported/roxterm.png-280a348c573ef444933fa1a5fb1f9823.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/ruffle.png b/tools/configurator/assets/icons/pixelitos/128/ruffle.png new file mode 100644 index 00000000..c6d7480f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/ruffle.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/ruffle.png.import b/tools/configurator/assets/icons/pixelitos/128/ruffle.png.import new file mode 100644 index 00000000..628c2ea0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/ruffle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://10pyy05xqpr4" +path="res://.godot/imported/ruffle.png-fc191cff4a7792be6a28b497db61602e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/ruffle.png" +dest_files=["res://.godot/imported/ruffle.png-fc191cff4a7792be6a28b497db61602e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/scummvm.png b/tools/configurator/assets/icons/pixelitos/128/scummvm.png new file mode 100644 index 00000000..095eca00 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/scummvm.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/scummvm.png.import b/tools/configurator/assets/icons/pixelitos/128/scummvm.png.import new file mode 100644 index 00000000..8c761dbc --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/scummvm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4liih1l8quil" +path="res://.godot/imported/scummvm.png-b995c9703c758d7569029b4edc0ba53b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/scummvm.png" +dest_files=["res://.godot/imported/scummvm.png-b995c9703c758d7569029b4edc0ba53b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/sdltrs.png b/tools/configurator/assets/icons/pixelitos/128/sdltrs.png new file mode 100644 index 00000000..211024c2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/sdltrs.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/sdltrs.png.import b/tools/configurator/assets/icons/pixelitos/128/sdltrs.png.import new file mode 100644 index 00000000..fc315f80 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/sdltrs.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wvh6nlv834wa" +path="res://.godot/imported/sdltrs.png-c2c4ffbc02fe6777464ce690694a52ee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/sdltrs.png" +dest_files=["res://.godot/imported/sdltrs.png-c2c4ffbc02fe6777464ce690694a52ee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/search.png b/tools/configurator/assets/icons/pixelitos/128/search.png new file mode 100644 index 00000000..e7c60acb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/search.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/search.png.import b/tools/configurator/assets/icons/pixelitos/128/search.png.import new file mode 100644 index 00000000..3c0a3ef7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/search.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyw0ondpk6ned" +path="res://.godot/imported/search.png-c257d8ddba64f77b7ab993a4f22f90f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/search.png" +dest_files=["res://.godot/imported/search.png-c257d8ddba64f77b7ab993a4f22f90f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/security-high.png b/tools/configurator/assets/icons/pixelitos/128/security-high.png new file mode 100644 index 00000000..fcc9faae Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/security-high.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/security-high.png.import b/tools/configurator/assets/icons/pixelitos/128/security-high.png.import new file mode 100644 index 00000000..9ff66dee --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/security-high.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l2d3bu1cliui" +path="res://.godot/imported/security-high.png-f9f9969a9a3fcc2fe17e22285fb7b761.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/security-high.png" +dest_files=["res://.godot/imported/security-high.png-f9f9969a9a3fcc2fe17e22285fb7b761.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/security-low.png b/tools/configurator/assets/icons/pixelitos/128/security-low.png new file mode 100644 index 00000000..fd686adb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/security-low.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/security-low.png.import b/tools/configurator/assets/icons/pixelitos/128/security-low.png.import new file mode 100644 index 00000000..3b5205d2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/security-low.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3cwynjo00d8m" +path="res://.godot/imported/security-low.png-3dafb4d8813caaefa6f5d58b7248023f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/security-low.png" +dest_files=["res://.godot/imported/security-low.png-3dafb4d8813caaefa6f5d58b7248023f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/security-medium.png b/tools/configurator/assets/icons/pixelitos/128/security-medium.png new file mode 100644 index 00000000..28077392 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/security-medium.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/security-medium.png.import b/tools/configurator/assets/icons/pixelitos/128/security-medium.png.import new file mode 100644 index 00000000..efbd8ab2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/security-medium.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvvhuiyra2c8b" +path="res://.godot/imported/security-medium.png-ac5feb4d99347e3858cceb80174d7429.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/security-medium.png" +dest_files=["res://.godot/imported/security-medium.png-ac5feb4d99347e3858cceb80174d7429.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/simcoupe.png b/tools/configurator/assets/icons/pixelitos/128/simcoupe.png new file mode 100644 index 00000000..83677d61 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/simcoupe.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/simcoupe.png.import b/tools/configurator/assets/icons/pixelitos/128/simcoupe.png.import new file mode 100644 index 00000000..aefa9938 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/simcoupe.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgyfhyqomapp8" +path="res://.godot/imported/simcoupe.png-2f3b9aff02f41b8b838577c3431f8b24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/simcoupe.png" +dest_files=["res://.godot/imported/simcoupe.png-2f3b9aff02f41b8b838577c3431f8b24.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/simplescreenrecorder.png b/tools/configurator/assets/icons/pixelitos/128/simplescreenrecorder.png new file mode 100644 index 00000000..44e6304f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/simplescreenrecorder.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/simplescreenrecorder.png.import b/tools/configurator/assets/icons/pixelitos/128/simplescreenrecorder.png.import new file mode 100644 index 00000000..fdad563b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/simplescreenrecorder.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cketh3mn3cls5" +path="res://.godot/imported/simplescreenrecorder.png-058d6ca01ceb888248abfe9442de0728.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/simplescreenrecorder.png" +dest_files=["res://.godot/imported/simplescreenrecorder.png-058d6ca01ceb888248abfe9442de0728.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/skullgirls.png b/tools/configurator/assets/icons/pixelitos/128/skullgirls.png new file mode 100644 index 00000000..af175cca Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/skullgirls.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/skullgirls.png.import b/tools/configurator/assets/icons/pixelitos/128/skullgirls.png.import new file mode 100644 index 00000000..a9aec39d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/skullgirls.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy3v6ppnsupa" +path="res://.godot/imported/skullgirls.png-194abed22273a5a929ab156edf2fdb6a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/skullgirls.png" +dest_files=["res://.godot/imported/skullgirls.png-194abed22273a5a929ab156edf2fdb6a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/snes9x.png b/tools/configurator/assets/icons/pixelitos/128/snes9x.png new file mode 100644 index 00000000..d63bc0e5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/snes9x.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/snes9x.png.import b/tools/configurator/assets/icons/pixelitos/128/snes9x.png.import new file mode 100644 index 00000000..157f1b91 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/snes9x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyqdlugy5lts5" +path="res://.godot/imported/snes9x.png-985444d2225cee74be2bbfe4fd683dbe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/snes9x.png" +dest_files=["res://.godot/imported/snes9x.png-985444d2225cee74be2bbfe4fd683dbe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/solarus.png b/tools/configurator/assets/icons/pixelitos/128/solarus.png new file mode 100644 index 00000000..18c9b15f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/solarus.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/solarus.png.import b/tools/configurator/assets/icons/pixelitos/128/solarus.png.import new file mode 100644 index 00000000..3733abe3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/solarus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dasbokxpr78jy" +path="res://.godot/imported/solarus.png-ee85282e282ffbf6a1c199a933385ea7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/solarus.png" +dest_files=["res://.godot/imported/solarus.png-ee85282e282ffbf6a1c199a933385ea7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/spacefm-find.png b/tools/configurator/assets/icons/pixelitos/128/spacefm-find.png new file mode 100644 index 00000000..a66c4e7e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/spacefm-find.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/spacefm-find.png.import b/tools/configurator/assets/icons/pixelitos/128/spacefm-find.png.import new file mode 100644 index 00000000..ba9c1598 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/spacefm-find.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brlip4sf5gjrx" +path="res://.godot/imported/spacefm-find.png-83efa319b4e6cf35e7cdf1723745d2e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/spacefm-find.png" +dest_files=["res://.godot/imported/spacefm-find.png-83efa319b4e6cf35e7cdf1723745d2e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/spacefm.png b/tools/configurator/assets/icons/pixelitos/128/spacefm.png new file mode 100644 index 00000000..04548a3e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/spacefm.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/spacefm.png.import b/tools/configurator/assets/icons/pixelitos/128/spacefm.png.import new file mode 100644 index 00000000..14dee977 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/spacefm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blwtj4of6fb5y" +path="res://.godot/imported/spacefm.png-d1aae84e63b44247c2b892dabea68719.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/spacefm.png" +dest_files=["res://.godot/imported/spacefm.png-d1aae84e63b44247c2b892dabea68719.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/spotify.png b/tools/configurator/assets/icons/pixelitos/128/spotify.png new file mode 100644 index 00000000..0d247762 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/spotify.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/spotify.png.import b/tools/configurator/assets/icons/pixelitos/128/spotify.png.import new file mode 100644 index 00000000..859efe76 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/spotify.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://copxfw6hu250v" +path="res://.godot/imported/spotify.png-b7fb9b687f6b8a8e81c084de59fa1b21.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/spotify.png" +dest_files=["res://.godot/imported/spotify.png-b7fb9b687f6b8a8e81c084de59fa1b21.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/steam-rom-manager.png b/tools/configurator/assets/icons/pixelitos/128/steam-rom-manager.png new file mode 100644 index 00000000..37bdfe33 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/steam-rom-manager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/steam-rom-manager.png.import b/tools/configurator/assets/icons/pixelitos/128/steam-rom-manager.png.import new file mode 100644 index 00000000..2c0933d0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/steam-rom-manager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://syrfbhy5ov58" +path="res://.godot/imported/steam-rom-manager.png-8310109093f97cffa920822f53cc6704.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/steam-rom-manager.png" +dest_files=["res://.godot/imported/steam-rom-manager.png-8310109093f97cffa920822f53cc6704.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/steam.png b/tools/configurator/assets/icons/pixelitos/128/steam.png new file mode 100644 index 00000000..c0dc9b16 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/steam.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/steam.png.import b/tools/configurator/assets/icons/pixelitos/128/steam.png.import new file mode 100644 index 00000000..cdb1fd53 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/steam.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkouvh1ukkuob" +path="res://.godot/imported/steam.png-7de5d2a73048ca0823239245eb6d239b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/steam.png" +dest_files=["res://.godot/imported/steam.png-7de5d2a73048ca0823239245eb6d239b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/steam_icon_1289310.png b/tools/configurator/assets/icons/pixelitos/128/steam_icon_1289310.png new file mode 100644 index 00000000..ca1abc9c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/steam_icon_1289310.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/steam_icon_1289310.png.import b/tools/configurator/assets/icons/pixelitos/128/steam_icon_1289310.png.import new file mode 100644 index 00000000..5f84c17f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/steam_icon_1289310.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bka2oh0h0fqcr" +path="res://.godot/imported/steam_icon_1289310.png-1179edf24c1c8a87e6e5dfabede12136.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/steam_icon_1289310.png" +dest_files=["res://.godot/imported/steam_icon_1289310.png-1179edf24c1c8a87e6e5dfabede12136.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/steam_icon_20.png b/tools/configurator/assets/icons/pixelitos/128/steam_icon_20.png new file mode 100644 index 00000000..13fb7156 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/steam_icon_20.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/steam_icon_20.png.import b/tools/configurator/assets/icons/pixelitos/128/steam_icon_20.png.import new file mode 100644 index 00000000..3c3ec36f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/steam_icon_20.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2jl8ljpn8s01" +path="res://.godot/imported/steam_icon_20.png-553f2ae9e0d3f7c08ce11900b6742dbb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/steam_icon_20.png" +dest_files=["res://.godot/imported/steam_icon_20.png-553f2ae9e0d3f7c08ce11900b6742dbb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/steam_icon_245170.png b/tools/configurator/assets/icons/pixelitos/128/steam_icon_245170.png new file mode 100644 index 00000000..af175cca Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/steam_icon_245170.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/steam_icon_245170.png.import b/tools/configurator/assets/icons/pixelitos/128/steam_icon_245170.png.import new file mode 100644 index 00000000..db7ca869 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/steam_icon_245170.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvi0nu5v1mlnm" +path="res://.godot/imported/steam_icon_245170.png-88baa961b3194c816dfb350e456853fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/steam_icon_245170.png" +dest_files=["res://.godot/imported/steam_icon_245170.png-88baa961b3194c816dfb350e456853fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/steam_icon_322170.png b/tools/configurator/assets/icons/pixelitos/128/steam_icon_322170.png new file mode 100644 index 00000000..085f0aeb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/steam_icon_322170.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/steam_icon_322170.png.import b/tools/configurator/assets/icons/pixelitos/128/steam_icon_322170.png.import new file mode 100644 index 00000000..1cea83f6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/steam_icon_322170.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4rrgbthl5foo" +path="res://.godot/imported/steam_icon_322170.png-2b9e2dd441b17b8f879b09a704708be8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/steam_icon_322170.png" +dest_files=["res://.godot/imported/steam_icon_322170.png-2b9e2dd441b17b8f879b09a704708be8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/steam_icon_3590.png b/tools/configurator/assets/icons/pixelitos/128/steam_icon_3590.png new file mode 100644 index 00000000..2c64757d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/steam_icon_3590.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/steam_icon_3590.png.import b/tools/configurator/assets/icons/pixelitos/128/steam_icon_3590.png.import new file mode 100644 index 00000000..bfe85333 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/steam_icon_3590.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2jvcirtej0yp" +path="res://.godot/imported/steam_icon_3590.png-2936c0b2984734c9851c9d700e24dde2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/steam_icon_3590.png" +dest_files=["res://.godot/imported/steam_icon_3590.png-2936c0b2984734c9851c9d700e24dde2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/steam_icon_620.png b/tools/configurator/assets/icons/pixelitos/128/steam_icon_620.png new file mode 120000 index 00000000..69558735 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/steam_icon_620.png @@ -0,0 +1 @@ +portal2.png \ No newline at end of file diff --git a/tools/configurator/assets/icons/pixelitos/128/steam_icon_620.png.import b/tools/configurator/assets/icons/pixelitos/128/steam_icon_620.png.import new file mode 100644 index 00000000..dd872006 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/steam_icon_620.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck226cpy48rw" +path="res://.godot/imported/steam_icon_620.png-7a9e73f3c8c9a5c04b15bb9b88f1fab3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/steam_icon_620.png" +dest_files=["res://.godot/imported/steam_icon_620.png-7a9e73f3c8c9a5c04b15bb9b88f1fab3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/steam_icon_70.png b/tools/configurator/assets/icons/pixelitos/128/steam_icon_70.png new file mode 100644 index 00000000..d75738ee Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/steam_icon_70.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/steam_icon_70.png.import b/tools/configurator/assets/icons/pixelitos/128/steam_icon_70.png.import new file mode 100644 index 00000000..b89057a1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/steam_icon_70.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://35k5txo7qy72" +path="res://.godot/imported/steam_icon_70.png-fb6dda8a54c474e61aab175a7693eded.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/steam_icon_70.png" +dest_files=["res://.godot/imported/steam_icon_70.png-fb6dda8a54c474e61aab175a7693eded.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/stella.png b/tools/configurator/assets/icons/pixelitos/128/stella.png new file mode 100644 index 00000000..4953f902 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/stella.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/stella.png.import b/tools/configurator/assets/icons/pixelitos/128/stella.png.import new file mode 100644 index 00000000..712034f3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/stella.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2fp4cq1l0843" +path="res://.godot/imported/stella.png-e81484435d2c9330faaeb6dd19649c74.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/stella.png" +dest_files=["res://.godot/imported/stella.png-e81484435d2c9330faaeb6dd19649c74.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/strawberry.png b/tools/configurator/assets/icons/pixelitos/128/strawberry.png new file mode 100644 index 00000000..c672b9ed Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/strawberry.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/strawberry.png.import b/tools/configurator/assets/icons/pixelitos/128/strawberry.png.import new file mode 100644 index 00000000..276860e0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/strawberry.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hj7icq0dpudo" +path="res://.godot/imported/strawberry.png-6203b765ec8f95acc1f78e82f6ff458d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/strawberry.png" +dest_files=["res://.godot/imported/strawberry.png-6203b765ec8f95acc1f78e82f6ff458d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/supermodel.png b/tools/configurator/assets/icons/pixelitos/128/supermodel.png new file mode 100644 index 00000000..44986380 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/supermodel.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/supermodel.png.import b/tools/configurator/assets/icons/pixelitos/128/supermodel.png.import new file mode 100644 index 00000000..f5f3ee64 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/supermodel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7ctso6iitgsw" +path="res://.godot/imported/supermodel.png-7bcfecdd6d5e26b310f80b72e15607af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/supermodel.png" +dest_files=["res://.godot/imported/supermodel.png-7bcfecdd6d5e26b310f80b72e15607af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/supertuxkart.png b/tools/configurator/assets/icons/pixelitos/128/supertuxkart.png new file mode 100644 index 00000000..417e433d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/supertuxkart.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/supertuxkart.png.import b/tools/configurator/assets/icons/pixelitos/128/supertuxkart.png.import new file mode 100644 index 00000000..00775ab1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/supertuxkart.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ry7e6t36ucl2" +path="res://.godot/imported/supertuxkart.png-e7b33b58cbf2e813fbc4dd2144be224a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/supertuxkart.png" +dest_files=["res://.godot/imported/supertuxkart.png-e7b33b58cbf2e813fbc4dd2144be224a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/system-file-manager.png b/tools/configurator/assets/icons/pixelitos/128/system-file-manager.png new file mode 100644 index 00000000..04548a3e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/system-file-manager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/system-file-manager.png.import b/tools/configurator/assets/icons/pixelitos/128/system-file-manager.png.import new file mode 100644 index 00000000..f82d5dce --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/system-file-manager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gcoiqf2o02b" +path="res://.godot/imported/system-file-manager.png-f286dd7d2591d98668808fc07eba5a42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/system-file-manager.png" +dest_files=["res://.godot/imported/system-file-manager.png-f286dd7d2591d98668808fc07eba5a42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/system-lock-screen.png b/tools/configurator/assets/icons/pixelitos/128/system-lock-screen.png new file mode 100644 index 00000000..826c6329 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/system-lock-screen.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/system-lock-screen.png.import b/tools/configurator/assets/icons/pixelitos/128/system-lock-screen.png.import new file mode 100644 index 00000000..7f444676 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/system-lock-screen.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5ik1giuv1ar5" +path="res://.godot/imported/system-lock-screen.png-27e607af5469b077e600130f7d0c719c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/system-lock-screen.png" +dest_files=["res://.godot/imported/system-lock-screen.png-27e607af5469b077e600130f7d0c719c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/system-log-out.png b/tools/configurator/assets/icons/pixelitos/128/system-log-out.png new file mode 100644 index 00000000..a0efa5cc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/system-log-out.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/system-log-out.png.import b/tools/configurator/assets/icons/pixelitos/128/system-log-out.png.import new file mode 100644 index 00000000..e4cb73f4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/system-log-out.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwun8x1uwndye" +path="res://.godot/imported/system-log-out.png-d8863140fbd7bfa44d3ef092b0e31dd2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/system-log-out.png" +dest_files=["res://.godot/imported/system-log-out.png-d8863140fbd7bfa44d3ef092b0e31dd2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/system-logout.png b/tools/configurator/assets/icons/pixelitos/128/system-logout.png new file mode 100644 index 00000000..a0efa5cc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/system-logout.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/system-logout.png.import b/tools/configurator/assets/icons/pixelitos/128/system-logout.png.import new file mode 100644 index 00000000..32a35fc4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/system-logout.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e06y6tlbfa3g" +path="res://.godot/imported/system-logout.png-185383cf0ee720346a16f67323971f9a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/system-logout.png" +dest_files=["res://.godot/imported/system-logout.png-185383cf0ee720346a16f67323971f9a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/system-reboot.png b/tools/configurator/assets/icons/pixelitos/128/system-reboot.png new file mode 100644 index 00000000..f3d4b35f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/system-reboot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/system-reboot.png.import b/tools/configurator/assets/icons/pixelitos/128/system-reboot.png.import new file mode 100644 index 00000000..5cbf4a0d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/system-reboot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b763qnm02o5bd" +path="res://.godot/imported/system-reboot.png-627f6ab1c5aa0f1149f64636a2b3a470.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/system-reboot.png" +dest_files=["res://.godot/imported/system-reboot.png-627f6ab1c5aa0f1149f64636a2b3a470.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/system-run.png b/tools/configurator/assets/icons/pixelitos/128/system-run.png new file mode 100644 index 00000000..917fd055 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/system-run.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/system-run.png.import b/tools/configurator/assets/icons/pixelitos/128/system-run.png.import new file mode 100644 index 00000000..33746afe --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/system-run.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnk42yf0eoy8" +path="res://.godot/imported/system-run.png-44dd28c3847c846068a4ea08a75e33b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/system-run.png" +dest_files=["res://.godot/imported/system-run.png-44dd28c3847c846068a4ea08a75e33b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/system-search.png b/tools/configurator/assets/icons/pixelitos/128/system-search.png new file mode 100644 index 00000000..e7c60acb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/system-search.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/system-search.png.import b/tools/configurator/assets/icons/pixelitos/128/system-search.png.import new file mode 100644 index 00000000..3cdbd40f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/system-search.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q4oml6bpbk6" +path="res://.godot/imported/system-search.png-bf0a33396dbf56f93d1e64d81afc1cce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/system-search.png" +dest_files=["res://.godot/imported/system-search.png-bf0a33396dbf56f93d1e64d81afc1cce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/system-shutdown.png b/tools/configurator/assets/icons/pixelitos/128/system-shutdown.png new file mode 100644 index 00000000..94300165 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/system-shutdown.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/system-shutdown.png.import b/tools/configurator/assets/icons/pixelitos/128/system-shutdown.png.import new file mode 100644 index 00000000..5f175339 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/system-shutdown.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bns3nmvku2qhe" +path="res://.godot/imported/system-shutdown.png-d23593a264d7258bacf1e0faa359713c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/system-shutdown.png" +dest_files=["res://.godot/imported/system-shutdown.png-d23593a264d7258bacf1e0faa359713c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/system-software-install.png b/tools/configurator/assets/icons/pixelitos/128/system-software-install.png new file mode 100644 index 00000000..d6b733a6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/system-software-install.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/system-software-install.png.import b/tools/configurator/assets/icons/pixelitos/128/system-software-install.png.import new file mode 100644 index 00000000..41e08609 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/system-software-install.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do3mc6sg5mfek" +path="res://.godot/imported/system-software-install.png-e8c4c1aeac4da7d2bcda02689bbbd38b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/system-software-install.png" +dest_files=["res://.godot/imported/system-software-install.png-e8c4c1aeac4da7d2bcda02689bbbd38b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/system-suspend-hibernate.png b/tools/configurator/assets/icons/pixelitos/128/system-suspend-hibernate.png new file mode 100644 index 00000000..51d35801 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/system-suspend-hibernate.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/system-suspend-hibernate.png.import b/tools/configurator/assets/icons/pixelitos/128/system-suspend-hibernate.png.import new file mode 100644 index 00000000..2b7940f1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/system-suspend-hibernate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbidpdjy1enoe" +path="res://.godot/imported/system-suspend-hibernate.png-b9eac534384f071ff6aea6c2f77b5a67.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/system-suspend-hibernate.png" +dest_files=["res://.godot/imported/system-suspend-hibernate.png-b9eac534384f071ff6aea6c2f77b5a67.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/system-suspend.png b/tools/configurator/assets/icons/pixelitos/128/system-suspend.png new file mode 100644 index 00000000..826c6329 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/system-suspend.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/system-suspend.png.import b/tools/configurator/assets/icons/pixelitos/128/system-suspend.png.import new file mode 100644 index 00000000..7f52ce5f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/system-suspend.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4suyd0iag1k" +path="res://.godot/imported/system-suspend.png-97743bcebd53b1ac140187633cc5ecb7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/system-suspend.png" +dest_files=["res://.godot/imported/system-suspend.png-97743bcebd53b1ac140187633cc5ecb7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/system-switch-user.png b/tools/configurator/assets/icons/pixelitos/128/system-switch-user.png new file mode 100644 index 00000000..82d0ecac Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/system-switch-user.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/system-switch-user.png.import b/tools/configurator/assets/icons/pixelitos/128/system-switch-user.png.import new file mode 100644 index 00000000..74afc6da --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/system-switch-user.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxtd2lvewb4qa" +path="res://.godot/imported/system-switch-user.png-63ed18299975a925d34701aa233400d4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/system-switch-user.png" +dest_files=["res://.godot/imported/system-switch-user.png-63ed18299975a925d34701aa233400d4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/system-users.png b/tools/configurator/assets/icons/pixelitos/128/system-users.png new file mode 100644 index 00000000..61f4ea3a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/system-users.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/system-users.png.import b/tools/configurator/assets/icons/pixelitos/128/system-users.png.import new file mode 100644 index 00000000..741a0fd0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/system-users.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csukp1gptf2uo" +path="res://.godot/imported/system-users.png-1b601cba68370845a7f7d2fd949e594f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/system-users.png" +dest_files=["res://.godot/imported/system-users.png-1b601cba68370845a7f7d2fd949e594f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/systemsettings.png b/tools/configurator/assets/icons/pixelitos/128/systemsettings.png new file mode 100644 index 00000000..ebaa4cac Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/systemsettings.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/systemsettings.png.import b/tools/configurator/assets/icons/pixelitos/128/systemsettings.png.import new file mode 100644 index 00000000..1a9e080e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/systemsettings.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1c7f4j1qhnkn" +path="res://.godot/imported/systemsettings.png-2882f3687517a031ead4b87f6b268bdd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/systemsettings.png" +dest_files=["res://.godot/imported/systemsettings.png-2882f3687517a031ead4b87f6b268bdd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/team-fortress-classic.png b/tools/configurator/assets/icons/pixelitos/128/team-fortress-classic.png new file mode 100644 index 00000000..13fb7156 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/team-fortress-classic.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/team-fortress-classic.png.import b/tools/configurator/assets/icons/pixelitos/128/team-fortress-classic.png.import new file mode 100644 index 00000000..495c2df6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/team-fortress-classic.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0nmdad7akkhc" +path="res://.godot/imported/team-fortress-classic.png-d21fe4287d8ab47f89b5d25f1e0f4e42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/team-fortress-classic.png" +dest_files=["res://.godot/imported/team-fortress-classic.png-d21fe4287d8ab47f89b5d25f1e0f4e42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/telegram.png b/tools/configurator/assets/icons/pixelitos/128/telegram.png new file mode 100644 index 00000000..818ae2fe Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/telegram.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/telegram.png.import b/tools/configurator/assets/icons/pixelitos/128/telegram.png.import new file mode 100644 index 00000000..97a178d9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/telegram.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk0c824j54qil" +path="res://.godot/imported/telegram.png-5fae512bc9eb657c3a9d3a4378109624.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/telegram.png" +dest_files=["res://.godot/imported/telegram.png-5fae512bc9eb657c3a9d3a4378109624.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/terminal-tango.png b/tools/configurator/assets/icons/pixelitos/128/terminal-tango.png new file mode 100644 index 00000000..c19c8d16 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/terminal-tango.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/terminal-tango.png.import b/tools/configurator/assets/icons/pixelitos/128/terminal-tango.png.import new file mode 100644 index 00000000..80a88d51 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/terminal-tango.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnuyb0trg84rx" +path="res://.godot/imported/terminal-tango.png-bb32fe89c295537c7f9c964857926b7d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/terminal-tango.png" +dest_files=["res://.godot/imported/terminal-tango.png-bb32fe89c295537c7f9c964857926b7d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/tesseract.png b/tools/configurator/assets/icons/pixelitos/128/tesseract.png new file mode 100644 index 00000000..72ccbb57 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/tesseract.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/tesseract.png.import b/tools/configurator/assets/icons/pixelitos/128/tesseract.png.import new file mode 100644 index 00000000..d8c9bd0a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/tesseract.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bx5bchkr0lebe" +path="res://.godot/imported/tesseract.png-7e412bb0af3a13f59faa6b821adcd4fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/tesseract.png" +dest_files=["res://.godot/imported/tesseract.png-7e412bb0af3a13f59faa6b821adcd4fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/text-x-chdr.png b/tools/configurator/assets/icons/pixelitos/128/text-x-chdr.png new file mode 100644 index 00000000..efcff146 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/text-x-chdr.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/text-x-chdr.png.import b/tools/configurator/assets/icons/pixelitos/128/text-x-chdr.png.import new file mode 100644 index 00000000..76225b49 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/text-x-chdr.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7mt2a4ktkcv4" +path="res://.godot/imported/text-x-chdr.png-70480c58b35c0bc9a383b52b47b8a4fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/text-x-chdr.png" +dest_files=["res://.godot/imported/text-x-chdr.png-70480c58b35c0bc9a383b52b47b8a4fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/text-x-markdown.png b/tools/configurator/assets/icons/pixelitos/128/text-x-markdown.png new file mode 100644 index 00000000..7e4a01bf Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/text-x-markdown.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/text-x-markdown.png.import b/tools/configurator/assets/icons/pixelitos/128/text-x-markdown.png.import new file mode 100644 index 00000000..8ab8f4e0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/text-x-markdown.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bi467fsp46yfn" +path="res://.godot/imported/text-x-markdown.png-8b75c70da853f6968c13b144e413daa9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/text-x-markdown.png" +dest_files=["res://.godot/imported/text-x-markdown.png-8b75c70da853f6968c13b144e413daa9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/tint2.png b/tools/configurator/assets/icons/pixelitos/128/tint2.png new file mode 100644 index 00000000..95bda2ef Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/tint2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/tint2.png.import b/tools/configurator/assets/icons/pixelitos/128/tint2.png.import new file mode 100644 index 00000000..fcb03489 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/tint2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctrxxh3uqrp7q" +path="res://.godot/imported/tint2.png-4a66086d32bfd11018512a660d67187f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/tint2.png" +dest_files=["res://.godot/imported/tint2.png-4a66086d32bfd11018512a660d67187f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/tint2conf.png b/tools/configurator/assets/icons/pixelitos/128/tint2conf.png new file mode 100644 index 00000000..95bda2ef Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/tint2conf.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/tint2conf.png.import b/tools/configurator/assets/icons/pixelitos/128/tint2conf.png.import new file mode 100644 index 00000000..1d39584e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/tint2conf.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cblpmmuxcb52p" +path="res://.godot/imported/tint2conf.png-dff5b0cf9e57fdcc48c23bdc4155dbfc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/tint2conf.png" +dest_files=["res://.godot/imported/tint2conf.png-dff5b0cf9e57fdcc48c23bdc4155dbfc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/tools-check-spelling.png b/tools/configurator/assets/icons/pixelitos/128/tools-check-spelling.png new file mode 100644 index 00000000..4d717891 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/tools-check-spelling.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/tools-check-spelling.png.import b/tools/configurator/assets/icons/pixelitos/128/tools-check-spelling.png.import new file mode 100644 index 00000000..83dcd7d3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/tools-check-spelling.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s30572ev4du4" +path="res://.godot/imported/tools-check-spelling.png-8681ee89272b80c0fa71edd39a44fd70.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/tools-check-spelling.png" +dest_files=["res://.godot/imported/tools-check-spelling.png-8681ee89272b80c0fa71edd39a44fd70.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/tsugaru.png b/tools/configurator/assets/icons/pixelitos/128/tsugaru.png new file mode 100644 index 00000000..074d6308 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/tsugaru.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/tsugaru.png.import b/tools/configurator/assets/icons/pixelitos/128/tsugaru.png.import new file mode 100644 index 00000000..be80e8a5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/tsugaru.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmg64cepfsjtj" +path="res://.godot/imported/tsugaru.png-cfe837125886a8bbd5f9d5534e4ea255.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/tsugaru.png" +dest_files=["res://.godot/imported/tsugaru.png-cfe837125886a8bbd5f9d5534e4ea255.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/twitter.png b/tools/configurator/assets/icons/pixelitos/128/twitter.png new file mode 100644 index 00000000..fe964706 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/twitter.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/twitter.png.import b/tools/configurator/assets/icons/pixelitos/128/twitter.png.import new file mode 100644 index 00000000..29832406 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/twitter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cahvmac2n6jmq" +path="res://.godot/imported/twitter.png-989013e6f873032bbd947314827706fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/twitter.png" +dest_files=["res://.godot/imported/twitter.png-989013e6f873032bbd947314827706fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/uget-icon.png b/tools/configurator/assets/icons/pixelitos/128/uget-icon.png new file mode 100644 index 00000000..227c5954 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/uget-icon.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/uget-icon.png.import b/tools/configurator/assets/icons/pixelitos/128/uget-icon.png.import new file mode 100644 index 00000000..1491606f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/uget-icon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7nxyb25otpc2" +path="res://.godot/imported/uget-icon.png-205ea8f97323be7f8c3d1112f3f685f3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/uget-icon.png" +dest_files=["res://.godot/imported/uget-icon.png-205ea8f97323be7f8c3d1112f3f685f3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/urbanterror.png b/tools/configurator/assets/icons/pixelitos/128/urbanterror.png new file mode 100644 index 00000000..4efb05aa Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/urbanterror.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/urbanterror.png.import b/tools/configurator/assets/icons/pixelitos/128/urbanterror.png.import new file mode 100644 index 00000000..6532deb8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/urbanterror.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1e3lwalqa4pw" +path="res://.godot/imported/urbanterror.png-bad78f0a0ba381e4151daa39a1b5c38d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/urbanterror.png" +dest_files=["res://.godot/imported/urbanterror.png-bad78f0a0ba381e4151daa39a1b5c38d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/user-info.png b/tools/configurator/assets/icons/pixelitos/128/user-info.png new file mode 100644 index 00000000..61f4ea3a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/user-info.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/user-info.png.import b/tools/configurator/assets/icons/pixelitos/128/user-info.png.import new file mode 100644 index 00000000..14d919ff --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/user-info.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyqfk3fjqqgv7" +path="res://.godot/imported/user-info.png-cb1bd67f116b9b2fe5b1fd6eda2bf512.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/user-info.png" +dest_files=["res://.godot/imported/user-info.png-cb1bd67f116b9b2fe5b1fd6eda2bf512.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/utilities-system-monitor.png b/tools/configurator/assets/icons/pixelitos/128/utilities-system-monitor.png new file mode 100644 index 00000000..b1ae3535 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/utilities-system-monitor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/utilities-system-monitor.png.import b/tools/configurator/assets/icons/pixelitos/128/utilities-system-monitor.png.import new file mode 100644 index 00000000..1cc0cddf --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/utilities-system-monitor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjh4nrwj4m0av" +path="res://.godot/imported/utilities-system-monitor.png-7cc4e34bfae4e281063940995c31855e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/utilities-system-monitor.png" +dest_files=["res://.godot/imported/utilities-system-monitor.png-7cc4e34bfae4e281063940995c31855e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/utilities-terminal.png b/tools/configurator/assets/icons/pixelitos/128/utilities-terminal.png new file mode 100644 index 00000000..c19c8d16 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/utilities-terminal.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/utilities-terminal.png.import b/tools/configurator/assets/icons/pixelitos/128/utilities-terminal.png.import new file mode 100644 index 00000000..a4a8f1a8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/utilities-terminal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ht440hreshgn" +path="res://.godot/imported/utilities-terminal.png-3f4c8dba4e1a786614aa872b6e797f14.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/utilities-terminal.png" +dest_files=["res://.godot/imported/utilities-terminal.png-3f4c8dba4e1a786614aa872b6e797f14.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/utilities-tweak-tool.png b/tools/configurator/assets/icons/pixelitos/128/utilities-tweak-tool.png new file mode 100644 index 00000000..ebaa4cac Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/utilities-tweak-tool.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/utilities-tweak-tool.png.import b/tools/configurator/assets/icons/pixelitos/128/utilities-tweak-tool.png.import new file mode 100644 index 00000000..1a132ea1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/utilities-tweak-tool.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1ovt0wu748cm" +path="res://.godot/imported/utilities-tweak-tool.png-7b9002de83d9a40fa28d790c72cfeca9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/utilities-tweak-tool.png" +dest_files=["res://.godot/imported/utilities-tweak-tool.png-7b9002de83d9a40fa28d790c72cfeca9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/ventoy.png b/tools/configurator/assets/icons/pixelitos/128/ventoy.png new file mode 100644 index 00000000..2d2687cb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/ventoy.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/ventoy.png.import b/tools/configurator/assets/icons/pixelitos/128/ventoy.png.import new file mode 100644 index 00000000..c5f441f0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/ventoy.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://juw3gnoq42dv" +path="res://.godot/imported/ventoy.png-6eac4d5386d0196f4066476b7fbff6e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/ventoy.png" +dest_files=["res://.godot/imported/ventoy.png-6eac4d5386d0196f4066476b7fbff6e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/video-display.png b/tools/configurator/assets/icons/pixelitos/128/video-display.png new file mode 100644 index 00000000..218908f2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/video-display.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/video-display.png.import b/tools/configurator/assets/icons/pixelitos/128/video-display.png.import new file mode 100644 index 00000000..1756dbdc --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/video-display.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl4luko7t7bwg" +path="res://.godot/imported/video-display.png-c1b6f093b95afead2b6839566f3c5180.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/video-display.png" +dest_files=["res://.godot/imported/video-display.png-c1b6f093b95afead2b6839566f3c5180.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/viewnior.png b/tools/configurator/assets/icons/pixelitos/128/viewnior.png new file mode 100644 index 00000000..a5512228 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/viewnior.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/viewnior.png.import b/tools/configurator/assets/icons/pixelitos/128/viewnior.png.import new file mode 100644 index 00000000..65639767 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/viewnior.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fxijto53mvrq" +path="res://.godot/imported/viewnior.png-00d0eed8a2618b1f439259a23cd69971.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/viewnior.png" +dest_files=["res://.godot/imported/viewnior.png-00d0eed8a2618b1f439259a23cd69971.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/vim.png b/tools/configurator/assets/icons/pixelitos/128/vim.png new file mode 100644 index 00000000..a7b829ff Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/vim.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/vim.png.import b/tools/configurator/assets/icons/pixelitos/128/vim.png.import new file mode 100644 index 00000000..690e6ec6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/vim.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb6brvcqwurfx" +path="res://.godot/imported/vim.png-54af0fbd03b34f70d331e252753f4b0d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/vim.png" +dest_files=["res://.godot/imported/vim.png-54af0fbd03b34f70d331e252753f4b0d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/virt-manager.png b/tools/configurator/assets/icons/pixelitos/128/virt-manager.png new file mode 100644 index 00000000..451893dd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/virt-manager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/virt-manager.png.import b/tools/configurator/assets/icons/pixelitos/128/virt-manager.png.import new file mode 100644 index 00000000..4fbd7f63 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/virt-manager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw526esrfndpe" +path="res://.godot/imported/virt-manager.png-4c68382c156970ff74ad388580f0f05a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/virt-manager.png" +dest_files=["res://.godot/imported/virt-manager.png-4c68382c156970ff74ad388580f0f05a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/virtualbox.png b/tools/configurator/assets/icons/pixelitos/128/virtualbox.png new file mode 100644 index 00000000..409dd117 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/virtualbox.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/virtualbox.png.import b/tools/configurator/assets/icons/pixelitos/128/virtualbox.png.import new file mode 100644 index 00000000..cacc41ff --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/virtualbox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kw4wv2awswxg" +path="res://.godot/imported/virtualbox.png-a1d0e94699426057117900bff99185cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/virtualbox.png" +dest_files=["res://.godot/imported/virtualbox.png-a1d0e94699426057117900bff99185cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/visual-studio-code.png b/tools/configurator/assets/icons/pixelitos/128/visual-studio-code.png new file mode 100644 index 00000000..3f03a4b1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/visual-studio-code.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/visual-studio-code.png.import b/tools/configurator/assets/icons/pixelitos/128/visual-studio-code.png.import new file mode 100644 index 00000000..2b7eb6dc --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/visual-studio-code.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blwkkxlgxunum" +path="res://.godot/imported/visual-studio-code.png-8cb5c3312df29667acc5fb4d3764487f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/visual-studio-code.png" +dest_files=["res://.godot/imported/visual-studio-code.png-8cb5c3312df29667acc5fb4d3764487f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/vita3k.png b/tools/configurator/assets/icons/pixelitos/128/vita3k.png new file mode 100644 index 00000000..46597216 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/vita3k.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/vita3k.png.import b/tools/configurator/assets/icons/pixelitos/128/vita3k.png.import new file mode 100644 index 00000000..bd8b3bbe --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/vita3k.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bum0ys5hf70g5" +path="res://.godot/imported/vita3k.png-c0ddf00e289504f46d4ea7cb61541a53.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/vita3k.png" +dest_files=["res://.godot/imported/vita3k.png-c0ddf00e289504f46d4ea7cb61541a53.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/vivaldi.png b/tools/configurator/assets/icons/pixelitos/128/vivaldi.png new file mode 100644 index 00000000..4cf42419 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/vivaldi.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/vivaldi.png.import b/tools/configurator/assets/icons/pixelitos/128/vivaldi.png.import new file mode 100644 index 00000000..4b201abd --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/vivaldi.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c42i5uojjhreb" +path="res://.godot/imported/vivaldi.png-08b49bc811e516a702512e76f5ada49b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/vivaldi.png" +dest_files=["res://.godot/imported/vivaldi.png-08b49bc811e516a702512e76f5ada49b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/vpinball.png b/tools/configurator/assets/icons/pixelitos/128/vpinball.png new file mode 100644 index 00000000..3b962514 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/vpinball.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/vpinball.png.import b/tools/configurator/assets/icons/pixelitos/128/vpinball.png.import new file mode 100644 index 00000000..d54dc507 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/vpinball.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cahtvnouxypt4" +path="res://.godot/imported/vpinball.png-a005a20f3557332ac1a29a5a7ae9dd73.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/vpinball.png" +dest_files=["res://.godot/imported/vpinball.png-a005a20f3557332ac1a29a5a7ae9dd73.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/vscodium.png b/tools/configurator/assets/icons/pixelitos/128/vscodium.png new file mode 100644 index 00000000..618aa1b8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/vscodium.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/vscodium.png.import b/tools/configurator/assets/icons/pixelitos/128/vscodium.png.import new file mode 100644 index 00000000..8d55d60f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/vscodium.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btohnnrldnepl" +path="res://.godot/imported/vscodium.png-60edfc2bc61c33288a4bf79aaac14074.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/vscodium.png" +dest_files=["res://.godot/imported/vscodium.png-60edfc2bc61c33288a4bf79aaac14074.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/waterfox.png b/tools/configurator/assets/icons/pixelitos/128/waterfox.png new file mode 100644 index 00000000..f6d54ab1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/waterfox.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/waterfox.png.import b/tools/configurator/assets/icons/pixelitos/128/waterfox.png.import new file mode 100644 index 00000000..baf0529c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/waterfox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lfpvjisp8ws0" +path="res://.godot/imported/waterfox.png-7161fbbbd9c3cc632fabbbff610a1519.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/waterfox.png" +dest_files=["res://.godot/imported/waterfox.png-7161fbbbd9c3cc632fabbbff610a1519.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/wine.png b/tools/configurator/assets/icons/pixelitos/128/wine.png new file mode 100644 index 00000000..76aadba1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/wine.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/wine.png.import b/tools/configurator/assets/icons/pixelitos/128/wine.png.import new file mode 100644 index 00000000..f3630e8a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/wine.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj1yh3m118fjb" +path="res://.godot/imported/wine.png-0806cf00eef7efa244138a2a515022c2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/wine.png" +dest_files=["res://.godot/imported/wine.png-0806cf00eef7efa244138a2a515022c2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/xarchiver.png b/tools/configurator/assets/icons/pixelitos/128/xarchiver.png new file mode 100644 index 00000000..3c7abcb6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/xarchiver.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/xarchiver.png.import b/tools/configurator/assets/icons/pixelitos/128/xarchiver.png.import new file mode 100644 index 00000000..60c3733a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/xarchiver.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://colaalo04nrc8" +path="res://.godot/imported/xarchiver.png-c34fcfb93cffd7f63c7a885ddddae424.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/xarchiver.png" +dest_files=["res://.godot/imported/xarchiver.png-c34fcfb93cffd7f63c7a885ddddae424.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/xenia.png b/tools/configurator/assets/icons/pixelitos/128/xenia.png new file mode 100644 index 00000000..b35f9117 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/xenia.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/xenia.png.import b/tools/configurator/assets/icons/pixelitos/128/xenia.png.import new file mode 100644 index 00000000..f36bd7e2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/xenia.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctk1xcv6ayi6w" +path="res://.godot/imported/xenia.png-3ecc8e3e2b61f262e8a85dc7908084c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/xenia.png" +dest_files=["res://.godot/imported/xenia.png-3ecc8e3e2b61f262e8a85dc7908084c0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/xfce-display-profile.png b/tools/configurator/assets/icons/pixelitos/128/xfce-display-profile.png new file mode 100644 index 00000000..61f4ea3a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/xfce-display-profile.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/xfce-display-profile.png.import b/tools/configurator/assets/icons/pixelitos/128/xfce-display-profile.png.import new file mode 100644 index 00000000..cc7b71b1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/xfce-display-profile.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kctd2sblmduu" +path="res://.godot/imported/xfce-display-profile.png-19c09860edf51b6fffde545d6b412620.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/xfce-display-profile.png" +dest_files=["res://.godot/imported/xfce-display-profile.png-19c09860edf51b6fffde545d6b412620.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/xfce4-logo.png b/tools/configurator/assets/icons/pixelitos/128/xfce4-logo.png new file mode 100644 index 00000000..98b156ec Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/xfce4-logo.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/xfce4-logo.png.import b/tools/configurator/assets/icons/pixelitos/128/xfce4-logo.png.import new file mode 100644 index 00000000..2764d4f4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/xfce4-logo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpoi0qtukl57e" +path="res://.godot/imported/xfce4-logo.png-3c8d711464277798c0a497263c163f5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/xfce4-logo.png" +dest_files=["res://.godot/imported/xfce4-logo.png-3c8d711464277798c0a497263c163f5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/xfce4-panel.png b/tools/configurator/assets/icons/pixelitos/128/xfce4-panel.png new file mode 100644 index 00000000..95bda2ef Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/xfce4-panel.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/xfce4-panel.png.import b/tools/configurator/assets/icons/pixelitos/128/xfce4-panel.png.import new file mode 100644 index 00000000..98633218 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/xfce4-panel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2flx4c4ibla" +path="res://.godot/imported/xfce4-panel.png-6a970d42e1206f5ba11752c09162dfdb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/xfce4-panel.png" +dest_files=["res://.godot/imported/xfce4-panel.png-6a970d42e1206f5ba11752c09162dfdb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/xfce4-settings.png b/tools/configurator/assets/icons/pixelitos/128/xfce4-settings.png new file mode 100644 index 00000000..ebaa4cac Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/xfce4-settings.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/xfce4-settings.png.import b/tools/configurator/assets/icons/pixelitos/128/xfce4-settings.png.import new file mode 100644 index 00000000..3fb6ce6f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/xfce4-settings.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpttp01hvbbwo" +path="res://.godot/imported/xfce4-settings.png-3fba9f05e4935b79327d850fb3abdf1d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/xfce4-settings.png" +dest_files=["res://.godot/imported/xfce4-settings.png-3fba9f05e4935b79327d850fb3abdf1d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-hibernate.png b/tools/configurator/assets/icons/pixelitos/128/xfsm-hibernate.png new file mode 100644 index 00000000..51d35801 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/xfsm-hibernate.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-hibernate.png.import b/tools/configurator/assets/icons/pixelitos/128/xfsm-hibernate.png.import new file mode 100644 index 00000000..8b138884 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/xfsm-hibernate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca2dfapnqvbhu" +path="res://.godot/imported/xfsm-hibernate.png-eb3c4ad1d143945dc4aa003ffe9ad825.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/xfsm-hibernate.png" +dest_files=["res://.godot/imported/xfsm-hibernate.png-eb3c4ad1d143945dc4aa003ffe9ad825.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-lock.png b/tools/configurator/assets/icons/pixelitos/128/xfsm-lock.png new file mode 100644 index 00000000..826c6329 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/xfsm-lock.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-lock.png.import b/tools/configurator/assets/icons/pixelitos/128/xfsm-lock.png.import new file mode 100644 index 00000000..cd312cc9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/xfsm-lock.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh8jxdfm700qy" +path="res://.godot/imported/xfsm-lock.png-f71e20dd912bfe248d60787db7483596.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/xfsm-lock.png" +dest_files=["res://.godot/imported/xfsm-lock.png-f71e20dd912bfe248d60787db7483596.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-logout.png b/tools/configurator/assets/icons/pixelitos/128/xfsm-logout.png new file mode 100644 index 00000000..a0efa5cc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/xfsm-logout.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-logout.png.import b/tools/configurator/assets/icons/pixelitos/128/xfsm-logout.png.import new file mode 100644 index 00000000..b75b1814 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/xfsm-logout.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl5qc77yo34ag" +path="res://.godot/imported/xfsm-logout.png-df545ffec435083f97d2e1a55d4c9482.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/xfsm-logout.png" +dest_files=["res://.godot/imported/xfsm-logout.png-df545ffec435083f97d2e1a55d4c9482.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-reboot.png b/tools/configurator/assets/icons/pixelitos/128/xfsm-reboot.png new file mode 100644 index 00000000..f3d4b35f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/xfsm-reboot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-reboot.png.import b/tools/configurator/assets/icons/pixelitos/128/xfsm-reboot.png.import new file mode 100644 index 00000000..7014016c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/xfsm-reboot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpbp0jhkgx4wa" +path="res://.godot/imported/xfsm-reboot.png-d16fcc88682e786415077560ff1fe10c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/xfsm-reboot.png" +dest_files=["res://.godot/imported/xfsm-reboot.png-d16fcc88682e786415077560ff1fe10c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-shutdown.png b/tools/configurator/assets/icons/pixelitos/128/xfsm-shutdown.png new file mode 100644 index 00000000..94300165 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/xfsm-shutdown.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-shutdown.png.import b/tools/configurator/assets/icons/pixelitos/128/xfsm-shutdown.png.import new file mode 100644 index 00000000..f8d8fa05 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/xfsm-shutdown.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tws4xarqvbiq" +path="res://.godot/imported/xfsm-shutdown.png-6f7a0e303a4a02e44cbedbc6aae6f96d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/xfsm-shutdown.png" +dest_files=["res://.godot/imported/xfsm-shutdown.png-6f7a0e303a4a02e44cbedbc6aae6f96d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-suspend-hibernate.png b/tools/configurator/assets/icons/pixelitos/128/xfsm-suspend-hibernate.png new file mode 100644 index 00000000..51d35801 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/xfsm-suspend-hibernate.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-suspend-hibernate.png.import b/tools/configurator/assets/icons/pixelitos/128/xfsm-suspend-hibernate.png.import new file mode 100644 index 00000000..565cfaa8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/xfsm-suspend-hibernate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clb8oignvghhs" +path="res://.godot/imported/xfsm-suspend-hibernate.png-3a044e23bc300ce4daf6f2c4b36569a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/xfsm-suspend-hibernate.png" +dest_files=["res://.godot/imported/xfsm-suspend-hibernate.png-3a044e23bc300ce4daf6f2c4b36569a9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-suspend.png b/tools/configurator/assets/icons/pixelitos/128/xfsm-suspend.png new file mode 100644 index 00000000..826c6329 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/xfsm-suspend.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-suspend.png.import b/tools/configurator/assets/icons/pixelitos/128/xfsm-suspend.png.import new file mode 100644 index 00000000..8d25a841 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/xfsm-suspend.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djlda22gv60gu" +path="res://.godot/imported/xfsm-suspend.png-cfe593bd66be194de1dfe7cc031489b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/xfsm-suspend.png" +dest_files=["res://.godot/imported/xfsm-suspend.png-cfe593bd66be194de1dfe7cc031489b9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-switch-user.png b/tools/configurator/assets/icons/pixelitos/128/xfsm-switch-user.png new file mode 100644 index 00000000..82d0ecac Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/xfsm-switch-user.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-switch-user.png.import b/tools/configurator/assets/icons/pixelitos/128/xfsm-switch-user.png.import new file mode 100644 index 00000000..c860be37 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/xfsm-switch-user.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm3oshwyhw0hv" +path="res://.godot/imported/xfsm-switch-user.png-fd4d0f61da789e7b3a306ea7c2872371.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/xfsm-switch-user.png" +dest_files=["res://.godot/imported/xfsm-switch-user.png-fd4d0f61da789e7b3a306ea7c2872371.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-users.png b/tools/configurator/assets/icons/pixelitos/128/xfsm-users.png new file mode 100644 index 00000000..61f4ea3a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/xfsm-users.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/xfsm-users.png.import b/tools/configurator/assets/icons/pixelitos/128/xfsm-users.png.import new file mode 100644 index 00000000..f2d85558 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/xfsm-users.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjf3tp0qwjjpa" +path="res://.godot/imported/xfsm-users.png-e4cbbe906659595119609a952fc5eeef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/xfsm-users.png" +dest_files=["res://.godot/imported/xfsm-users.png-e4cbbe906659595119609a952fc5eeef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/youtube-music.png b/tools/configurator/assets/icons/pixelitos/128/youtube-music.png new file mode 100644 index 00000000..43b21834 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/youtube-music.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/youtube-music.png.import b/tools/configurator/assets/icons/pixelitos/128/youtube-music.png.import new file mode 100644 index 00000000..4f6a3660 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/youtube-music.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bby02mc8j6rxt" +path="res://.godot/imported/youtube-music.png-a68391bc077b1092e1080aebe6b0c48c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/youtube-music.png" +dest_files=["res://.godot/imported/youtube-music.png-a68391bc077b1092e1080aebe6b0c48c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/youtube.png b/tools/configurator/assets/icons/pixelitos/128/youtube.png new file mode 100644 index 00000000..2363fd61 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/youtube.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/youtube.png.import b/tools/configurator/assets/icons/pixelitos/128/youtube.png.import new file mode 100644 index 00000000..17062fed --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/youtube.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1d6jxsn2h6xc" +path="res://.godot/imported/youtube.png-fbf043c4dc55e4142692a98c11bbcb78.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/youtube.png" +dest_files=["res://.godot/imported/youtube.png-fbf043c4dc55e4142692a98c11bbcb78.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/zsnes.png b/tools/configurator/assets/icons/pixelitos/128/zsnes.png new file mode 100644 index 00000000..824a41e7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/zsnes.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/zsnes.png.import b/tools/configurator/assets/icons/pixelitos/128/zsnes.png.import new file mode 100644 index 00000000..ecc2dc58 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/zsnes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsctvdrl5okkn" +path="res://.godot/imported/zsnes.png-8880495aee27e317a73877d10d9f27e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/zsnes.png" +dest_files=["res://.godot/imported/zsnes.png-8880495aee27e317a73877d10d9f27e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/Alacritty.png b/tools/configurator/assets/icons/pixelitos/16/Alacritty.png new file mode 100644 index 00000000..b49c4a7f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/Alacritty.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/Alacritty.png.import b/tools/configurator/assets/icons/pixelitos/16/Alacritty.png.import new file mode 100644 index 00000000..c881c286 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/Alacritty.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp7mte1plxnns" +path="res://.godot/imported/Alacritty.png-4f73319016fc7fff22cd6bbb95727a2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/Alacritty.png" +dest_files=["res://.godot/imported/Alacritty.png-4f73319016fc7fff22cd6bbb95727a2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/CMakeSetup.png b/tools/configurator/assets/icons/pixelitos/16/CMakeSetup.png new file mode 100644 index 00000000..c242ed43 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/CMakeSetup.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/CMakeSetup.png.import b/tools/configurator/assets/icons/pixelitos/16/CMakeSetup.png.import new file mode 100644 index 00000000..dc8624ff --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/CMakeSetup.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4m876fp86l7u" +path="res://.godot/imported/CMakeSetup.png-ca2e7d534d3754abdc6584a0e12d00a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/CMakeSetup.png" +dest_files=["res://.godot/imported/CMakeSetup.png-ca2e7d534d3754abdc6584a0e12d00a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/QtProject-qtcreator.png b/tools/configurator/assets/icons/pixelitos/16/QtProject-qtcreator.png new file mode 100644 index 00000000..2fbd37aa Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/QtProject-qtcreator.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/QtProject-qtcreator.png.import b/tools/configurator/assets/icons/pixelitos/16/QtProject-qtcreator.png.import new file mode 100644 index 00000000..675613fa --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/QtProject-qtcreator.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dal18xkn0kplp" +path="res://.godot/imported/QtProject-qtcreator.png-23c831a40c505fde0c349b15be55ea27.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/QtProject-qtcreator.png" +dest_files=["res://.godot/imported/QtProject-qtcreator.png-23c831a40c505fde0c349b15be55ea27.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accesories-screenshoot.png b/tools/configurator/assets/icons/pixelitos/16/accesories-screenshoot.png new file mode 100644 index 00000000..cd86d42d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accesories-screenshoot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accesories-screenshoot.png.import b/tools/configurator/assets/icons/pixelitos/16/accesories-screenshoot.png.import new file mode 100644 index 00000000..e0531885 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accesories-screenshoot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df4bk3fa337ig" +path="res://.godot/imported/accesories-screenshoot.png-374d457bc7561a8d6e5b662034b15730.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accesories-screenshoot.png" +dest_files=["res://.godot/imported/accesories-screenshoot.png-374d457bc7561a8d6e5b662034b15730.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accesories-screenshot.png b/tools/configurator/assets/icons/pixelitos/16/accesories-screenshot.png new file mode 100644 index 00000000..cd86d42d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accesories-screenshot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accesories-screenshot.png.import b/tools/configurator/assets/icons/pixelitos/16/accesories-screenshot.png.import new file mode 100644 index 00000000..b9421af9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accesories-screenshot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqkexg5kkpehj" +path="res://.godot/imported/accesories-screenshot.png-380a941577ff6c26d913fdd7f78ed615.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accesories-screenshot.png" +dest_files=["res://.godot/imported/accesories-screenshot.png-380a941577ff6c26d913fdd7f78ed615.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-calculator.png b/tools/configurator/assets/icons/pixelitos/16/accessories-calculator.png new file mode 100644 index 00000000..981d1419 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accessories-calculator.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-calculator.png.import b/tools/configurator/assets/icons/pixelitos/16/accessories-calculator.png.import new file mode 100644 index 00000000..139c5859 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accessories-calculator.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qg2fv36wcd2c" +path="res://.godot/imported/accessories-calculator.png-d15cdc6a8c179b53a6ef9124dd0b9a8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accessories-calculator.png" +dest_files=["res://.godot/imported/accessories-calculator.png-d15cdc6a8c179b53a6ef9124dd0b9a8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-clock.png b/tools/configurator/assets/icons/pixelitos/16/accessories-clock.png new file mode 100644 index 00000000..22ee5f71 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accessories-clock.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-clock.png.import b/tools/configurator/assets/icons/pixelitos/16/accessories-clock.png.import new file mode 100644 index 00000000..604a97f9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accessories-clock.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhgc5m5hjjpge" +path="res://.godot/imported/accessories-clock.png-0b1e8af43b710d232fb1a15556ef19eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accessories-clock.png" +dest_files=["res://.godot/imported/accessories-clock.png-0b1e8af43b710d232fb1a15556ef19eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-dictionary.png b/tools/configurator/assets/icons/pixelitos/16/accessories-dictionary.png new file mode 100644 index 00000000..081c51d5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accessories-dictionary.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-dictionary.png.import b/tools/configurator/assets/icons/pixelitos/16/accessories-dictionary.png.import new file mode 100644 index 00000000..a572c210 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accessories-dictionary.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy4i0deapmyn8" +path="res://.godot/imported/accessories-dictionary.png-25017c298efba7f0e304eab6bd3fe71e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accessories-dictionary.png" +dest_files=["res://.godot/imported/accessories-dictionary.png-25017c298efba7f0e304eab6bd3fe71e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-ebook-reader.png b/tools/configurator/assets/icons/pixelitos/16/accessories-ebook-reader.png new file mode 100644 index 00000000..081c51d5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accessories-ebook-reader.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-ebook-reader.png.import b/tools/configurator/assets/icons/pixelitos/16/accessories-ebook-reader.png.import new file mode 100644 index 00000000..db7849bf --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accessories-ebook-reader.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c70ppuy4beltg" +path="res://.godot/imported/accessories-ebook-reader.png-0f54fc49eec6426cbf1120611040fb32.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accessories-ebook-reader.png" +dest_files=["res://.godot/imported/accessories-ebook-reader.png-0f54fc49eec6426cbf1120611040fb32.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-notes.png b/tools/configurator/assets/icons/pixelitos/16/accessories-notes.png new file mode 100644 index 00000000..96629dea Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accessories-notes.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-notes.png.import b/tools/configurator/assets/icons/pixelitos/16/accessories-notes.png.import new file mode 100644 index 00000000..8bee69be --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accessories-notes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://taq6pykvnl76" +path="res://.godot/imported/accessories-notes.png-f233036a4c836cc7dc186338310e9fae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accessories-notes.png" +dest_files=["res://.godot/imported/accessories-notes.png-f233036a4c836cc7dc186338310e9fae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-safe.png b/tools/configurator/assets/icons/pixelitos/16/accessories-safe.png new file mode 100644 index 00000000..d992a152 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accessories-safe.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-safe.png.import b/tools/configurator/assets/icons/pixelitos/16/accessories-safe.png.import new file mode 100644 index 00000000..6ad9c32a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accessories-safe.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crc1a37v678n5" +path="res://.godot/imported/accessories-safe.png-be007724da9b72adae416ad27a714815.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accessories-safe.png" +dest_files=["res://.godot/imported/accessories-safe.png-be007724da9b72adae416ad27a714815.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-screenshoot.png b/tools/configurator/assets/icons/pixelitos/16/accessories-screenshoot.png new file mode 100644 index 00000000..cd86d42d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accessories-screenshoot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-screenshoot.png.import b/tools/configurator/assets/icons/pixelitos/16/accessories-screenshoot.png.import new file mode 100644 index 00000000..27bcb515 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accessories-screenshoot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7owhb6jau2r7" +path="res://.godot/imported/accessories-screenshoot.png-9c31584745a04aa11537232e52d0fd4a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accessories-screenshoot.png" +dest_files=["res://.godot/imported/accessories-screenshoot.png-9c31584745a04aa11537232e52d0fd4a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-text-editor.png b/tools/configurator/assets/icons/pixelitos/16/accessories-text-editor.png new file mode 100644 index 00000000..d5d5070d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accessories-text-editor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-text-editor.png.import b/tools/configurator/assets/icons/pixelitos/16/accessories-text-editor.png.import new file mode 100644 index 00000000..f991a62b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accessories-text-editor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lklv1mtf0axh" +path="res://.godot/imported/accessories-text-editor.png-9d8479e48f94dc82089f933acd74fa99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accessories-text-editor.png" +dest_files=["res://.godot/imported/accessories-text-editor.png-9d8479e48f94dc82089f933acd74fa99.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/alacarte.png b/tools/configurator/assets/icons/pixelitos/16/alacarte.png new file mode 100644 index 00000000..b9c05361 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/alacarte.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/alacarte.png.import b/tools/configurator/assets/icons/pixelitos/16/alacarte.png.import new file mode 100644 index 00000000..d729400d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/alacarte.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq62f0iqbvfct" +path="res://.godot/imported/alacarte.png-1f1500dfc98c6beb4514f5a95f95a9ef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/alacarte.png" +dest_files=["res://.godot/imported/alacarte.png-1f1500dfc98c6beb4514f5a95f95a9ef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/anatine.png b/tools/configurator/assets/icons/pixelitos/16/anatine.png new file mode 100644 index 00000000..dbb99338 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/anatine.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/anatine.png.import b/tools/configurator/assets/icons/pixelitos/16/anatine.png.import new file mode 100644 index 00000000..881654c4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/anatine.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqk2qqxx4340h" +path="res://.godot/imported/anatine.png-a45209bb5a56a70dfe74ec0c6321ab8a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/anatine.png" +dest_files=["res://.godot/imported/anatine.png-a45209bb5a56a70dfe74ec0c6321ab8a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/app.xemu.xemu.png b/tools/configurator/assets/icons/pixelitos/16/app.xemu.xemu.png new file mode 100644 index 00000000..671edffd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/app.xemu.xemu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/app.xemu.xemu.png.import b/tools/configurator/assets/icons/pixelitos/16/app.xemu.xemu.png.import new file mode 100644 index 00000000..ecb1ed54 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/app.xemu.xemu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cah8bhye14opr" +path="res://.godot/imported/app.xemu.xemu.png-13fcfb6536a11564d69d3e35a4541282.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/app.xemu.xemu.png" +dest_files=["res://.godot/imported/app.xemu.xemu.png-13fcfb6536a11564d69d3e35a4541282.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/apple.png b/tools/configurator/assets/icons/pixelitos/16/apple.png new file mode 100644 index 00000000..02c26df3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/apple.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/apple.png.import b/tools/configurator/assets/icons/pixelitos/16/apple.png.import new file mode 100644 index 00000000..9893b30c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/apple.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7wxfcyjnrjj" +path="res://.godot/imported/apple.png-268063cc94bfb7e198f59173c4edfcd0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/apple.png" +dest_files=["res://.godot/imported/apple.png-268063cc94bfb7e198f59173c4edfcd0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applets-screenshooter.png b/tools/configurator/assets/icons/pixelitos/16/applets-screenshooter.png new file mode 100644 index 00000000..cd86d42d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applets-screenshooter.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applets-screenshooter.png.import b/tools/configurator/assets/icons/pixelitos/16/applets-screenshooter.png.import new file mode 100644 index 00000000..2191265e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applets-screenshooter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fk4h3jnjjlv6" +path="res://.godot/imported/applets-screenshooter.png-b31d48502f03856dc8298a6c10b438c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applets-screenshooter.png" +dest_files=["res://.godot/imported/applets-screenshooter.png-b31d48502f03856dc8298a6c10b438c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/application-vnd.affinity-designer.png b/tools/configurator/assets/icons/pixelitos/16/application-vnd.affinity-designer.png new file mode 100644 index 00000000..c6a7d143 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/application-vnd.affinity-designer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/application-vnd.affinity-designer.png.import b/tools/configurator/assets/icons/pixelitos/16/application-vnd.affinity-designer.png.import new file mode 100644 index 00000000..881fc570 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/application-vnd.affinity-designer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxd7ka0qiyqen" +path="res://.godot/imported/application-vnd.affinity-designer.png-608cf9e7df43d44f5707c7dcfcdfaa42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/application-vnd.affinity-designer.png" +dest_files=["res://.godot/imported/application-vnd.affinity-designer.png-608cf9e7df43d44f5707c7dcfcdfaa42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-accessories.png b/tools/configurator/assets/icons/pixelitos/16/applications-accessories.png new file mode 100644 index 00000000..152475ed Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-accessories.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-accessories.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-accessories.png.import new file mode 100644 index 00000000..4ce14992 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-accessories.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kbu42vp5e6yf" +path="res://.godot/imported/applications-accessories.png-e423b33993821ebfe2d5501dfae6b714.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-accessories.png" +dest_files=["res://.godot/imported/applications-accessories.png-e423b33993821ebfe2d5501dfae6b714.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-all.png b/tools/configurator/assets/icons/pixelitos/16/applications-all.png new file mode 100644 index 00000000..4929945d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-all.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-all.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-all.png.import new file mode 100644 index 00000000..6cad19f0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-all.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ndsdoqjs7m7w" +path="res://.godot/imported/applications-all.png-ab84c72eef4f625c339e15bbcb7fa88f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-all.png" +dest_files=["res://.godot/imported/applications-all.png-ab84c72eef4f625c339e15bbcb7fa88f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-development.png b/tools/configurator/assets/icons/pixelitos/16/applications-development.png new file mode 100644 index 00000000..7d4f2b9b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-development.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-development.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-development.png.import new file mode 100644 index 00000000..b1003d8c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-development.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfeloulb2wvvn" +path="res://.godot/imported/applications-development.png-9b0fdf3eb2d9033678e74d99f3073b76.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-development.png" +dest_files=["res://.godot/imported/applications-development.png-9b0fdf3eb2d9033678e74d99f3073b76.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-education.png b/tools/configurator/assets/icons/pixelitos/16/applications-education.png new file mode 100644 index 00000000..360f0ac8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-education.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-education.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-education.png.import new file mode 100644 index 00000000..a2a556e6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-education.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o83hcgocw65q" +path="res://.godot/imported/applications-education.png-af8ff97e641a5d659a107254ca9bc81f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-education.png" +dest_files=["res://.godot/imported/applications-education.png-af8ff97e641a5d659a107254ca9bc81f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-games.png b/tools/configurator/assets/icons/pixelitos/16/applications-games.png new file mode 100644 index 00000000..e2a38b32 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-games.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-games.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-games.png.import new file mode 100644 index 00000000..a24cd9fe --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-games.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cw4ero0pfqb57" +path="res://.godot/imported/applications-games.png-6ef58e204fbc67e2e77c94965b7efd35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-games.png" +dest_files=["res://.godot/imported/applications-games.png-6ef58e204fbc67e2e77c94965b7efd35.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-graphics.png b/tools/configurator/assets/icons/pixelitos/16/applications-graphics.png new file mode 100644 index 00000000..2847df1d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-graphics.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-graphics.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-graphics.png.import new file mode 100644 index 00000000..1964bc68 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-graphics.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2nbn5e16g04t" +path="res://.godot/imported/applications-graphics.png-927f4758a56b7c23c64a0fb62536db3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-graphics.png" +dest_files=["res://.godot/imported/applications-graphics.png-927f4758a56b7c23c64a0fb62536db3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-internet.png b/tools/configurator/assets/icons/pixelitos/16/applications-internet.png new file mode 100644 index 00000000..88f0a50d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-internet.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-internet.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-internet.png.import new file mode 100644 index 00000000..5cdbb991 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-internet.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceowi5vullhhc" +path="res://.godot/imported/applications-internet.png-1ae1e3221643b136ddd72c43cc9759c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-internet.png" +dest_files=["res://.godot/imported/applications-internet.png-1ae1e3221643b136ddd72c43cc9759c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-multimedia.png b/tools/configurator/assets/icons/pixelitos/16/applications-multimedia.png new file mode 100644 index 00000000..ebce336a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-multimedia.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-multimedia.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-multimedia.png.import new file mode 100644 index 00000000..afafe803 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-multimedia.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj471sjmw24g1" +path="res://.godot/imported/applications-multimedia.png-973d3374cd06bfb4a4e417a3ad5c68a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-multimedia.png" +dest_files=["res://.godot/imported/applications-multimedia.png-973d3374cd06bfb4a4e417a3ad5c68a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-office.png b/tools/configurator/assets/icons/pixelitos/16/applications-office.png new file mode 100644 index 00000000..1dc57b9d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-office.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-office.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-office.png.import new file mode 100644 index 00000000..15fc6280 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-office.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2r2ggkeiippk" +path="res://.godot/imported/applications-office.png-782c993c03b7dbe06aad8f8d655ffb6e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-office.png" +dest_files=["res://.godot/imported/applications-office.png-782c993c03b7dbe06aad8f8d655ffb6e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-other.png b/tools/configurator/assets/icons/pixelitos/16/applications-other.png new file mode 100644 index 00000000..840d6027 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-other.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-other.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-other.png.import new file mode 100644 index 00000000..56ee6f04 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-other.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3byj4jy8psjo" +path="res://.godot/imported/applications-other.png-f970e4ce495a40f34c5a7d23e2db84bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-other.png" +dest_files=["res://.godot/imported/applications-other.png-f970e4ce495a40f34c5a7d23e2db84bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-science.png b/tools/configurator/assets/icons/pixelitos/16/applications-science.png new file mode 100644 index 00000000..360f0ac8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-science.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-science.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-science.png.import new file mode 100644 index 00000000..8032701f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-science.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7gsi6t7335yx" +path="res://.godot/imported/applications-science.png-2f04cd597c68410e2aae561bbded5585.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-science.png" +dest_files=["res://.godot/imported/applications-science.png-2f04cd597c68410e2aae561bbded5585.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-system.png b/tools/configurator/assets/icons/pixelitos/16/applications-system.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-system.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-system.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-system.png.import new file mode 100644 index 00000000..5b7ce19f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-system.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpff7sbgy1wuu" +path="res://.godot/imported/applications-system.png-36ae6cc3fc0327af3fb24616b60b3003.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-system.png" +dest_files=["res://.godot/imported/applications-system.png-36ae6cc3fc0327af3fb24616b60b3003.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-webbrowsers.png b/tools/configurator/assets/icons/pixelitos/16/applications-webbrowsers.png new file mode 100644 index 00000000..88f0a50d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-webbrowsers.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-webbrowsers.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-webbrowsers.png.import new file mode 100644 index 00000000..b304cc7d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-webbrowsers.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fmyai7stuwfv" +path="res://.godot/imported/applications-webbrowsers.png-1326c9464e925db56f2469158fb594bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-webbrowsers.png" +dest_files=["res://.godot/imported/applications-webbrowsers.png-1326c9464e925db56f2469158fb594bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/ares.png b/tools/configurator/assets/icons/pixelitos/16/ares.png new file mode 100644 index 00000000..8fd6e1ad Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/ares.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/ares.png.import b/tools/configurator/assets/icons/pixelitos/16/ares.png.import new file mode 100644 index 00000000..570a0b01 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/ares.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpvdyvuk5yhfo" +path="res://.godot/imported/ares.png-3d6b991c978717c3b4cfbd6da2613bd6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/ares.png" +dest_files=["res://.godot/imported/ares.png-3d6b991c978717c3b4cfbd6da2613bd6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/ark.png b/tools/configurator/assets/icons/pixelitos/16/ark.png new file mode 100644 index 00000000..f94f6e1e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/ark.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/ark.png.import b/tools/configurator/assets/icons/pixelitos/16/ark.png.import new file mode 100644 index 00000000..e14186f9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/ark.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm0vcd00yrlec" +path="res://.godot/imported/ark.png-5ca1741b0780302b74fda901eb23e213.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/ark.png" +dest_files=["res://.godot/imported/ark.png-5ca1741b0780302b74fda901eb23e213.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/arronax.png b/tools/configurator/assets/icons/pixelitos/16/arronax.png new file mode 100644 index 00000000..948e900e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/arronax.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/arronax.png.import b/tools/configurator/assets/icons/pixelitos/16/arronax.png.import new file mode 100644 index 00000000..50201c0f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/arronax.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5dkf0j28a1b3" +path="res://.godot/imported/arronax.png-240edb739428e77b63e80d35b977d0ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/arronax.png" +dest_files=["res://.godot/imported/arronax.png-240edb739428e77b63e80d35b977d0ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/assaultcube.png b/tools/configurator/assets/icons/pixelitos/16/assaultcube.png new file mode 100644 index 00000000..5d13aea8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/assaultcube.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/assaultcube.png.import b/tools/configurator/assets/icons/pixelitos/16/assaultcube.png.import new file mode 100644 index 00000000..65ed8c9b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/assaultcube.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpm8rk33us5fc" +path="res://.godot/imported/assaultcube.png-ca8f2be15ab4eab580c1bdb1c2c4fb37.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/assaultcube.png" +dest_files=["res://.godot/imported/assaultcube.png-ca8f2be15ab4eab580c1bdb1c2c4fb37.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/atril.png b/tools/configurator/assets/icons/pixelitos/16/atril.png new file mode 100644 index 00000000..a355d7cc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/atril.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/atril.png.import b/tools/configurator/assets/icons/pixelitos/16/atril.png.import new file mode 100644 index 00000000..5c9b5b8a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/atril.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4hihvbg07mp2" +path="res://.godot/imported/atril.png-dc035a595aadd877eff547971b8cfd47.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/atril.png" +dest_files=["res://.godot/imported/atril.png-dc035a595aadd877eff547971b8cfd47.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/audacity.png b/tools/configurator/assets/icons/pixelitos/16/audacity.png new file mode 100644 index 00000000..74b109b1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/audacity.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/audacity.png.import b/tools/configurator/assets/icons/pixelitos/16/audacity.png.import new file mode 100644 index 00000000..9ef04b0d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/audacity.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgdfqpsge47xl" +path="res://.godot/imported/audacity.png-985f018e44635e855e01aba656ba2401.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/audacity.png" +dest_files=["res://.godot/imported/audacity.png-985f018e44635e855e01aba656ba2401.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/audio-mp3.png b/tools/configurator/assets/icons/pixelitos/16/audio-mp3.png new file mode 100644 index 00000000..0157197b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/audio-mp3.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/audio-mp3.png.import b/tools/configurator/assets/icons/pixelitos/16/audio-mp3.png.import new file mode 100644 index 00000000..08e0e6ed --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/audio-mp3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c614erv18bffc" +path="res://.godot/imported/audio-mp3.png-a189f8de1c969c0f242d2924003c1033.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/audio-mp3.png" +dest_files=["res://.godot/imported/audio-mp3.png-a189f8de1c969c0f242d2924003c1033.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/avatar-default.png b/tools/configurator/assets/icons/pixelitos/16/avatar-default.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/avatar-default.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/avatar-default.png.import b/tools/configurator/assets/icons/pixelitos/16/avatar-default.png.import new file mode 100644 index 00000000..fc8ca21c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/avatar-default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qb2fx1kus7te" +path="res://.godot/imported/avatar-default.png-b976865723d050265640bc0685ce4170.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/avatar-default.png" +dest_files=["res://.godot/imported/avatar-default.png-b976865723d050265640bc0685ce4170.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/balena-etcher-electron.png b/tools/configurator/assets/icons/pixelitos/16/balena-etcher-electron.png new file mode 100644 index 00000000..66ab2bdd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/balena-etcher-electron.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/balena-etcher-electron.png.import b/tools/configurator/assets/icons/pixelitos/16/balena-etcher-electron.png.import new file mode 100644 index 00000000..80125956 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/balena-etcher-electron.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pptpptofdxlx" +path="res://.godot/imported/balena-etcher-electron.png-dcc20e0ff88ee21578e7f94c8e03b4e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/balena-etcher-electron.png" +dest_files=["res://.godot/imported/balena-etcher-electron.png-dcc20e0ff88ee21578e7f94c8e03b4e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/bigpemu.png b/tools/configurator/assets/icons/pixelitos/16/bigpemu.png new file mode 100644 index 00000000..774d09db Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/bigpemu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/bigpemu.png.import b/tools/configurator/assets/icons/pixelitos/16/bigpemu.png.import new file mode 100644 index 00000000..1e9d0feb --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/bigpemu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4vunmfvf5ca7" +path="res://.godot/imported/bigpemu.png-3b3e1d5d04b67882a6ad7c7ec5b0577a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/bigpemu.png" +dest_files=["res://.godot/imported/bigpemu.png-3b3e1d5d04b67882a6ad7c7ec5b0577a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/blender.png b/tools/configurator/assets/icons/pixelitos/16/blender.png new file mode 100644 index 00000000..baffd5a9 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/blender.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/blender.png.import b/tools/configurator/assets/icons/pixelitos/16/blender.png.import new file mode 100644 index 00000000..0a038b83 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/blender.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqetmsqg2g2o4" +path="res://.godot/imported/blender.png-6d4fec3aed0fd069f451e7c8015ceb3a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/blender.png" +dest_files=["res://.godot/imported/blender.png-6d4fec3aed0fd069f451e7c8015ceb3a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/bulky.png b/tools/configurator/assets/icons/pixelitos/16/bulky.png new file mode 100644 index 00000000..346cbdfa Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/bulky.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/bulky.png.import b/tools/configurator/assets/icons/pixelitos/16/bulky.png.import new file mode 100644 index 00000000..45cc9ced --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/bulky.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c78dxb808u52n" +path="res://.godot/imported/bulky.png-7177547fd858620bc3948a465a39d526.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/bulky.png" +dest_files=["res://.godot/imported/bulky.png-7177547fd858620bc3948a465a39d526.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/chrome-beta.png b/tools/configurator/assets/icons/pixelitos/16/chrome-beta.png new file mode 100644 index 00000000..5cad7251 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/chrome-beta.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/chrome-beta.png.import b/tools/configurator/assets/icons/pixelitos/16/chrome-beta.png.import new file mode 100644 index 00000000..6bc41c00 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/chrome-beta.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j7p43fukafx5" +path="res://.godot/imported/chrome-beta.png-23900d8616b1266a44f9202ac49fdbdf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/chrome-beta.png" +dest_files=["res://.godot/imported/chrome-beta.png-23900d8616b1266a44f9202ac49fdbdf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/chrome.png b/tools/configurator/assets/icons/pixelitos/16/chrome.png new file mode 100644 index 00000000..c9654dd3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/chrome.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/chrome.png.import b/tools/configurator/assets/icons/pixelitos/16/chrome.png.import new file mode 100644 index 00000000..d33744b6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/chrome.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn4yl661c2ncd" +path="res://.godot/imported/chrome.png-5b2ee69b5e818878328498ea08fad74c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/chrome.png" +dest_files=["res://.godot/imported/chrome.png-5b2ee69b5e818878328498ea08fad74c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cinnamon-virtual-keyboard.png b/tools/configurator/assets/icons/pixelitos/16/cinnamon-virtual-keyboard.png new file mode 100644 index 00000000..2a577eb2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cinnamon-virtual-keyboard.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cinnamon-virtual-keyboard.png.import b/tools/configurator/assets/icons/pixelitos/16/cinnamon-virtual-keyboard.png.import new file mode 100644 index 00000000..b732545e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cinnamon-virtual-keyboard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0y0jvvhy4gvv" +path="res://.godot/imported/cinnamon-virtual-keyboard.png-5464848e485ae035a16b3856ef20ff6e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cinnamon-virtual-keyboard.png" +dest_files=["res://.godot/imported/cinnamon-virtual-keyboard.png-5464848e485ae035a16b3856ef20ff6e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/clementine.png b/tools/configurator/assets/icons/pixelitos/16/clementine.png new file mode 100644 index 00000000..a97ea890 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/clementine.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/clementine.png.import b/tools/configurator/assets/icons/pixelitos/16/clementine.png.import new file mode 100644 index 00000000..89377ec3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/clementine.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uldnpaifnuim" +path="res://.godot/imported/clementine.png-154ec7d9cceee10691007524b4f53710.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/clementine.png" +dest_files=["res://.godot/imported/clementine.png-154ec7d9cceee10691007524b4f53710.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cmake-gui.png b/tools/configurator/assets/icons/pixelitos/16/cmake-gui.png new file mode 100644 index 00000000..c242ed43 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cmake-gui.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cmake-gui.png.import b/tools/configurator/assets/icons/pixelitos/16/cmake-gui.png.import new file mode 100644 index 00000000..19133270 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cmake-gui.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvfd1n84dyicx" +path="res://.godot/imported/cmake-gui.png-8acb36d92b0f082f8c5dbdf034ed2e18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cmake-gui.png" +dest_files=["res://.godot/imported/cmake-gui.png-8acb36d92b0f082f8c5dbdf034ed2e18.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cmake.png b/tools/configurator/assets/icons/pixelitos/16/cmake.png new file mode 100644 index 00000000..c242ed43 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cmake.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cmake.png.import b/tools/configurator/assets/icons/pixelitos/16/cmake.png.import new file mode 100644 index 00000000..34f31c17 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cmake.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmj2oseon2h1y" +path="res://.godot/imported/cmake.png-5a9cb68a9462cd35e54ff4bcaf3fd09b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cmake.png" +dest_files=["res://.godot/imported/cmake.png-5a9cb68a9462cd35e54ff4bcaf3fd09b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/code-oss.png b/tools/configurator/assets/icons/pixelitos/16/code-oss.png new file mode 100644 index 00000000..d45bde63 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/code-oss.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/code-oss.png.import b/tools/configurator/assets/icons/pixelitos/16/code-oss.png.import new file mode 100644 index 00000000..cd30a1a5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/code-oss.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8c8888cu0crm" +path="res://.godot/imported/code-oss.png-f37359e120517e19f20f2f973c2f60d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/code-oss.png" +dest_files=["res://.godot/imported/code-oss.png-f37359e120517e19f20f2f973c2f60d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/compton.png b/tools/configurator/assets/icons/pixelitos/16/compton.png new file mode 100644 index 00000000..6299d8e1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/compton.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/compton.png.import b/tools/configurator/assets/icons/pixelitos/16/compton.png.import new file mode 100644 index 00000000..a40b463c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/compton.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da7lj1ulomd2q" +path="res://.godot/imported/compton.png-ed773ef0608538f53171651279a12b00.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/compton.png" +dest_files=["res://.godot/imported/compton.png-ed773ef0608538f53171651279a12b00.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/computer.png b/tools/configurator/assets/icons/pixelitos/16/computer.png new file mode 100644 index 00000000..ce878051 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/computer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/computer.png.import b/tools/configurator/assets/icons/pixelitos/16/computer.png.import new file mode 100644 index 00000000..5bca52a7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/computer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kvq6bgcrwi2x" +path="res://.godot/imported/computer.png-39ca132789ec2f0720481aa75c7bac70.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/computer.png" +dest_files=["res://.godot/imported/computer.png-39ca132789ec2f0720481aa75c7bac70.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-applets.png b/tools/configurator/assets/icons/pixelitos/16/cs-applets.png new file mode 100644 index 00000000..e34eac87 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-applets.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-applets.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-applets.png.import new file mode 100644 index 00000000..22c94946 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-applets.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbxhu1gloni8f" +path="res://.godot/imported/cs-applets.png-5f4c9374553176a6793a7adad07fdc7b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-applets.png" +dest_files=["res://.godot/imported/cs-applets.png-5f4c9374553176a6793a7adad07fdc7b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-backgrounds.png b/tools/configurator/assets/icons/pixelitos/16/cs-backgrounds.png new file mode 100644 index 00000000..64aaa26d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-backgrounds.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-backgrounds.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-backgrounds.png.import new file mode 100644 index 00000000..b325e5d9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-backgrounds.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wxkavajnu478" +path="res://.godot/imported/cs-backgrounds.png-24520abb08b4a161acb0a39c18a5f0b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-backgrounds.png" +dest_files=["res://.godot/imported/cs-backgrounds.png-24520abb08b4a161acb0a39c18a5f0b2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-admin.png b/tools/configurator/assets/icons/pixelitos/16/cs-cat-admin.png new file mode 100644 index 00000000..4e39d67b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-cat-admin.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-admin.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-cat-admin.png.import new file mode 100644 index 00000000..b0b75053 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-cat-admin.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rsxowetv8gk1" +path="res://.godot/imported/cs-cat-admin.png-952fa780f506847750ab2df0f603d010.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-cat-admin.png" +dest_files=["res://.godot/imported/cs-cat-admin.png-952fa780f506847750ab2df0f603d010.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-appearance.png b/tools/configurator/assets/icons/pixelitos/16/cs-cat-appearance.png new file mode 100644 index 00000000..31f776b4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-cat-appearance.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-appearance.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-cat-appearance.png.import new file mode 100644 index 00000000..780f334b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-cat-appearance.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://comvwewjsgafy" +path="res://.godot/imported/cs-cat-appearance.png-3d743c0460d097951f2e56b1b3ca704e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-cat-appearance.png" +dest_files=["res://.godot/imported/cs-cat-appearance.png-3d743c0460d097951f2e56b1b3ca704e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-hardware.png b/tools/configurator/assets/icons/pixelitos/16/cs-cat-hardware.png new file mode 100644 index 00000000..2a577eb2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-cat-hardware.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-hardware.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-cat-hardware.png.import new file mode 100644 index 00000000..8799c32f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-cat-hardware.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5vdvodg28i3y" +path="res://.godot/imported/cs-cat-hardware.png-09d1808df11be1533e435b6834177ded.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-cat-hardware.png" +dest_files=["res://.godot/imported/cs-cat-hardware.png-09d1808df11be1533e435b6834177ded.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-prefs.png b/tools/configurator/assets/icons/pixelitos/16/cs-cat-prefs.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-cat-prefs.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-prefs.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-cat-prefs.png.import new file mode 100644 index 00000000..d83568c6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-cat-prefs.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bapaqa1011qnr" +path="res://.godot/imported/cs-cat-prefs.png-4990e99fff6bd2940790c675d6bb83a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-cat-prefs.png" +dest_files=["res://.godot/imported/cs-cat-prefs.png-4990e99fff6bd2940790c675d6bb83a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-tweaks.png b/tools/configurator/assets/icons/pixelitos/16/cs-cat-tweaks.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-cat-tweaks.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-tweaks.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-cat-tweaks.png.import new file mode 100644 index 00000000..76112210 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-cat-tweaks.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cacfgm8mma57o" +path="res://.godot/imported/cs-cat-tweaks.png-063c1c9db1689d6843ce265489bb0557.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-cat-tweaks.png" +dest_files=["res://.godot/imported/cs-cat-tweaks.png-063c1c9db1689d6843ce265489bb0557.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-color.png b/tools/configurator/assets/icons/pixelitos/16/cs-color.png new file mode 100644 index 00000000..d6de2445 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-color.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-color.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-color.png.import new file mode 100644 index 00000000..da4c8d01 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-color.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tq1804obkvj7" +path="res://.godot/imported/cs-color.png-909c93909d1d56c7c7e4daae2a60fe11.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-color.png" +dest_files=["res://.godot/imported/cs-color.png-909c93909d1d56c7c7e4daae2a60fe11.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-date-time.png b/tools/configurator/assets/icons/pixelitos/16/cs-date-time.png new file mode 100644 index 00000000..22ee5f71 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-date-time.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-date-time.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-date-time.png.import new file mode 100644 index 00000000..f0551c08 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-date-time.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dleg3thvrytr" +path="res://.godot/imported/cs-date-time.png-4dcb5d9952a0b31a7df548aa81b62ea2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-date-time.png" +dest_files=["res://.godot/imported/cs-date-time.png-4dcb5d9952a0b31a7df548aa81b62ea2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-default-applications.png b/tools/configurator/assets/icons/pixelitos/16/cs-default-applications.png new file mode 100644 index 00000000..0b273a9f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-default-applications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-default-applications.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-default-applications.png.import new file mode 100644 index 00000000..3b925d7e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-default-applications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6clxu254xvyg" +path="res://.godot/imported/cs-default-applications.png-b03412950c6411c61301ece5e22a8f8b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-default-applications.png" +dest_files=["res://.godot/imported/cs-default-applications.png-b03412950c6411c61301ece5e22a8f8b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-desklets.png b/tools/configurator/assets/icons/pixelitos/16/cs-desklets.png new file mode 100644 index 00000000..96629dea Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-desklets.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-desklets.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-desklets.png.import new file mode 100644 index 00000000..02558b9d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-desklets.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yyrypylbbsaa" +path="res://.godot/imported/cs-desklets.png-32a0ae43a99c8cbcc47e8dc9dc885894.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-desklets.png" +dest_files=["res://.godot/imported/cs-desklets.png-32a0ae43a99c8cbcc47e8dc9dc885894.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-desktop-effects.png b/tools/configurator/assets/icons/pixelitos/16/cs-desktop-effects.png new file mode 100644 index 00000000..9bc09aa2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-desktop-effects.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-desktop-effects.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-desktop-effects.png.import new file mode 100644 index 00000000..fb17036d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-desktop-effects.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhok6egt86cl1" +path="res://.godot/imported/cs-desktop-effects.png-ef385e28915ee0afe168b930cea60277.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-desktop-effects.png" +dest_files=["res://.godot/imported/cs-desktop-effects.png-ef385e28915ee0afe168b930cea60277.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-desktop.png b/tools/configurator/assets/icons/pixelitos/16/cs-desktop.png new file mode 100644 index 00000000..7c519310 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-desktop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-desktop.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-desktop.png.import new file mode 100644 index 00000000..64a5df5a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-desktop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxs44uafmo1bl" +path="res://.godot/imported/cs-desktop.png-c298f0e528d42a9a79f68ce52f529839.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-desktop.png" +dest_files=["res://.godot/imported/cs-desktop.png-c298f0e528d42a9a79f68ce52f529839.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-details.png b/tools/configurator/assets/icons/pixelitos/16/cs-details.png new file mode 100644 index 00000000..44c13f02 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-details.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-details.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-details.png.import new file mode 100644 index 00000000..0680f94f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-details.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4n5eigk3qda2" +path="res://.godot/imported/cs-details.png-0874a3f55a9156b0be2d12acc53b4d13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-details.png" +dest_files=["res://.godot/imported/cs-details.png-0874a3f55a9156b0be2d12acc53b4d13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-display.png b/tools/configurator/assets/icons/pixelitos/16/cs-display.png new file mode 100644 index 00000000..ce878051 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-display.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-display.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-display.png.import new file mode 100644 index 00000000..72acc366 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-display.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw1efkf7j02km" +path="res://.godot/imported/cs-display.png-6a832a435f9752ae67088455a5bc0313.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-display.png" +dest_files=["res://.godot/imported/cs-display.png-6a832a435f9752ae67088455a5bc0313.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-extensions.png b/tools/configurator/assets/icons/pixelitos/16/cs-extensions.png new file mode 100644 index 00000000..0e26eff5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-extensions.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-extensions.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-extensions.png.import new file mode 100644 index 00000000..061fe4d5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-extensions.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bla1gi614wmcd" +path="res://.godot/imported/cs-extensions.png-f61ea0e53bc567e432501e2e52dd7fb4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-extensions.png" +dest_files=["res://.godot/imported/cs-extensions.png-f61ea0e53bc567e432501e2e52dd7fb4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-fonts.png b/tools/configurator/assets/icons/pixelitos/16/cs-fonts.png new file mode 100644 index 00000000..7ed03533 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-fonts.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-fonts.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-fonts.png.import new file mode 100644 index 00000000..e5305db0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-fonts.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbm6afpm1dumc" +path="res://.godot/imported/cs-fonts.png-78162ed6819ea3828af8b0b752f673b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-fonts.png" +dest_files=["res://.godot/imported/cs-fonts.png-78162ed6819ea3828af8b0b752f673b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-general.png b/tools/configurator/assets/icons/pixelitos/16/cs-general.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-general.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-general.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-general.png.import new file mode 100644 index 00000000..9fbe109b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-general.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4oxfl5lny1qh" +path="res://.godot/imported/cs-general.png-8300c75cbe4d0bf640f0f7624b05a200.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-general.png" +dest_files=["res://.godot/imported/cs-general.png-8300c75cbe4d0bf640f0f7624b05a200.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-keyboard.png b/tools/configurator/assets/icons/pixelitos/16/cs-keyboard.png new file mode 100644 index 00000000..2a577eb2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-keyboard.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-keyboard.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-keyboard.png.import new file mode 100644 index 00000000..9994af42 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-keyboard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxp0hekahgcni" +path="res://.godot/imported/cs-keyboard.png-c9c1cc68a3be91e0096425fe73957282.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-keyboard.png" +dest_files=["res://.godot/imported/cs-keyboard.png-c9c1cc68a3be91e0096425fe73957282.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-mouse.png b/tools/configurator/assets/icons/pixelitos/16/cs-mouse.png new file mode 100644 index 00000000..f22eacca Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-mouse.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-mouse.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-mouse.png.import new file mode 100644 index 00000000..494546b3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-mouse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp077nl0led6q" +path="res://.godot/imported/cs-mouse.png-75bec4b241928bf31bd7edceb6b1560a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-mouse.png" +dest_files=["res://.godot/imported/cs-mouse.png-75bec4b241928bf31bd7edceb6b1560a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-network.png b/tools/configurator/assets/icons/pixelitos/16/cs-network.png new file mode 100644 index 00000000..24cc0d0f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-network.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-network.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-network.png.import new file mode 100644 index 00000000..de6d4e0f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-network.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqmenjsyjudxk" +path="res://.godot/imported/cs-network.png-bb4f562efbd26272c3505ad56cd3aa78.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-network.png" +dest_files=["res://.godot/imported/cs-network.png-bb4f562efbd26272c3505ad56cd3aa78.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-notifications.png b/tools/configurator/assets/icons/pixelitos/16/cs-notifications.png new file mode 100644 index 00000000..15912542 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-notifications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-notifications.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-notifications.png.import new file mode 100644 index 00000000..18d1c38b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-notifications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsf5wwyw35s4n" +path="res://.godot/imported/cs-notifications.png-0b054292f13db414e6a8bb693df25739.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-notifications.png" +dest_files=["res://.godot/imported/cs-notifications.png-0b054292f13db414e6a8bb693df25739.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-online-accounts.png b/tools/configurator/assets/icons/pixelitos/16/cs-online-accounts.png new file mode 100644 index 00000000..a00b8492 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-online-accounts.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-online-accounts.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-online-accounts.png.import new file mode 100644 index 00000000..c0ea164e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-online-accounts.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bht5o2hovb281" +path="res://.godot/imported/cs-online-accounts.png-8cb90b644d0bb01e55439015bdcacda9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-online-accounts.png" +dest_files=["res://.godot/imported/cs-online-accounts.png-8cb90b644d0bb01e55439015bdcacda9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-overview.png b/tools/configurator/assets/icons/pixelitos/16/cs-overview.png new file mode 100644 index 00000000..23dbeb39 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-overview.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-overview.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-overview.png.import new file mode 100644 index 00000000..1fb62d96 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-overview.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bptusu0iq3vgj" +path="res://.godot/imported/cs-overview.png-e055bc4b20beedfbd0156ec826a07584.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-overview.png" +dest_files=["res://.godot/imported/cs-overview.png-e055bc4b20beedfbd0156ec826a07584.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-panel.png b/tools/configurator/assets/icons/pixelitos/16/cs-panel.png new file mode 100644 index 00000000..6c71f919 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-panel.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-panel.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-panel.png.import new file mode 100644 index 00000000..b218f6a9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-panel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gxnotx43ues0" +path="res://.godot/imported/cs-panel.png-3e66a63765a10880323643678e6bec64.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-panel.png" +dest_files=["res://.godot/imported/cs-panel.png-3e66a63765a10880323643678e6bec64.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-power.png b/tools/configurator/assets/icons/pixelitos/16/cs-power.png new file mode 100644 index 00000000..035ae5ef Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-power.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-power.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-power.png.import new file mode 100644 index 00000000..7bd9a1c0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-power.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3p8cxkpk48to" +path="res://.godot/imported/cs-power.png-147adb8ee1b4cfcafe8566c43a723036.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-power.png" +dest_files=["res://.godot/imported/cs-power.png-147adb8ee1b4cfcafe8566c43a723036.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-printer.png b/tools/configurator/assets/icons/pixelitos/16/cs-printer.png new file mode 100644 index 00000000..2c8c07a4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-printer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-printer.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-printer.png.import new file mode 100644 index 00000000..79177f74 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-printer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb05nefitlg1y" +path="res://.godot/imported/cs-printer.png-ac01f7d84f38ccdafc0b57488b2b2701.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-printer.png" +dest_files=["res://.godot/imported/cs-printer.png-ac01f7d84f38ccdafc0b57488b2b2701.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-privacy.png b/tools/configurator/assets/icons/pixelitos/16/cs-privacy.png new file mode 100644 index 00000000..50b05eef Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-privacy.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-privacy.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-privacy.png.import new file mode 100644 index 00000000..04fdd987 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-privacy.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://26wnn24jivcv" +path="res://.godot/imported/cs-privacy.png-6cbad09c65166541c7b4f9ae224bddfd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-privacy.png" +dest_files=["res://.godot/imported/cs-privacy.png-6cbad09c65166541c7b4f9ae224bddfd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-screensaver.png b/tools/configurator/assets/icons/pixelitos/16/cs-screensaver.png new file mode 100644 index 00000000..5e845382 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-screensaver.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-screensaver.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-screensaver.png.import new file mode 100644 index 00000000..5cc8a162 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-screensaver.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmpr5j4un1a23" +path="res://.godot/imported/cs-screensaver.png-37de338acf5f97a1a6d334ee90945065.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-screensaver.png" +dest_files=["res://.godot/imported/cs-screensaver.png-37de338acf5f97a1a6d334ee90945065.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-sound.png b/tools/configurator/assets/icons/pixelitos/16/cs-sound.png new file mode 100644 index 00000000..13750d5e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-sound.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-sound.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-sound.png.import new file mode 100644 index 00000000..f3050c4a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-sound.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3b1jh5rfyvvu" +path="res://.godot/imported/cs-sound.png-528cbae3ff7849345395c2b0d5723b75.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-sound.png" +dest_files=["res://.godot/imported/cs-sound.png-528cbae3ff7849345395c2b0d5723b75.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-startup-programs.png b/tools/configurator/assets/icons/pixelitos/16/cs-startup-programs.png new file mode 100644 index 00000000..65460949 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-startup-programs.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-startup-programs.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-startup-programs.png.import new file mode 100644 index 00000000..d8836dde --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-startup-programs.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by5qvudsemmku" +path="res://.godot/imported/cs-startup-programs.png-16fa0aab4bc867d4fb0c4b27e7b53dd8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-startup-programs.png" +dest_files=["res://.godot/imported/cs-startup-programs.png-16fa0aab4bc867d4fb0c4b27e7b53dd8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-tablet.png b/tools/configurator/assets/icons/pixelitos/16/cs-tablet.png new file mode 100644 index 00000000..79046b27 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-tablet.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-tablet.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-tablet.png.import new file mode 100644 index 00000000..4c56b80e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-tablet.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tm4py8urlf7p" +path="res://.godot/imported/cs-tablet.png-6b4d9d79c8d29eed9f262a37ed601057.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-tablet.png" +dest_files=["res://.godot/imported/cs-tablet.png-6b4d9d79c8d29eed9f262a37ed601057.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-themes.png b/tools/configurator/assets/icons/pixelitos/16/cs-themes.png new file mode 100644 index 00000000..31f776b4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-themes.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-themes.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-themes.png.import new file mode 100644 index 00000000..4fde8d0a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-themes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cegfc6hhvqts5" +path="res://.godot/imported/cs-themes.png-2ecf9ea40fd21152606c434f0d488c1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-themes.png" +dest_files=["res://.godot/imported/cs-themes.png-2ecf9ea40fd21152606c434f0d488c1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-tiling.png b/tools/configurator/assets/icons/pixelitos/16/cs-tiling.png new file mode 100644 index 00000000..99190b36 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-tiling.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-tiling.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-tiling.png.import new file mode 100644 index 00000000..fad8a2e9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-tiling.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cot1lfrqa78qx" +path="res://.godot/imported/cs-tiling.png-8c5866d3c6e61ad5590add12698cfbc9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-tiling.png" +dest_files=["res://.godot/imported/cs-tiling.png-8c5866d3c6e61ad5590add12698cfbc9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-universal-access.png b/tools/configurator/assets/icons/pixelitos/16/cs-universal-access.png new file mode 100644 index 00000000..71112dbc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-universal-access.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-universal-access.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-universal-access.png.import new file mode 100644 index 00000000..d4b19dd1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-universal-access.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cicts6tjfyvfb" +path="res://.godot/imported/cs-universal-access.png-5c3906658657307ad0964f073acdb43a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-universal-access.png" +dest_files=["res://.godot/imported/cs-universal-access.png-5c3906658657307ad0964f073acdb43a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-user.png b/tools/configurator/assets/icons/pixelitos/16/cs-user.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-user.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-user.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-user.png.import new file mode 100644 index 00000000..837371c7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-user.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuqxwr2at6wsq" +path="res://.godot/imported/cs-user.png-8d141f8b1cd03beace4a4a180388a361.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-user.png" +dest_files=["res://.godot/imported/cs-user.png-8d141f8b1cd03beace4a4a180388a361.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-windows.png b/tools/configurator/assets/icons/pixelitos/16/cs-windows.png new file mode 100644 index 00000000..004f34cd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-windows.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-windows.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-windows.png.import new file mode 100644 index 00000000..423210c2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-windows.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1nfw28nh4le3" +path="res://.godot/imported/cs-windows.png-fee03d3f2984e64d008e22758abd8000.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-windows.png" +dest_files=["res://.godot/imported/cs-windows.png-fee03d3f2984e64d008e22758abd8000.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-workspaces.png b/tools/configurator/assets/icons/pixelitos/16/cs-workspaces.png new file mode 100644 index 00000000..a03ea0be Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-workspaces.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-workspaces.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-workspaces.png.import new file mode 100644 index 00000000..105b5f09 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-workspaces.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfrgl20wtmkik" +path="res://.godot/imported/cs-workspaces.png-0e8fb0bee4ce4614cd63897237de2600.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-workspaces.png" +dest_files=["res://.godot/imported/cs-workspaces.png-0e8fb0bee4ce4614cd63897237de2600.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/desktop-environment-xfce.png b/tools/configurator/assets/icons/pixelitos/16/desktop-environment-xfce.png new file mode 100644 index 00000000..44b33e80 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/desktop-environment-xfce.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/desktop-environment-xfce.png.import b/tools/configurator/assets/icons/pixelitos/16/desktop-environment-xfce.png.import new file mode 100644 index 00000000..fdae22e7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/desktop-environment-xfce.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clfekmume7u1n" +path="res://.godot/imported/desktop-environment-xfce.png-0399aecffd9af079bb6f184d85ed7366.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/desktop-environment-xfce.png" +dest_files=["res://.godot/imported/desktop-environment-xfce.png-0399aecffd9af079bb6f184d85ed7366.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/dialog-password.png b/tools/configurator/assets/icons/pixelitos/16/dialog-password.png new file mode 100644 index 00000000..ec757ca1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/dialog-password.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/dialog-password.png.import b/tools/configurator/assets/icons/pixelitos/16/dialog-password.png.import new file mode 100644 index 00000000..b430e078 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/dialog-password.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://swykt5ar3ylx" +path="res://.godot/imported/dialog-password.png-d577e23ece8e1e1cd8943c7aa0d0073a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/dialog-password.png" +dest_files=["res://.godot/imported/dialog-password.png-d577e23ece8e1e1cd8943c7aa0d0073a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/discord.png b/tools/configurator/assets/icons/pixelitos/16/discord.png new file mode 100644 index 00000000..2fbcf2da Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/discord.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/discord.png.import b/tools/configurator/assets/icons/pixelitos/16/discord.png.import new file mode 100644 index 00000000..add476d7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/discord.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcif46g20067f" +path="res://.godot/imported/discord.png-3cd609ca9992195c2a1f5e00ce795122.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/discord.png" +dest_files=["res://.godot/imported/discord.png-3cd609ca9992195c2a1f5e00ce795122.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/disk-usage-analyzer.png b/tools/configurator/assets/icons/pixelitos/16/disk-usage-analyzer.png new file mode 100644 index 00000000..2831a1f7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/disk-usage-analyzer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/disk-usage-analyzer.png.import b/tools/configurator/assets/icons/pixelitos/16/disk-usage-analyzer.png.import new file mode 100644 index 00000000..11314049 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/disk-usage-analyzer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4aysp57oy2qu" +path="res://.godot/imported/disk-usage-analyzer.png-09e4c0b57bad50aba44f2c61c6cabb50.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/disk-usage-analyzer.png" +dest_files=["res://.godot/imported/disk-usage-analyzer.png-09e4c0b57bad50aba44f2c61c6cabb50.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/document-open-recent.png b/tools/configurator/assets/icons/pixelitos/16/document-open-recent.png new file mode 100644 index 00000000..22ee5f71 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/document-open-recent.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/document-open-recent.png.import b/tools/configurator/assets/icons/pixelitos/16/document-open-recent.png.import new file mode 100644 index 00000000..20b7b5eb --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/document-open-recent.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blbxr0vki6yyc" +path="res://.godot/imported/document-open-recent.png-69e9f5f0a11a00d89f690535bcf5f099.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/document-open-recent.png" +dest_files=["res://.godot/imported/document-open-recent.png-69e9f5f0a11a00d89f690535bcf5f099.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/dosbox-x.png b/tools/configurator/assets/icons/pixelitos/16/dosbox-x.png new file mode 100644 index 00000000..527ffc5b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/dosbox-x.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/dosbox-x.png.import b/tools/configurator/assets/icons/pixelitos/16/dosbox-x.png.import new file mode 100644 index 00000000..2cbc3b77 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/dosbox-x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mdek5qmpdf4h" +path="res://.godot/imported/dosbox-x.png-33a7fb0579b7ff54220b4747f2b76779.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/dosbox-x.png" +dest_files=["res://.godot/imported/dosbox-x.png-33a7fb0579b7ff54220b4747f2b76779.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/dosbox.png b/tools/configurator/assets/icons/pixelitos/16/dosbox.png new file mode 100644 index 00000000..116286b6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/dosbox.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/dosbox.png.import b/tools/configurator/assets/icons/pixelitos/16/dosbox.png.import new file mode 100644 index 00000000..ed27eccc --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/dosbox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfpuv2r0stram" +path="res://.godot/imported/dosbox.png-907b8e54362a5d70e5a4465d0cd80a8d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/dosbox.png" +dest_files=["res://.godot/imported/dosbox.png-907b8e54362a5d70e5a4465d0cd80a8d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/drive-removable-media.png b/tools/configurator/assets/icons/pixelitos/16/drive-removable-media.png new file mode 100644 index 00000000..6452e304 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/drive-removable-media.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/drive-removable-media.png.import b/tools/configurator/assets/icons/pixelitos/16/drive-removable-media.png.import new file mode 100644 index 00000000..a6c2d5d0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/drive-removable-media.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cal5bsvdurlel" +path="res://.godot/imported/drive-removable-media.png-a4b197481068753db220d4f2ec3b39c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/drive-removable-media.png" +dest_files=["res://.godot/imported/drive-removable-media.png-a4b197481068753db220d4f2ec3b39c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/duck_tank.png b/tools/configurator/assets/icons/pixelitos/16/duck_tank.png new file mode 100644 index 00000000..eee34998 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/duck_tank.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/duck_tank.png.import b/tools/configurator/assets/icons/pixelitos/16/duck_tank.png.import new file mode 100644 index 00000000..373e2a06 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/duck_tank.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sum6qjymlg76" +path="res://.godot/imported/duck_tank.png-42c0e635589e44802aa3a79a1c280220.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/duck_tank.png" +dest_files=["res://.godot/imported/duck_tank.png-42c0e635589e44802aa3a79a1c280220.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/duckstation-nogui.png b/tools/configurator/assets/icons/pixelitos/16/duckstation-nogui.png new file mode 100644 index 00000000..c87c1910 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/duckstation-nogui.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/duckstation-nogui.png.import b/tools/configurator/assets/icons/pixelitos/16/duckstation-nogui.png.import new file mode 100644 index 00000000..05ebe109 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/duckstation-nogui.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1ft7nlax58wy" +path="res://.godot/imported/duckstation-nogui.png-4503a55f82125853bf53b363320a022e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/duckstation-nogui.png" +dest_files=["res://.godot/imported/duckstation-nogui.png-4503a55f82125853bf53b363320a022e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/duckstation.png b/tools/configurator/assets/icons/pixelitos/16/duckstation.png new file mode 100644 index 00000000..c87c1910 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/duckstation.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/duckstation.png.import b/tools/configurator/assets/icons/pixelitos/16/duckstation.png.import new file mode 100644 index 00000000..1997ad1a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/duckstation.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cglkkre7ti4m2" +path="res://.godot/imported/duckstation.png-08a97dc99ac8637772054763e9a00856.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/duckstation.png" +dest_files=["res://.godot/imported/duckstation.png-08a97dc99ac8637772054763e9a00856.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/emacs.png b/tools/configurator/assets/icons/pixelitos/16/emacs.png new file mode 100644 index 00000000..c8f045ca Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/emacs.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/emacs.png.import b/tools/configurator/assets/icons/pixelitos/16/emacs.png.import new file mode 100644 index 00000000..63891fbf --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/emacs.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvjpjyn072jtp" +path="res://.godot/imported/emacs.png-06c5063e93233a39afcab46ee5b244cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/emacs.png" +dest_files=["res://.godot/imported/emacs.png-06c5063e93233a39afcab46ee5b244cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/email.png b/tools/configurator/assets/icons/pixelitos/16/email.png new file mode 100644 index 00000000..9533dc87 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/email.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/email.png.import b/tools/configurator/assets/icons/pixelitos/16/email.png.import new file mode 100644 index 00000000..e01a5406 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/email.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dic0ajmwd23bl" +path="res://.godot/imported/email.png-ca04bce90d02c13fdfc7fd5bd5264916.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/email.png" +dest_files=["res://.godot/imported/email.png-ca04bce90d02c13fdfc7fd5bd5264916.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/es-de.png b/tools/configurator/assets/icons/pixelitos/16/es-de.png new file mode 100644 index 00000000..23c3fd70 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/es-de.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/es-de.png.import b/tools/configurator/assets/icons/pixelitos/16/es-de.png.import new file mode 100644 index 00000000..9311237b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/es-de.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cu4iuhbkj6u7i" +path="res://.godot/imported/es-de.png-a3db8ee09854beeb36717e8adc59667e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/es-de.png" +dest_files=["res://.godot/imported/es-de.png-a3db8ee09854beeb36717e8adc59667e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/eu.vcmi.VCMI.png b/tools/configurator/assets/icons/pixelitos/16/eu.vcmi.VCMI.png new file mode 100644 index 00000000..af10d7e4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/eu.vcmi.VCMI.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/eu.vcmi.VCMI.png.import b/tools/configurator/assets/icons/pixelitos/16/eu.vcmi.VCMI.png.import new file mode 100644 index 00000000..5872a619 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/eu.vcmi.VCMI.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://636hicya124r" +path="res://.godot/imported/eu.vcmi.VCMI.png-8c3370d5941c9e3fe25646177f575a87.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/eu.vcmi.VCMI.png" +dest_files=["res://.godot/imported/eu.vcmi.VCMI.png-8c3370d5941c9e3fe25646177f575a87.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/facebook.png b/tools/configurator/assets/icons/pixelitos/16/facebook.png new file mode 100644 index 00000000..bd298a13 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/facebook.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/facebook.png.import b/tools/configurator/assets/icons/pixelitos/16/facebook.png.import new file mode 100644 index 00000000..275f959b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/facebook.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxatvsyyrjkge" +path="res://.godot/imported/facebook.png-00175920e3b1b811b3e30b89368f1a8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/facebook.png" +dest_files=["res://.godot/imported/facebook.png-00175920e3b1b811b3e30b89368f1a8e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/fbneo.png b/tools/configurator/assets/icons/pixelitos/16/fbneo.png new file mode 100644 index 00000000..5dcd5975 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/fbneo.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/fbneo.png.import b/tools/configurator/assets/icons/pixelitos/16/fbneo.png.import new file mode 100644 index 00000000..d3e683d6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/fbneo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7g7kap0mom6r" +path="res://.godot/imported/fbneo.png-a4c10cdbcf9e01e39a6adc47bf426a98.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/fbneo.png" +dest_files=["res://.godot/imported/fbneo.png-a4c10cdbcf9e01e39a6adc47bf426a98.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/feh.png b/tools/configurator/assets/icons/pixelitos/16/feh.png new file mode 100644 index 00000000..0bdbb16c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/feh.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/feh.png.import b/tools/configurator/assets/icons/pixelitos/16/feh.png.import new file mode 100644 index 00000000..1ece228e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/feh.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtg2dq5uo8vso" +path="res://.godot/imported/feh.png-e5b41f77ef09eac3e7f5ea6abc6c26b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/feh.png" +dest_files=["res://.godot/imported/feh.png-e5b41f77ef09eac3e7f5ea6abc6c26b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/file-roller.png b/tools/configurator/assets/icons/pixelitos/16/file-roller.png new file mode 100644 index 00000000..f94f6e1e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/file-roller.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/file-roller.png.import b/tools/configurator/assets/icons/pixelitos/16/file-roller.png.import new file mode 100644 index 00000000..5368a996 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/file-roller.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://617bc863rel3" +path="res://.godot/imported/file-roller.png-ebae1999c0d2dabb5f06e4ead986fc9e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/file-roller.png" +dest_files=["res://.godot/imported/file-roller.png-ebae1999c0d2dabb5f06e4ead986fc9e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/file-system-manager.png b/tools/configurator/assets/icons/pixelitos/16/file-system-manager.png new file mode 100644 index 00000000..77e06888 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/file-system-manager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/file-system-manager.png.import b/tools/configurator/assets/icons/pixelitos/16/file-system-manager.png.import new file mode 100644 index 00000000..0a799137 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/file-system-manager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwmw5vccl76o8" +path="res://.godot/imported/file-system-manager.png-2792dbce38c617565e2deba1f00450b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/file-system-manager.png" +dest_files=["res://.godot/imported/file-system-manager.png-2792dbce38c617565e2deba1f00450b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/filezilla.png b/tools/configurator/assets/icons/pixelitos/16/filezilla.png new file mode 100644 index 00000000..e717893b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/filezilla.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/filezilla.png.import b/tools/configurator/assets/icons/pixelitos/16/filezilla.png.import new file mode 100644 index 00000000..5a003ff8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/filezilla.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uou28wwaldua" +path="res://.godot/imported/filezilla.png-15e5f038ffa36b6a492c0874b43f0a68.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/filezilla.png" +dest_files=["res://.godot/imported/filezilla.png-15e5f038ffa36b6a492c0874b43f0a68.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/firefox.png b/tools/configurator/assets/icons/pixelitos/16/firefox.png new file mode 100644 index 00000000..73457b6a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/firefox.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/firefox.png.import b/tools/configurator/assets/icons/pixelitos/16/firefox.png.import new file mode 100644 index 00000000..e7eae868 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/firefox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6e1tgfc4ap0p" +path="res://.godot/imported/firefox.png-ecdf0c861938ba3725ca5ce45d37dd3b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/firefox.png" +dest_files=["res://.godot/imported/firefox.png-ecdf0c861938ba3725ca5ce45d37dd3b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/floorp.png b/tools/configurator/assets/icons/pixelitos/16/floorp.png new file mode 100644 index 00000000..34489b71 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/floorp.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/floorp.png.import b/tools/configurator/assets/icons/pixelitos/16/floorp.png.import new file mode 100644 index 00000000..0c4082e1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/floorp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drxlki00ju7bc" +path="res://.godot/imported/floorp.png-ef66355fd6ca8ec96f4935c6c07e5541.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/floorp.png" +dest_files=["res://.godot/imported/floorp.png-ef66355fd6ca8ec96f4935c6c07e5541.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/flycast.png b/tools/configurator/assets/icons/pixelitos/16/flycast.png new file mode 100644 index 00000000..1e5289d2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/flycast.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/flycast.png.import b/tools/configurator/assets/icons/pixelitos/16/flycast.png.import new file mode 100644 index 00000000..16f0bbca --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/flycast.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddrop57dvpox8" +path="res://.godot/imported/flycast.png-e841973f96e1142a71c26c001a3cde10.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/flycast.png" +dest_files=["res://.godot/imported/flycast.png-e841973f96e1142a71c26c001a3cde10.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/fuse.png b/tools/configurator/assets/icons/pixelitos/16/fuse.png new file mode 100644 index 00000000..ec2e5c0c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/fuse.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/fuse.png.import b/tools/configurator/assets/icons/pixelitos/16/fuse.png.import new file mode 100644 index 00000000..6dd4436c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/fuse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfsm3snx12y6f" +path="res://.godot/imported/fuse.png-1ef21c4da3a35f683daafd99d476394b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/fuse.png" +dest_files=["res://.godot/imported/fuse.png-1ef21c4da3a35f683daafd99d476394b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/futurepinball.png b/tools/configurator/assets/icons/pixelitos/16/futurepinball.png new file mode 100644 index 00000000..7d42bdb8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/futurepinball.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/futurepinball.png.import b/tools/configurator/assets/icons/pixelitos/16/futurepinball.png.import new file mode 100644 index 00000000..65bd8e1d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/futurepinball.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qgegtsotc220" +path="res://.godot/imported/futurepinball.png-510a1cc8227a9489ef547d5278bedd5a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/futurepinball.png" +dest_files=["res://.godot/imported/futurepinball.png-510a1cc8227a9489ef547d5278bedd5a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gcolor.png b/tools/configurator/assets/icons/pixelitos/16/gcolor.png new file mode 100644 index 00000000..c2171703 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gcolor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gcolor.png.import b/tools/configurator/assets/icons/pixelitos/16/gcolor.png.import new file mode 100644 index 00000000..82c9705f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gcolor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbe0wkvuim3tf" +path="res://.godot/imported/gcolor.png-2a0a8885f23115daa29c9ad99d1ead1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gcolor.png" +dest_files=["res://.godot/imported/gcolor.png-2a0a8885f23115daa29c9ad99d1ead1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gcolor2.png b/tools/configurator/assets/icons/pixelitos/16/gcolor2.png new file mode 100644 index 00000000..c2171703 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gcolor2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gcolor2.png.import b/tools/configurator/assets/icons/pixelitos/16/gcolor2.png.import new file mode 100644 index 00000000..74502043 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gcolor2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1mu856aoqm6q" +path="res://.godot/imported/gcolor2.png-10efc9e325b483c0fea6b78358f0036e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gcolor2.png" +dest_files=["res://.godot/imported/gcolor2.png-10efc9e325b483c0fea6b78358f0036e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gcolor3.png b/tools/configurator/assets/icons/pixelitos/16/gcolor3.png new file mode 100644 index 00000000..c2171703 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gcolor3.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gcolor3.png.import b/tools/configurator/assets/icons/pixelitos/16/gcolor3.png.import new file mode 100644 index 00000000..b4674fd5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gcolor3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccpun4ob1kdvl" +path="res://.godot/imported/gcolor3.png-242db9efd4bc583eb480b5fb3db3e8c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gcolor3.png" +dest_files=["res://.godot/imported/gcolor3.png-242db9efd4bc583eb480b5fb3db3e8c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/geometry-dash.png b/tools/configurator/assets/icons/pixelitos/16/geometry-dash.png new file mode 100644 index 00000000..7deecf74 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/geometry-dash.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/geometry-dash.png.import b/tools/configurator/assets/icons/pixelitos/16/geometry-dash.png.import new file mode 100644 index 00000000..82eb1788 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/geometry-dash.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdsvfrk2lk2ys" +path="res://.godot/imported/geometry-dash.png-fc4c5ef7abee285e9aba714451b14a65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/geometry-dash.png" +dest_files=["res://.godot/imported/geometry-dash.png-fc4c5ef7abee285e9aba714451b14a65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gimp.png b/tools/configurator/assets/icons/pixelitos/16/gimp.png new file mode 100644 index 00000000..057fd0dd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gimp.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gimp.png.import b/tools/configurator/assets/icons/pixelitos/16/gimp.png.import new file mode 100644 index 00000000..7e409d26 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gimp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxst3yki6w8c6" +path="res://.godot/imported/gimp.png-a07b56708a32f616693df20eec6cd204.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gimp.png" +dest_files=["res://.godot/imported/gimp.png-a07b56708a32f616693df20eec6cd204.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/github-desktop.png b/tools/configurator/assets/icons/pixelitos/16/github-desktop.png new file mode 100644 index 00000000..e83c0a58 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/github-desktop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/github-desktop.png.import b/tools/configurator/assets/icons/pixelitos/16/github-desktop.png.import new file mode 100644 index 00000000..8b00894b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/github-desktop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blqsabibgejli" +path="res://.godot/imported/github-desktop.png-012bc0b28ad4861c4e4b911582ef9e5b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/github-desktop.png" +dest_files=["res://.godot/imported/github-desktop.png-012bc0b28ad4861c4e4b911582ef9e5b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/github.png b/tools/configurator/assets/icons/pixelitos/16/github.png new file mode 100644 index 00000000..84f72c33 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/github.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/github.png.import b/tools/configurator/assets/icons/pixelitos/16/github.png.import new file mode 100644 index 00000000..d8023686 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/github.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djuddsdqdandx" +path="res://.godot/imported/github.png-32513112eff22368a8dbe7d71f3813a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/github.png" +dest_files=["res://.godot/imported/github.png-32513112eff22368a8dbe7d71f3813a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/godot.png b/tools/configurator/assets/icons/pixelitos/16/godot.png new file mode 100644 index 00000000..293f36e8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/godot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/godot.png.import b/tools/configurator/assets/icons/pixelitos/16/godot.png.import new file mode 100644 index 00000000..efc297b5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/godot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8a0o2mbe6473" +path="res://.godot/imported/godot.png-c8c4905fcd68aeb804516cfeeff7a2fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/godot.png" +dest_files=["res://.godot/imported/godot.png-c8c4905fcd68aeb804516cfeeff7a2fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/google-chrome.png b/tools/configurator/assets/icons/pixelitos/16/google-chrome.png new file mode 100644 index 00000000..c9654dd3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/google-chrome.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/google-chrome.png.import b/tools/configurator/assets/icons/pixelitos/16/google-chrome.png.import new file mode 100644 index 00000000..859577e1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/google-chrome.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8knsomgrekue" +path="res://.godot/imported/google-chrome.png-39d1b445286b86b516d55f91c3b66947.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/google-chrome.png" +dest_files=["res://.godot/imported/google-chrome.png-39d1b445286b86b516d55f91c3b66947.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gparted.png b/tools/configurator/assets/icons/pixelitos/16/gparted.png new file mode 100644 index 00000000..2831a1f7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gparted.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gparted.png.import b/tools/configurator/assets/icons/pixelitos/16/gparted.png.import new file mode 100644 index 00000000..3c507e7a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gparted.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq32qm32kwxeu" +path="res://.godot/imported/gparted.png-f0d2e70a04d0e185e647fdeea067a3ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gparted.png" +dest_files=["res://.godot/imported/gparted.png-f0d2e70a04d0e185e647fdeea067a3ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gsplus.png b/tools/configurator/assets/icons/pixelitos/16/gsplus.png new file mode 100644 index 00000000..146683f8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gsplus.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gsplus.png.import b/tools/configurator/assets/icons/pixelitos/16/gsplus.png.import new file mode 100644 index 00000000..768d62c7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gsplus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l14nalgsiobv" +path="res://.godot/imported/gsplus.png-8c107be9bc9b83635c9974be0dc797d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gsplus.png" +dest_files=["res://.godot/imported/gsplus.png-8c107be9bc9b83635c9974be0dc797d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gtk-preferences.png b/tools/configurator/assets/icons/pixelitos/16/gtk-preferences.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gtk-preferences.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gtk-preferences.png.import b/tools/configurator/assets/icons/pixelitos/16/gtk-preferences.png.import new file mode 100644 index 00000000..c06b5219 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gtk-preferences.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n2mnwd68w7wa" +path="res://.godot/imported/gtk-preferences.png-21d426063b89b39f3cc1aa289fe28b3c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gtk-preferences.png" +dest_files=["res://.godot/imported/gtk-preferences.png-21d426063b89b39f3cc1aa289fe28b3c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gtk-select-color.png b/tools/configurator/assets/icons/pixelitos/16/gtk-select-color.png new file mode 100644 index 00000000..c2171703 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gtk-select-color.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gtk-select-color.png.import b/tools/configurator/assets/icons/pixelitos/16/gtk-select-color.png.import new file mode 100644 index 00000000..4c6e14a6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gtk-select-color.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csx0tl3en0bry" +path="res://.godot/imported/gtk-select-color.png-bff933f07447f05c8e98016f8df6d52b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gtk-select-color.png" +dest_files=["res://.godot/imported/gtk-select-color.png-bff933f07447f05c8e98016f8df6d52b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gvim.png b/tools/configurator/assets/icons/pixelitos/16/gvim.png new file mode 100644 index 00000000..326ea235 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gvim.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gvim.png.import b/tools/configurator/assets/icons/pixelitos/16/gvim.png.import new file mode 100644 index 00000000..8fd9cead --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gvim.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://musia1qne3m0" +path="res://.godot/imported/gvim.png-444cc90a2198e0e70a5eb027373ff964.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gvim.png" +dest_files=["res://.godot/imported/gvim.png-444cc90a2198e0e70a5eb027373ff964.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/half-life.png b/tools/configurator/assets/icons/pixelitos/16/half-life.png new file mode 100644 index 00000000..9a8277b2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/half-life.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/half-life.png.import b/tools/configurator/assets/icons/pixelitos/16/half-life.png.import new file mode 100644 index 00000000..a87f5b2f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/half-life.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk2th2kc226j1" +path="res://.godot/imported/half-life.png-bfb2287cb46710e9f8bf5247ae41a7ad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/half-life.png" +dest_files=["res://.godot/imported/half-life.png-bfb2287cb46710e9f8bf5247ae41a7ad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/half-life2.png b/tools/configurator/assets/icons/pixelitos/16/half-life2.png new file mode 100644 index 00000000..5783747f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/half-life2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/half-life2.png.import b/tools/configurator/assets/icons/pixelitos/16/half-life2.png.import new file mode 100644 index 00000000..8c71f298 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/half-life2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ot0bv3vl2a0h" +path="res://.godot/imported/half-life2.png-734d0a7a3c28a8b6af77096e77f921ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/half-life2.png" +dest_files=["res://.godot/imported/half-life2.png-734d0a7a3c28a8b6af77096e77f921ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/helltaker.png b/tools/configurator/assets/icons/pixelitos/16/helltaker.png new file mode 100644 index 00000000..c336011d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/helltaker.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/helltaker.png.import b/tools/configurator/assets/icons/pixelitos/16/helltaker.png.import new file mode 100644 index 00000000..9e4239c7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/helltaker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbk2vaayur3bj" +path="res://.godot/imported/helltaker.png-4f61c48ad0d6dc15366d03ce935a7b15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/helltaker.png" +dest_files=["res://.godot/imported/helltaker.png-4f61c48ad0d6dc15366d03ce935a7b15.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/help-about.png b/tools/configurator/assets/icons/pixelitos/16/help-about.png new file mode 100644 index 00000000..44c13f02 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/help-about.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/help-about.png.import b/tools/configurator/assets/icons/pixelitos/16/help-about.png.import new file mode 100644 index 00000000..2c009063 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/help-about.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://claqi3etq1e17" +path="res://.godot/imported/help-about.png-4da6f2da4885318bd40bdcf6f79e8615.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/help-about.png" +dest_files=["res://.godot/imported/help-about.png-4da6f2da4885318bd40bdcf6f79e8615.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/help-browser.png b/tools/configurator/assets/icons/pixelitos/16/help-browser.png new file mode 100644 index 00000000..0e8b1912 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/help-browser.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/help-browser.png.import b/tools/configurator/assets/icons/pixelitos/16/help-browser.png.import new file mode 100644 index 00000000..631ef6ed --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/help-browser.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4sv1u0ljef5n" +path="res://.godot/imported/help-browser.png-01fa512dbe0ee298582239fa6db121d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/help-browser.png" +dest_files=["res://.godot/imported/help-browser.png-01fa512dbe0ee298582239fa6db121d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/help-contents.png b/tools/configurator/assets/icons/pixelitos/16/help-contents.png new file mode 100644 index 00000000..0e8b1912 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/help-contents.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/help-contents.png.import b/tools/configurator/assets/icons/pixelitos/16/help-contents.png.import new file mode 100644 index 00000000..ab633269 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/help-contents.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbtmluecsbimt" +path="res://.godot/imported/help-contents.png-036ca57e2818c6f39df3eefb58488443.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/help-contents.png" +dest_files=["res://.godot/imported/help-contents.png-036ca57e2818c6f39df3eefb58488443.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/help.contents.png b/tools/configurator/assets/icons/pixelitos/16/help.contents.png new file mode 100644 index 00000000..0e8b1912 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/help.contents.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/help.contents.png.import b/tools/configurator/assets/icons/pixelitos/16/help.contents.png.import new file mode 100644 index 00000000..bfccc44c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/help.contents.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwtku23kynqmt" +path="res://.godot/imported/help.contents.png-014a41aac38f13741c2a2ec6e2bae271.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/help.contents.png" +dest_files=["res://.godot/imported/help.contents.png-014a41aac38f13741c2a2ec6e2bae271.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/htop.png b/tools/configurator/assets/icons/pixelitos/16/htop.png new file mode 100644 index 00000000..7d86083a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/htop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/htop.png.import b/tools/configurator/assets/icons/pixelitos/16/htop.png.import new file mode 100644 index 00000000..9aeb682b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/htop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clpsgskeigylp" +path="res://.godot/imported/htop.png-f664cf520d24e73bc40baa0102830b7d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/htop.png" +dest_files=["res://.godot/imported/htop.png-f664cf520d24e73bc40baa0102830b7d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/hwloc.png b/tools/configurator/assets/icons/pixelitos/16/hwloc.png new file mode 100644 index 00000000..99ddb5e1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/hwloc.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/hwloc.png.import b/tools/configurator/assets/icons/pixelitos/16/hwloc.png.import new file mode 100644 index 00000000..756c51c2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/hwloc.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uh2aqfpf4tye" +path="res://.godot/imported/hwloc.png-09a9dd3b44d35ebe5fa6957389a8cce6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/hwloc.png" +dest_files=["res://.godot/imported/hwloc.png-09a9dd3b44d35ebe5fa6957389a8cce6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/hypseus.png b/tools/configurator/assets/icons/pixelitos/16/hypseus.png new file mode 100644 index 00000000..d2edb360 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/hypseus.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/hypseus.png.import b/tools/configurator/assets/icons/pixelitos/16/hypseus.png.import new file mode 100644 index 00000000..33bff7a3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/hypseus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nusdh25gqrtr" +path="res://.godot/imported/hypseus.png-4324a56a39640ad549a5ff09d388a8a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/hypseus.png" +dest_files=["res://.godot/imported/hypseus.png-4324a56a39640ad549a5ff09d388a8a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/ibus-setup.png b/tools/configurator/assets/icons/pixelitos/16/ibus-setup.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/ibus-setup.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/ibus-setup.png.import b/tools/configurator/assets/icons/pixelitos/16/ibus-setup.png.import new file mode 100644 index 00000000..21a6b1ae --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/ibus-setup.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djj8420c72jsw" +path="res://.godot/imported/ibus-setup.png-442886b12a72aba5c7f08aa8ae5ef01d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/ibus-setup.png" +dest_files=["res://.godot/imported/ibus-setup.png-442886b12a72aba5c7f08aa8ae5ef01d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/ikemego.png b/tools/configurator/assets/icons/pixelitos/16/ikemego.png new file mode 100644 index 00000000..6008d759 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/ikemego.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/ikemego.png.import b/tools/configurator/assets/icons/pixelitos/16/ikemego.png.import new file mode 100644 index 00000000..4dfeddcb --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/ikemego.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxma7pcd0m026" +path="res://.godot/imported/ikemego.png-f809fe1e5960c2b46ba3c4da5280c8cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/ikemego.png" +dest_files=["res://.godot/imported/ikemego.png-f809fe1e5960c2b46ba3c4da5280c8cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/info.cemu.Cemu.png b/tools/configurator/assets/icons/pixelitos/16/info.cemu.Cemu.png new file mode 100644 index 00000000..961b86bd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/info.cemu.Cemu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/info.cemu.Cemu.png.import b/tools/configurator/assets/icons/pixelitos/16/info.cemu.Cemu.png.import new file mode 100644 index 00000000..f69f9122 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/info.cemu.Cemu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwf6d80b038l3" +path="res://.godot/imported/info.cemu.Cemu.png-28769a587567a67166ca5b3342c8234e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/info.cemu.Cemu.png" +dest_files=["res://.godot/imported/info.cemu.Cemu.png-28769a587567a67166ca5b3342c8234e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/inkscape.png b/tools/configurator/assets/icons/pixelitos/16/inkscape.png new file mode 100644 index 00000000..c06d6369 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/inkscape.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/inkscape.png.import b/tools/configurator/assets/icons/pixelitos/16/inkscape.png.import new file mode 100644 index 00000000..ef447f5c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/inkscape.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn6m3oqrbvrbf" +path="res://.godot/imported/inkscape.png-46836af15990f352bde369353d6bcd0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/inkscape.png" +dest_files=["res://.godot/imported/inkscape.png-46836af15990f352bde369353d6bcd0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/input-keyboard.png b/tools/configurator/assets/icons/pixelitos/16/input-keyboard.png new file mode 100644 index 00000000..2a577eb2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/input-keyboard.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/input-keyboard.png.import b/tools/configurator/assets/icons/pixelitos/16/input-keyboard.png.import new file mode 100644 index 00000000..29b2ffc9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/input-keyboard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6q1kkqpont76" +path="res://.godot/imported/input-keyboard.png-00bfdd9e62959a2dfe7be492e58ec198.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/input-keyboard.png" +dest_files=["res://.godot/imported/input-keyboard.png-00bfdd9e62959a2dfe7be492e58ec198.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/internet-web-browser.png b/tools/configurator/assets/icons/pixelitos/16/internet-web-browser.png new file mode 100644 index 00000000..88f0a50d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/internet-web-browser.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/internet-web-browser.png.import b/tools/configurator/assets/icons/pixelitos/16/internet-web-browser.png.import new file mode 100644 index 00000000..afbb08c6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/internet-web-browser.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2yhqt60p8yca" +path="res://.godot/imported/internet-web-browser.png-f1a9d86d3b61ab05ac02bdd6a3face2b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/internet-web-browser.png" +dest_files=["res://.godot/imported/internet-web-browser.png-f1a9d86d3b61ab05ac02bdd6a3face2b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/io.github.antimicrox.antimicrox.png b/tools/configurator/assets/icons/pixelitos/16/io.github.antimicrox.antimicrox.png new file mode 100644 index 00000000..e2a38b32 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/io.github.antimicrox.antimicrox.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/io.github.antimicrox.antimicrox.png.import b/tools/configurator/assets/icons/pixelitos/16/io.github.antimicrox.antimicrox.png.import new file mode 100644 index 00000000..708c94e6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/io.github.antimicrox.antimicrox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blskccp4w0qnw" +path="res://.godot/imported/io.github.antimicrox.antimicrox.png-b57882a79081b1759b7c41ba7c7b2067.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/io.github.antimicrox.antimicrox.png" +dest_files=["res://.godot/imported/io.github.antimicrox.antimicrox.png-b57882a79081b1759b7c41ba7c7b2067.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/io.github.ihhub.Fheroes2.png b/tools/configurator/assets/icons/pixelitos/16/io.github.ihhub.Fheroes2.png new file mode 100644 index 00000000..e53a860a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/io.github.ihhub.Fheroes2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/io.github.ihhub.Fheroes2.png.import b/tools/configurator/assets/icons/pixelitos/16/io.github.ihhub.Fheroes2.png.import new file mode 100644 index 00000000..555c993e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/io.github.ihhub.Fheroes2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djmfjqju5xb3c" +path="res://.godot/imported/io.github.ihhub.Fheroes2.png-54f848f5acaf9af2cc581d2c0cb96c1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/io.github.ihhub.Fheroes2.png" +dest_files=["res://.godot/imported/io.github.ihhub.Fheroes2.png-54f848f5acaf9af2cc581d2c0cb96c1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/itch.png b/tools/configurator/assets/icons/pixelitos/16/itch.png new file mode 100644 index 00000000..9aa9487c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/itch.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/itch.png.import b/tools/configurator/assets/icons/pixelitos/16/itch.png.import new file mode 100644 index 00000000..87b68247 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/itch.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://es6eosj27aie" +path="res://.godot/imported/itch.png-9e9885421891f602fa398dc263a4b134.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/itch.png" +dest_files=["res://.godot/imported/itch.png-9e9885421891f602fa398dc263a4b134.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/kde-frameworks.png b/tools/configurator/assets/icons/pixelitos/16/kde-frameworks.png new file mode 100644 index 00000000..261c1a5d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/kde-frameworks.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/kde-frameworks.png.import b/tools/configurator/assets/icons/pixelitos/16/kde-frameworks.png.import new file mode 100644 index 00000000..2f97e76e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/kde-frameworks.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmhsr44ijcy01" +path="res://.godot/imported/kde-frameworks.png-3a2874e92ddc005be7f0e511c29cd633.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/kde-frameworks.png" +dest_files=["res://.godot/imported/kde-frameworks.png-3a2874e92ddc005be7f0e511c29cd633.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/kdenlive.png b/tools/configurator/assets/icons/pixelitos/16/kdenlive.png new file mode 100644 index 00000000..cb14a856 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/kdenlive.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/kdenlive.png.import b/tools/configurator/assets/icons/pixelitos/16/kdenlive.png.import new file mode 100644 index 00000000..c8190fe9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/kdenlive.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy76e2shrtck7" +path="res://.godot/imported/kdenlive.png-ccbdcca4907d4c957ea92e8402d848ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/kdenlive.png" +dest_files=["res://.godot/imported/kdenlive.png-ccbdcca4907d4c957ea92e8402d848ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/kfontview.png b/tools/configurator/assets/icons/pixelitos/16/kfontview.png new file mode 100644 index 00000000..7ed03533 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/kfontview.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/kfontview.png.import b/tools/configurator/assets/icons/pixelitos/16/kfontview.png.import new file mode 100644 index 00000000..7ce4f182 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/kfontview.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sfv5lry4iwbo" +path="res://.godot/imported/kfontview.png-ac2b0c47f76f382ed200c275d7f76ea2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/kfontview.png" +dest_files=["res://.godot/imported/kfontview.png-ac2b0c47f76f382ed200c275d7f76ea2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/klipper.png b/tools/configurator/assets/icons/pixelitos/16/klipper.png new file mode 100644 index 00000000..96629dea Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/klipper.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/klipper.png.import b/tools/configurator/assets/icons/pixelitos/16/klipper.png.import new file mode 100644 index 00000000..2ad11823 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/klipper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://t5hq6nr31vcv" +path="res://.godot/imported/klipper.png-3add0e59334bc5a4fd8d3d71a856c7af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/klipper.png" +dest_files=["res://.godot/imported/klipper.png-3add0e59334bc5a4fd8d3d71a856c7af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/kmenuedit.png b/tools/configurator/assets/icons/pixelitos/16/kmenuedit.png new file mode 100644 index 00000000..b9c05361 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/kmenuedit.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/kmenuedit.png.import b/tools/configurator/assets/icons/pixelitos/16/kmenuedit.png.import new file mode 100644 index 00000000..29e7f237 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/kmenuedit.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5wrbpq8qir2o" +path="res://.godot/imported/kmenuedit.png-5e8ce3192abea70feeb28c1f280267a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/kmenuedit.png" +dest_files=["res://.godot/imported/kmenuedit.png-5e8ce3192abea70feeb28c1f280267a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/knetattach.png b/tools/configurator/assets/icons/pixelitos/16/knetattach.png new file mode 100644 index 00000000..88f0a50d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/knetattach.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/knetattach.png.import b/tools/configurator/assets/icons/pixelitos/16/knetattach.png.import new file mode 100644 index 00000000..925a76e8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/knetattach.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://borbgat4bpipp" +path="res://.godot/imported/knetattach.png-63172d6799f2cf262829c2d533567def.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/knetattach.png" +dest_files=["res://.godot/imported/knetattach.png-63172d6799f2cf262829c2d533567def.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/kotatogram.png b/tools/configurator/assets/icons/pixelitos/16/kotatogram.png new file mode 100644 index 00000000..98f6f3c6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/kotatogram.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/kotatogram.png.import b/tools/configurator/assets/icons/pixelitos/16/kotatogram.png.import new file mode 100644 index 00000000..d048d8c0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/kotatogram.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlfx15qm0agnl" +path="res://.godot/imported/kotatogram.png-35e9f0c6d62addc0c3a19f6f7f0bc53c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/kotatogram.png" +dest_files=["res://.godot/imported/kotatogram.png-35e9f0c6d62addc0c3a19f6f7f0bc53c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/krita.png b/tools/configurator/assets/icons/pixelitos/16/krita.png new file mode 100644 index 00000000..d2168838 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/krita.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/krita.png.import b/tools/configurator/assets/icons/pixelitos/16/krita.png.import new file mode 100644 index 00000000..1b3615f9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/krita.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7xhecrujl44x" +path="res://.godot/imported/krita.png-4f094c38b1aef3f3764d708557ef163e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/krita.png" +dest_files=["res://.godot/imported/krita.png-4f094c38b1aef3f3764d708557ef163e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/kwalletmanager.png b/tools/configurator/assets/icons/pixelitos/16/kwalletmanager.png new file mode 100644 index 00000000..23e44a1d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/kwalletmanager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/kwalletmanager.png.import b/tools/configurator/assets/icons/pixelitos/16/kwalletmanager.png.import new file mode 100644 index 00000000..fb684af0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/kwalletmanager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo8swg58wm3yl" +path="res://.godot/imported/kwalletmanager.png-06df706feae8f5e8c042315687662687.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/kwalletmanager.png" +dest_files=["res://.godot/imported/kwalletmanager.png-06df706feae8f5e8c042315687662687.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-base.png b/tools/configurator/assets/icons/pixelitos/16/libreoffice-base.png new file mode 100644 index 00000000..a78fb1cd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/libreoffice-base.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-base.png.import b/tools/configurator/assets/icons/pixelitos/16/libreoffice-base.png.import new file mode 100644 index 00000000..08257dcb --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/libreoffice-base.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cutsvu1u1hmmx" +path="res://.godot/imported/libreoffice-base.png-0da8370c0180b60173935d4e4cf02bba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/libreoffice-base.png" +dest_files=["res://.godot/imported/libreoffice-base.png-0da8370c0180b60173935d4e4cf02bba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-calc.png b/tools/configurator/assets/icons/pixelitos/16/libreoffice-calc.png new file mode 100644 index 00000000..f53b96dc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/libreoffice-calc.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-calc.png.import b/tools/configurator/assets/icons/pixelitos/16/libreoffice-calc.png.import new file mode 100644 index 00000000..0f4cc25c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/libreoffice-calc.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfvx4pgcjv8is" +path="res://.godot/imported/libreoffice-calc.png-c1927830b409492982508d873db0d11a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/libreoffice-calc.png" +dest_files=["res://.godot/imported/libreoffice-calc.png-c1927830b409492982508d873db0d11a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-draw.png b/tools/configurator/assets/icons/pixelitos/16/libreoffice-draw.png new file mode 100644 index 00000000..d00d70e3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/libreoffice-draw.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-draw.png.import b/tools/configurator/assets/icons/pixelitos/16/libreoffice-draw.png.import new file mode 100644 index 00000000..ba03514e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/libreoffice-draw.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpgmssb0otx0c" +path="res://.godot/imported/libreoffice-draw.png-d0359d174fe19f92ef559e8784283dbd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/libreoffice-draw.png" +dest_files=["res://.godot/imported/libreoffice-draw.png-d0359d174fe19f92ef559e8784283dbd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-impress.png b/tools/configurator/assets/icons/pixelitos/16/libreoffice-impress.png new file mode 100644 index 00000000..040b029b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/libreoffice-impress.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-impress.png.import b/tools/configurator/assets/icons/pixelitos/16/libreoffice-impress.png.import new file mode 100644 index 00000000..1d18a532 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/libreoffice-impress.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpjpg0vydsb6t" +path="res://.godot/imported/libreoffice-impress.png-48ee0a7d3143201140a7beed651372d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/libreoffice-impress.png" +dest_files=["res://.godot/imported/libreoffice-impress.png-48ee0a7d3143201140a7beed651372d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-math.png b/tools/configurator/assets/icons/pixelitos/16/libreoffice-math.png new file mode 100644 index 00000000..7e9fa7f6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/libreoffice-math.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-math.png.import b/tools/configurator/assets/icons/pixelitos/16/libreoffice-math.png.import new file mode 100644 index 00000000..1588a2d8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/libreoffice-math.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p1s1rm6u168n" +path="res://.godot/imported/libreoffice-math.png-a4b49d969f6cffbd4d7020bb49728701.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/libreoffice-math.png" +dest_files=["res://.godot/imported/libreoffice-math.png-a4b49d969f6cffbd4d7020bb49728701.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-startcenter.png b/tools/configurator/assets/icons/pixelitos/16/libreoffice-startcenter.png new file mode 100644 index 00000000..4e3eecd3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/libreoffice-startcenter.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-startcenter.png.import b/tools/configurator/assets/icons/pixelitos/16/libreoffice-startcenter.png.import new file mode 100644 index 00000000..ac074ffe --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/libreoffice-startcenter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bap0hptm7wygt" +path="res://.godot/imported/libreoffice-startcenter.png-2b39f947198a5550c3f5ed152d284904.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/libreoffice-startcenter.png" +dest_files=["res://.godot/imported/libreoffice-startcenter.png-2b39f947198a5550c3f5ed152d284904.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-writer.png b/tools/configurator/assets/icons/pixelitos/16/libreoffice-writer.png new file mode 100644 index 00000000..dd923d93 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/libreoffice-writer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-writer.png.import b/tools/configurator/assets/icons/pixelitos/16/libreoffice-writer.png.import new file mode 100644 index 00000000..bb9424fc --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/libreoffice-writer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4gxd7pr5ikn0" +path="res://.godot/imported/libreoffice-writer.png-ccd778605648f0f2794f63aa92affa05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/libreoffice-writer.png" +dest_files=["res://.godot/imported/libreoffice-writer.png-ccd778605648f0f2794f63aa92affa05.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice.png b/tools/configurator/assets/icons/pixelitos/16/libreoffice.png new file mode 100644 index 00000000..4e3eecd3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/libreoffice.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice.png.import b/tools/configurator/assets/icons/pixelitos/16/libreoffice.png.import new file mode 100644 index 00000000..cbef6d5f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/libreoffice.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xcbxaekxo7hw" +path="res://.godot/imported/libreoffice.png-684d84c63a8c37734545f5a73f723054.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/libreoffice.png" +dest_files=["res://.godot/imported/libreoffice.png-684d84c63a8c37734545f5a73f723054.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/lightdm-gtk-greeter-settings.png b/tools/configurator/assets/icons/pixelitos/16/lightdm-gtk-greeter-settings.png new file mode 100644 index 00000000..e416a4aa Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/lightdm-gtk-greeter-settings.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/lightdm-gtk-greeter-settings.png.import b/tools/configurator/assets/icons/pixelitos/16/lightdm-gtk-greeter-settings.png.import new file mode 100644 index 00000000..bc7049c2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/lightdm-gtk-greeter-settings.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6l1ndd7wpm5d" +path="res://.godot/imported/lightdm-gtk-greeter-settings.png-93f0fdc578a419a118c61185d5c64a41.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/lightdm-gtk-greeter-settings.png" +dest_files=["res://.godot/imported/lightdm-gtk-greeter-settings.png-93f0fdc578a419a118c61185d5c64a41.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/lime3ds.png b/tools/configurator/assets/icons/pixelitos/16/lime3ds.png new file mode 100644 index 00000000..61e4a218 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/lime3ds.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/lime3ds.png.import b/tools/configurator/assets/icons/pixelitos/16/lime3ds.png.import new file mode 100644 index 00000000..01b80e2c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/lime3ds.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c25eufaxhq7tl" +path="res://.godot/imported/lime3ds.png-b68b6c9b859a99e081e7acee1637875c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/lime3ds.png" +dest_files=["res://.godot/imported/lime3ds.png-b68b6c9b859a99e081e7acee1637875c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/linapple.png b/tools/configurator/assets/icons/pixelitos/16/linapple.png new file mode 100644 index 00000000..6cdb53a6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/linapple.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/linapple.png.import b/tools/configurator/assets/icons/pixelitos/16/linapple.png.import new file mode 100644 index 00000000..99c73d5a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/linapple.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc5qjx7ej415k" +path="res://.godot/imported/linapple.png-4513120f1c8d5f1fa928e066dc2dc608.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/linapple.png" +dest_files=["res://.godot/imported/linapple.png-4513120f1c8d5f1fa928e066dc2dc608.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/links-48x48.xpm.png b/tools/configurator/assets/icons/pixelitos/16/links-48x48.xpm.png new file mode 100644 index 00000000..88f0a50d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/links-48x48.xpm.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/links-48x48.xpm.png.import b/tools/configurator/assets/icons/pixelitos/16/links-48x48.xpm.png.import new file mode 100644 index 00000000..c80143ac --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/links-48x48.xpm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx36v7t21qd02" +path="res://.godot/imported/links-48x48.xpm.png-d0d15ad8378bc83c19d2b3baba3085de.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/links-48x48.xpm.png" +dest_files=["res://.godot/imported/links-48x48.xpm.png-d0d15ad8378bc83c19d2b3baba3085de.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/lmms.png b/tools/configurator/assets/icons/pixelitos/16/lmms.png new file mode 100644 index 00000000..2c00a895 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/lmms.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/lmms.png.import b/tools/configurator/assets/icons/pixelitos/16/lmms.png.import new file mode 100644 index 00000000..dc236cbd --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/lmms.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyfaq8xp63kuo" +path="res://.godot/imported/lmms.png-011860c8ad5f026ff88d57f844dc74e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/lmms.png" +dest_files=["res://.godot/imported/lmms.png-011860c8ad5f026ff88d57f844dc74e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/lutris.png b/tools/configurator/assets/icons/pixelitos/16/lutris.png new file mode 100644 index 00000000..bd8d672b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/lutris.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/lutris.png.import b/tools/configurator/assets/icons/pixelitos/16/lutris.png.import new file mode 100644 index 00000000..c0f841a8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/lutris.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyfq23gxv48s8" +path="res://.godot/imported/lutris.png-cd61cbe3bc5de5779f553209a9e424da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/lutris.png" +dest_files=["res://.godot/imported/lutris.png-cd61cbe3bc5de5779f553209a9e424da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/map-globe.png b/tools/configurator/assets/icons/pixelitos/16/map-globe.png new file mode 100644 index 00000000..88f0a50d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/map-globe.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/map-globe.png.import b/tools/configurator/assets/icons/pixelitos/16/map-globe.png.import new file mode 100644 index 00000000..91bbdfb9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/map-globe.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6hl4s5shp1kp" +path="res://.godot/imported/map-globe.png-8e00c3af669b6eb554bf2fbff8941f0d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/map-globe.png" +dest_files=["res://.godot/imported/map-globe.png-8e00c3af669b6eb554bf2fbff8941f0d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-desktop.png b/tools/configurator/assets/icons/pixelitos/16/mate-desktop.png new file mode 100644 index 00000000..887dc1f9 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/mate-desktop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-desktop.png.import b/tools/configurator/assets/icons/pixelitos/16/mate-desktop.png.import new file mode 100644 index 00000000..b6ed9f1b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/mate-desktop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyira43h8wpf0" +path="res://.godot/imported/mate-desktop.png-6919e96f0ea4bef9e886a7c8c088805c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/mate-desktop.png" +dest_files=["res://.godot/imported/mate-desktop.png-6919e96f0ea4bef9e886a7c8c088805c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-disk-usage-analyzer.png b/tools/configurator/assets/icons/pixelitos/16/mate-disk-usage-analyzer.png new file mode 100644 index 00000000..2831a1f7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/mate-disk-usage-analyzer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-disk-usage-analyzer.png.import b/tools/configurator/assets/icons/pixelitos/16/mate-disk-usage-analyzer.png.import new file mode 100644 index 00000000..84cac96f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/mate-disk-usage-analyzer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctx0ec2ywkggn" +path="res://.godot/imported/mate-disk-usage-analyzer.png-201164540c3126139662a7fd55a39693.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/mate-disk-usage-analyzer.png" +dest_files=["res://.godot/imported/mate-disk-usage-analyzer.png-201164540c3126139662a7fd55a39693.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-notification-properties.png b/tools/configurator/assets/icons/pixelitos/16/mate-notification-properties.png new file mode 100644 index 00000000..15912542 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/mate-notification-properties.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-notification-properties.png.import b/tools/configurator/assets/icons/pixelitos/16/mate-notification-properties.png.import new file mode 100644 index 00000000..eba93d38 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/mate-notification-properties.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyxiaqsa8cyyg" +path="res://.godot/imported/mate-notification-properties.png-22dfb06ec93e1af4d9d27d20942f8a2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/mate-notification-properties.png" +dest_files=["res://.godot/imported/mate-notification-properties.png-22dfb06ec93e1af4d9d27d20942f8a2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-panel.png b/tools/configurator/assets/icons/pixelitos/16/mate-panel.png new file mode 100644 index 00000000..6c71f919 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/mate-panel.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-panel.png.import b/tools/configurator/assets/icons/pixelitos/16/mate-panel.png.import new file mode 100644 index 00000000..86bdbcbd --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/mate-panel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4efld31lcluk" +path="res://.godot/imported/mate-panel.png-db116feddaf863cd7675b3e5e0319f1e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/mate-panel.png" +dest_files=["res://.godot/imported/mate-panel.png-db116feddaf863cd7675b3e5e0319f1e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-session-properties.png b/tools/configurator/assets/icons/pixelitos/16/mate-session-properties.png new file mode 100644 index 00000000..65460949 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/mate-session-properties.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-session-properties.png.import b/tools/configurator/assets/icons/pixelitos/16/mate-session-properties.png.import new file mode 100644 index 00000000..551f198e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/mate-session-properties.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckpopeuns0dgm" +path="res://.godot/imported/mate-session-properties.png-a118b16c175775ca8778559e25f7b6fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/mate-session-properties.png" +dest_files=["res://.godot/imported/mate-session-properties.png-a118b16c175775ca8778559e25f7b6fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-system-log.png b/tools/configurator/assets/icons/pixelitos/16/mate-system-log.png new file mode 100644 index 00000000..b27e455a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/mate-system-log.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-system-log.png.import b/tools/configurator/assets/icons/pixelitos/16/mate-system-log.png.import new file mode 100644 index 00000000..827e0413 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/mate-system-log.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cehrw80gmcuvp" +path="res://.godot/imported/mate-system-log.png-c7d85c4a680026f3651b00a695e74dd0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/mate-system-log.png" +dest_files=["res://.godot/imported/mate-system-log.png-c7d85c4a680026f3651b00a695e74dd0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/menulibre.png b/tools/configurator/assets/icons/pixelitos/16/menulibre.png new file mode 100644 index 00000000..b9c05361 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/menulibre.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/menulibre.png.import b/tools/configurator/assets/icons/pixelitos/16/menulibre.png.import new file mode 100644 index 00000000..97beb1b0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/menulibre.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccg32h1k43s5v" +path="res://.godot/imported/menulibre.png-770b34222fc6d89cbeec09a611c66ad8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/menulibre.png" +dest_files=["res://.godot/imported/menulibre.png-770b34222fc6d89cbeec09a611c66ad8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/microsoft-edge.png b/tools/configurator/assets/icons/pixelitos/16/microsoft-edge.png new file mode 100644 index 00000000..f4ee2aea Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/microsoft-edge.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/microsoft-edge.png.import b/tools/configurator/assets/icons/pixelitos/16/microsoft-edge.png.import new file mode 100644 index 00000000..e54480c1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/microsoft-edge.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqleifsve62d5" +path="res://.godot/imported/microsoft-edge.png-2d1f73d05decba978865dcad1ca80525.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/microsoft-edge.png" +dest_files=["res://.godot/imported/microsoft-edge.png-2d1f73d05decba978865dcad1ca80525.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/midori.png b/tools/configurator/assets/icons/pixelitos/16/midori.png new file mode 100644 index 00000000..7a9b9839 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/midori.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/midori.png.import b/tools/configurator/assets/icons/pixelitos/16/midori.png.import new file mode 100644 index 00000000..ea9eb6fd --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/midori.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvbtuk6o8g0hy" +path="res://.godot/imported/midori.png-fe10c43e5d811ae704e2ff505ff515bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/midori.png" +dest_files=["res://.godot/imported/midori.png-fe10c43e5d811ae704e2ff505ff515bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/minecraft.png b/tools/configurator/assets/icons/pixelitos/16/minecraft.png new file mode 100644 index 00000000..b0028ad0 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/minecraft.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/minecraft.png.import b/tools/configurator/assets/icons/pixelitos/16/minecraft.png.import new file mode 100644 index 00000000..58d8c4bf --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/minecraft.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0wrklb48wa85" +path="res://.godot/imported/minecraft.png-cd668069ad887357a778a4e3c103dc6f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/minecraft.png" +dest_files=["res://.godot/imported/minecraft.png-cd668069ad887357a778a4e3c103dc6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/mpv.png b/tools/configurator/assets/icons/pixelitos/16/mpv.png new file mode 100644 index 00000000..576e1bfc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/mpv.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/mpv.png.import b/tools/configurator/assets/icons/pixelitos/16/mpv.png.import new file mode 100644 index 00000000..b640b8d3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/mpv.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhqqyiol0fxt8" +path="res://.godot/imported/mpv.png-aa95741f25fc87b01ccf4833fb229e13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/mpv.png" +dest_files=["res://.godot/imported/mpv.png-aa95741f25fc87b01ccf4833fb229e13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/multimedia-volume-control.png b/tools/configurator/assets/icons/pixelitos/16/multimedia-volume-control.png new file mode 100644 index 00000000..13750d5e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/multimedia-volume-control.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/multimedia-volume-control.png.import b/tools/configurator/assets/icons/pixelitos/16/multimedia-volume-control.png.import new file mode 100644 index 00000000..61de383b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/multimedia-volume-control.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7ql0ymmxc1cf" +path="res://.godot/imported/multimedia-volume-control.png-0c5f3e83bbacf08bff6c3f1631d7c1d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/multimedia-volume-control.png" +dest_files=["res://.godot/imported/multimedia-volume-control.png-0c5f3e83bbacf08bff6c3f1631d7c1d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/nestopia.png b/tools/configurator/assets/icons/pixelitos/16/nestopia.png new file mode 100644 index 00000000..18754b3d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/nestopia.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/nestopia.png.import b/tools/configurator/assets/icons/pixelitos/16/nestopia.png.import new file mode 100644 index 00000000..52c4c6a9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/nestopia.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcpn5on5d86j6" +path="res://.godot/imported/nestopia.png-e5b6bab34508815eef32f056c8faa1ca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/nestopia.png" +dest_files=["res://.godot/imported/nestopia.png-e5b6bab34508815eef32f056c8faa1ca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/net.kuribo64.melonDS.png b/tools/configurator/assets/icons/pixelitos/16/net.kuribo64.melonDS.png new file mode 100644 index 00000000..25fbe352 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/net.kuribo64.melonDS.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/net.kuribo64.melonDS.png.import b/tools/configurator/assets/icons/pixelitos/16/net.kuribo64.melonDS.png.import new file mode 100644 index 00000000..72ffb9ce --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/net.kuribo64.melonDS.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgftfx70c0n3o" +path="res://.godot/imported/net.kuribo64.melonDS.png-91be884a1cbb396218bda12865b1e1f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/net.kuribo64.melonDS.png" +dest_files=["res://.godot/imported/net.kuribo64.melonDS.png-91be884a1cbb396218bda12865b1e1f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/net.openra.OpenRA.png b/tools/configurator/assets/icons/pixelitos/16/net.openra.OpenRA.png new file mode 100644 index 00000000..f0788bbe Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/net.openra.OpenRA.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/net.openra.OpenRA.png.import b/tools/configurator/assets/icons/pixelitos/16/net.openra.OpenRA.png.import new file mode 100644 index 00000000..dda8db29 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/net.openra.OpenRA.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctpwwrhwdtyx4" +path="res://.godot/imported/net.openra.OpenRA.png-eed493596198a6fc09881a9309f18650.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/net.openra.OpenRA.png" +dest_files=["res://.godot/imported/net.openra.OpenRA.png-eed493596198a6fc09881a9309f18650.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/net.pcsx2.PCSX2.png b/tools/configurator/assets/icons/pixelitos/16/net.pcsx2.PCSX2.png new file mode 100644 index 00000000..7802e4e5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/net.pcsx2.PCSX2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/net.pcsx2.PCSX2.png.import b/tools/configurator/assets/icons/pixelitos/16/net.pcsx2.PCSX2.png.import new file mode 100644 index 00000000..199154da --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/net.pcsx2.PCSX2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyljorv0erfvy" +path="res://.godot/imported/net.pcsx2.PCSX2.png-7e193e04f4e905e3176888dc3f1ab832.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/net.pcsx2.PCSX2.png" +dest_files=["res://.godot/imported/net.pcsx2.PCSX2.png-7e193e04f4e905e3176888dc3f1ab832.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/net.retrodeck.retrodeck.png b/tools/configurator/assets/icons/pixelitos/16/net.retrodeck.retrodeck.png new file mode 100644 index 00000000..3a17519d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/net.retrodeck.retrodeck.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/net.retrodeck.retrodeck.png.import b/tools/configurator/assets/icons/pixelitos/16/net.retrodeck.retrodeck.png.import new file mode 100644 index 00000000..c39231db --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/net.retrodeck.retrodeck.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cun21ydlaiowf" +path="res://.godot/imported/net.retrodeck.retrodeck.png-98e972d9f02cea76a00973ab45d3f984.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/net.retrodeck.retrodeck.png" +dest_files=["res://.godot/imported/net.retrodeck.retrodeck.png-98e972d9f02cea76a00973ab45d3f984.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/net.rpcs3.RPCS3.png b/tools/configurator/assets/icons/pixelitos/16/net.rpcs3.RPCS3.png new file mode 100644 index 00000000..7ab2d04a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/net.rpcs3.RPCS3.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/net.rpcs3.RPCS3.png.import b/tools/configurator/assets/icons/pixelitos/16/net.rpcs3.RPCS3.png.import new file mode 100644 index 00000000..f966a3db --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/net.rpcs3.RPCS3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2gmles6ceqya" +path="res://.godot/imported/net.rpcs3.RPCS3.png-002c184a5be273fbc4387bd556fa3460.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/net.rpcs3.RPCS3.png" +dest_files=["res://.godot/imported/net.rpcs3.RPCS3.png-002c184a5be273fbc4387bd556fa3460.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/net.veloren.airshipper.png b/tools/configurator/assets/icons/pixelitos/16/net.veloren.airshipper.png new file mode 100644 index 00000000..5407a9b0 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/net.veloren.airshipper.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/net.veloren.airshipper.png.import b/tools/configurator/assets/icons/pixelitos/16/net.veloren.airshipper.png.import new file mode 100644 index 00000000..e54fce48 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/net.veloren.airshipper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7lpo3mnccxgq" +path="res://.godot/imported/net.veloren.airshipper.png-2003d1db12f8d5c6ccbf0808b7a48c52.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/net.veloren.airshipper.png" +dest_files=["res://.godot/imported/net.veloren.airshipper.png-2003d1db12f8d5c6ccbf0808b7a48c52.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/network-wired.png b/tools/configurator/assets/icons/pixelitos/16/network-wired.png new file mode 100644 index 00000000..24cc0d0f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/network-wired.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/network-wired.png.import b/tools/configurator/assets/icons/pixelitos/16/network-wired.png.import new file mode 100644 index 00000000..86ec9efe --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/network-wired.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpqprsxdxasdy" +path="res://.godot/imported/network-wired.png-60a912dbdd88732efe9ab4daae443017.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/network-wired.png" +dest_files=["res://.godot/imported/network-wired.png-60a912dbdd88732efe9ab4daae443017.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/network-workgroup.png b/tools/configurator/assets/icons/pixelitos/16/network-workgroup.png new file mode 100644 index 00000000..24cc0d0f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/network-workgroup.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/network-workgroup.png.import b/tools/configurator/assets/icons/pixelitos/16/network-workgroup.png.import new file mode 100644 index 00000000..65240120 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/network-workgroup.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp4nne3q8pora" +path="res://.godot/imported/network-workgroup.png-1841de749dc3c890f673198b54d0b511.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/network-workgroup.png" +dest_files=["res://.godot/imported/network-workgroup.png-1841de749dc3c890f673198b54d0b511.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/nl.hjdskes.gcolor3.png b/tools/configurator/assets/icons/pixelitos/16/nl.hjdskes.gcolor3.png new file mode 100644 index 00000000..c2171703 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/nl.hjdskes.gcolor3.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/nl.hjdskes.gcolor3.png.import b/tools/configurator/assets/icons/pixelitos/16/nl.hjdskes.gcolor3.png.import new file mode 100644 index 00000000..7ff11b80 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/nl.hjdskes.gcolor3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhp1d200ml0yt" +path="res://.godot/imported/nl.hjdskes.gcolor3.png-224e6c86a64bfc303a9e6b5362906268.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/nl.hjdskes.gcolor3.png" +dest_files=["res://.godot/imported/nl.hjdskes.gcolor3.png-224e6c86a64bfc303a9e6b5362906268.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/nm-device-wireless.png b/tools/configurator/assets/icons/pixelitos/16/nm-device-wireless.png new file mode 100644 index 00000000..24cc0d0f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/nm-device-wireless.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/nm-device-wireless.png.import b/tools/configurator/assets/icons/pixelitos/16/nm-device-wireless.png.import new file mode 100644 index 00000000..72f413e4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/nm-device-wireless.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cif3n56iv533k" +path="res://.godot/imported/nm-device-wireless.png-4f2a088d01234e898dd6f6f487e36170.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/nm-device-wireless.png" +dest_files=["res://.godot/imported/nm-device-wireless.png-4f2a088d01234e898dd6f6f487e36170.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/nnn.png b/tools/configurator/assets/icons/pixelitos/16/nnn.png new file mode 100644 index 00000000..cf236b7b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/nnn.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/nnn.png.import b/tools/configurator/assets/icons/pixelitos/16/nnn.png.import new file mode 100644 index 00000000..f813fb0a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/nnn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccpoxgcr4skh8" +path="res://.godot/imported/nnn.png-dedb49744dca5117303e32ca9a7b6cdf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/nnn.png" +dest_files=["res://.godot/imported/nnn.png-dedb49744dca5117303e32ca9a7b6cdf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/notepadqq.png b/tools/configurator/assets/icons/pixelitos/16/notepadqq.png new file mode 100644 index 00000000..e13d6d5b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/notepadqq.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/notepadqq.png.import b/tools/configurator/assets/icons/pixelitos/16/notepadqq.png.import new file mode 100644 index 00000000..cb17d43a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/notepadqq.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4uvtwuq8w644" +path="res://.godot/imported/notepadqq.png-af5c993f6eca67b95872d62476ba3208.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/notepadqq.png" +dest_files=["res://.godot/imported/notepadqq.png-af5c993f6eca67b95872d62476ba3208.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/nvim.png b/tools/configurator/assets/icons/pixelitos/16/nvim.png new file mode 100644 index 00000000..622643cc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/nvim.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/nvim.png.import b/tools/configurator/assets/icons/pixelitos/16/nvim.png.import new file mode 100644 index 00000000..03249195 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/nvim.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7kbipqgofuex" +path="res://.godot/imported/nvim.png-74dd143cef43cb5d8be06faa1b57f37b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/nvim.png" +dest_files=["res://.godot/imported/nvim.png-74dd143cef43cb5d8be06faa1b57f37b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/octopi.png b/tools/configurator/assets/icons/pixelitos/16/octopi.png new file mode 100644 index 00000000..20647d16 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/octopi.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/octopi.png.import b/tools/configurator/assets/icons/pixelitos/16/octopi.png.import new file mode 100644 index 00000000..583bb7b4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/octopi.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcmhdph6oy3h0" +path="res://.godot/imported/octopi.png-de1fab0715c6dd9070ee5e6b7df9192d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/octopi.png" +dest_files=["res://.godot/imported/octopi.png-de1fab0715c6dd9070ee5e6b7df9192d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/okular.png b/tools/configurator/assets/icons/pixelitos/16/okular.png new file mode 100644 index 00000000..e83aa422 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/okular.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/okular.png.import b/tools/configurator/assets/icons/pixelitos/16/okular.png.import new file mode 100644 index 00000000..37eda872 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/okular.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2vwo82rcjlg8" +path="res://.godot/imported/okular.png-e538058210716536d62723674156f539.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/okular.png" +dest_files=["res://.godot/imported/okular.png-e538058210716536d62723674156f539.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/openarena-server.png b/tools/configurator/assets/icons/pixelitos/16/openarena-server.png new file mode 100644 index 00000000..3ca33637 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/openarena-server.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/openarena-server.png.import b/tools/configurator/assets/icons/pixelitos/16/openarena-server.png.import new file mode 100644 index 00000000..2c22a5f2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/openarena-server.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f1aqbp0uk47y" +path="res://.godot/imported/openarena-server.png-0b3424e66040b1b4e1973e759e2a921a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/openarena-server.png" +dest_files=["res://.godot/imported/openarena-server.png-0b3424e66040b1b4e1973e759e2a921a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/openarena.png b/tools/configurator/assets/icons/pixelitos/16/openarena.png new file mode 100644 index 00000000..45a81400 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/openarena.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/openarena.png.import b/tools/configurator/assets/icons/pixelitos/16/openarena.png.import new file mode 100644 index 00000000..f3931ca5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/openarena.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdnmtqjr4nyvq" +path="res://.godot/imported/openarena.png-7cfc5ccd27d7e52695198ea49cbb84b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/openarena.png" +dest_files=["res://.godot/imported/openarena.png-7cfc5ccd27d7e52695198ea49cbb84b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/openbor.png b/tools/configurator/assets/icons/pixelitos/16/openbor.png new file mode 100644 index 00000000..a591de65 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/openbor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/openbor.png.import b/tools/configurator/assets/icons/pixelitos/16/openbor.png.import new file mode 100644 index 00000000..cb4a46c9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/openbor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyxw6hxobexic" +path="res://.godot/imported/openbor.png-fd1e7647503d805c2e75403de010a476.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/openbor.png" +dest_files=["res://.godot/imported/openbor.png-fd1e7647503d805c2e75403de010a476.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/opera-beta.png b/tools/configurator/assets/icons/pixelitos/16/opera-beta.png new file mode 100644 index 00000000..63a5b952 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/opera-beta.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/opera-beta.png.import b/tools/configurator/assets/icons/pixelitos/16/opera-beta.png.import new file mode 100644 index 00000000..4cd1af85 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/opera-beta.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1e83pltayxo1" +path="res://.godot/imported/opera-beta.png-7444d8e47424cd375eca248e07943317.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/opera-beta.png" +dest_files=["res://.godot/imported/opera-beta.png-7444d8e47424cd375eca248e07943317.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/opera-developer.png b/tools/configurator/assets/icons/pixelitos/16/opera-developer.png new file mode 100644 index 00000000..d265279b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/opera-developer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/opera-developer.png.import b/tools/configurator/assets/icons/pixelitos/16/opera-developer.png.import new file mode 100644 index 00000000..e277e374 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/opera-developer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r3f1hooovfyv" +path="res://.godot/imported/opera-developer.png-e2b1edc820741dac3111db7b4aa22bef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/opera-developer.png" +dest_files=["res://.godot/imported/opera-developer.png-e2b1edc820741dac3111db7b4aa22bef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/opera.png b/tools/configurator/assets/icons/pixelitos/16/opera.png new file mode 100644 index 00000000..62ef4c62 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/opera.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/opera.png.import b/tools/configurator/assets/icons/pixelitos/16/opera.png.import new file mode 100644 index 00000000..ca6c7b43 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/opera.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt6lscyalqlu6" +path="res://.godot/imported/opera.png-a8785d94df88079ed761f7242173087d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/opera.png" +dest_files=["res://.godot/imported/opera.png-a8785d94df88079ed761f7242173087d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.DolphinEmu.dolphin-emu.png b/tools/configurator/assets/icons/pixelitos/16/org.DolphinEmu.dolphin-emu.png new file mode 100644 index 00000000..6e56ca02 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.DolphinEmu.dolphin-emu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.DolphinEmu.dolphin-emu.png.import b/tools/configurator/assets/icons/pixelitos/16/org.DolphinEmu.dolphin-emu.png.import new file mode 100644 index 00000000..176c5966 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.DolphinEmu.dolphin-emu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du7kd6j4lyvcm" +path="res://.godot/imported/org.DolphinEmu.dolphin-emu.png-7f096726fc198b4bc687ebc7db123987.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.DolphinEmu.dolphin-emu.png" +dest_files=["res://.godot/imported/org.DolphinEmu.dolphin-emu.png-7f096726fc198b4bc687ebc7db123987.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.citra_emu.citra.png b/tools/configurator/assets/icons/pixelitos/16/org.citra_emu.citra.png new file mode 100644 index 00000000..9d2f7a20 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.citra_emu.citra.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.citra_emu.citra.png.import b/tools/configurator/assets/icons/pixelitos/16/org.citra_emu.citra.png.import new file mode 100644 index 00000000..d4acd591 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.citra_emu.citra.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p2yjf1kb775k" +path="res://.godot/imported/org.citra_emu.citra.png-bd33ba020e6b8762ad9047d0f6fca25d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.citra_emu.citra.png" +dest_files=["res://.godot/imported/org.citra_emu.citra.png-bd33ba020e6b8762ad9047d0f6fca25d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.ArchiveManager.png b/tools/configurator/assets/icons/pixelitos/16/org.gnome.ArchiveManager.png new file mode 100644 index 00000000..f94f6e1e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.gnome.ArchiveManager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.ArchiveManager.png.import b/tools/configurator/assets/icons/pixelitos/16/org.gnome.ArchiveManager.png.import new file mode 100644 index 00000000..2dc9844f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.gnome.ArchiveManager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2mcmjsuuhfvn" +path="res://.godot/imported/org.gnome.ArchiveManager.png-6cc6c570f5246d7c6d7b7dfd597ed752.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.gnome.ArchiveManager.png" +dest_files=["res://.godot/imported/org.gnome.ArchiveManager.png-6cc6c570f5246d7c6d7b7dfd597ed752.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.Nautilus.png b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Nautilus.png new file mode 100644 index 00000000..77e06888 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Nautilus.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.Nautilus.png.import b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Nautilus.png.import new file mode 100644 index 00000000..caac5636 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Nautilus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjcfg3bcgj3t4" +path="res://.godot/imported/org.gnome.Nautilus.png-05ba453446d9169d05743a89e6cd9e9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.gnome.Nautilus.png" +dest_files=["res://.godot/imported/org.gnome.Nautilus.png-05ba453446d9169d05743a89e6cd9e9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.Screenshot.png b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Screenshot.png new file mode 100644 index 00000000..cd86d42d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Screenshot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.Screenshot.png.import b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Screenshot.png.import new file mode 100644 index 00000000..ecf1f14f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Screenshot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3ah1cfj4gtdt" +path="res://.godot/imported/org.gnome.Screenshot.png-5f1e1cfa0ea9a14cfa44f3fb5b96f3a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.gnome.Screenshot.png" +dest_files=["res://.godot/imported/org.gnome.Screenshot.png-5f1e1cfa0ea9a14cfa44f3fb5b96f3a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.Yelp.png b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Yelp.png new file mode 100644 index 00000000..0e8b1912 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Yelp.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.Yelp.png.import b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Yelp.png.import new file mode 100644 index 00000000..6c3d7643 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Yelp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv73q6cn2f1ar" +path="res://.godot/imported/org.gnome.Yelp.png-26e7f4e6e1d31a4c9ca1b29380b9d7cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.gnome.Yelp.png" +dest_files=["res://.godot/imported/org.gnome.Yelp.png-26e7f4e6e1d31a4c9ca1b29380b9d7cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.clocks.png b/tools/configurator/assets/icons/pixelitos/16/org.gnome.clocks.png new file mode 100644 index 00000000..22ee5f71 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.gnome.clocks.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.clocks.png.import b/tools/configurator/assets/icons/pixelitos/16/org.gnome.clocks.png.import new file mode 100644 index 00000000..8aad125d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.gnome.clocks.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b72vy3ilt8vgn" +path="res://.godot/imported/org.gnome.clocks.png-5a530d9aba8da7c31dda78866516a995.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.gnome.clocks.png" +dest_files=["res://.godot/imported/org.gnome.clocks.png-5a530d9aba8da7c31dda78866516a995.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gtk.IconBrowser4.png b/tools/configurator/assets/icons/pixelitos/16/org.gtk.IconBrowser4.png new file mode 100644 index 00000000..64d42472 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.gtk.IconBrowser4.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gtk.IconBrowser4.png.import b/tools/configurator/assets/icons/pixelitos/16/org.gtk.IconBrowser4.png.import new file mode 100644 index 00000000..62a06d97 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.gtk.IconBrowser4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cc2wwcvgcbmrd" +path="res://.godot/imported/org.gtk.IconBrowser4.png-73dae9b5b25b21bf0ceefc6e9be03a9b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.gtk.IconBrowser4.png" +dest_files=["res://.godot/imported/org.gtk.IconBrowser4.png-73dae9b5b25b21bf0ceefc6e9be03a9b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.inkscape.Inkscape.png b/tools/configurator/assets/icons/pixelitos/16/org.inkscape.Inkscape.png new file mode 100644 index 00000000..c06d6369 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.inkscape.Inkscape.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.inkscape.Inkscape.png.import b/tools/configurator/assets/icons/pixelitos/16/org.inkscape.Inkscape.png.import new file mode 100644 index 00000000..166e1a2d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.inkscape.Inkscape.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bu0hbafdygr88" +path="res://.godot/imported/org.inkscape.Inkscape.png-061df928dfed8ef067b57680edcb6db5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.inkscape.Inkscape.png" +dest_files=["res://.godot/imported/org.inkscape.Inkscape.png-061df928dfed8ef067b57680edcb6db5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.mamedev.MAME.png b/tools/configurator/assets/icons/pixelitos/16/org.mamedev.MAME.png new file mode 100644 index 00000000..c4c264d0 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.mamedev.MAME.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.mamedev.MAME.png.import b/tools/configurator/assets/icons/pixelitos/16/org.mamedev.MAME.png.import new file mode 100644 index 00000000..b4928423 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.mamedev.MAME.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0sqfj4pjyd2h" +path="res://.godot/imported/org.mamedev.MAME.png-037b5f3e522db848a08c11ae7dd1fc66.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.mamedev.MAME.png" +dest_files=["res://.godot/imported/org.mamedev.MAME.png-037b5f3e522db848a08c11ae7dd1fc66.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.midori_browser.Midori.png b/tools/configurator/assets/icons/pixelitos/16/org.midori_browser.Midori.png new file mode 100644 index 00000000..7a9b9839 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.midori_browser.Midori.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.midori_browser.Midori.png.import b/tools/configurator/assets/icons/pixelitos/16/org.midori_browser.Midori.png.import new file mode 100644 index 00000000..e6e34514 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.midori_browser.Midori.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lwpunxi8qslb" +path="res://.godot/imported/org.midori_browser.Midori.png-d066b6a169822e1f2d88708df6569ce6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.midori_browser.Midori.png" +dest_files=["res://.godot/imported/org.midori_browser.Midori.png-d066b6a169822e1f2d88708df6569ce6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.openmw.OpenMW.png b/tools/configurator/assets/icons/pixelitos/16/org.openmw.OpenMW.png new file mode 100644 index 00000000..1c547c85 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.openmw.OpenMW.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.openmw.OpenMW.png.import b/tools/configurator/assets/icons/pixelitos/16/org.openmw.OpenMW.png.import new file mode 100644 index 00000000..79174227 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.openmw.OpenMW.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nha16jes77rx" +path="res://.godot/imported/org.openmw.OpenMW.png-f946f9c0c3ef7270ff1cc454a3821115.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.openmw.OpenMW.png" +dest_files=["res://.godot/imported/org.openmw.OpenMW.png-f946f9c0c3ef7270ff1cc454a3821115.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.openttd.OpenTTD.png b/tools/configurator/assets/icons/pixelitos/16/org.openttd.OpenTTD.png new file mode 100644 index 00000000..ed5fd37a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.openttd.OpenTTD.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.openttd.OpenTTD.png.import b/tools/configurator/assets/icons/pixelitos/16/org.openttd.OpenTTD.png.import new file mode 100644 index 00000000..1b154b62 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.openttd.OpenTTD.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctktgd2t1o0ai" +path="res://.godot/imported/org.openttd.OpenTTD.png-fa5ae261bba60889c756818c3a28c26b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.openttd.OpenTTD.png" +dest_files=["res://.godot/imported/org.openttd.OpenTTD.png-fa5ae261bba60889c756818c3a28c26b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP.png b/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP.png new file mode 100644 index 00000000..54afd901 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP.png.import b/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP.png.import new file mode 100644 index 00000000..135f01c1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bum1mqj0pfrff" +path="res://.godot/imported/org.ppsspp.PPSSPP.png-f3d677c5ef5b9a8e676dfad2b4b7aad9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.ppsspp.PPSSPP.png" +dest_files=["res://.godot/imported/org.ppsspp.PPSSPP.png-f3d677c5ef5b9a8e676dfad2b4b7aad9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP_.png b/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP_.png new file mode 100644 index 00000000..24c86078 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP_.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP_.png.import b/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP_.png.import new file mode 100644 index 00000000..ff5715ea --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP_.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buu8rqln4qdfu" +path="res://.godot/imported/org.ppsspp.PPSSPP_.png-70c5a5a3a41e36f238abf53cfa0a2789.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.ppsspp.PPSSPP_.png" +dest_files=["res://.godot/imported/org.ppsspp.PPSSPP_.png-70c5a5a3a41e36f238abf53cfa0a2789.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.prismlauncher.PrismLauncher.png b/tools/configurator/assets/icons/pixelitos/16/org.prismlauncher.PrismLauncher.png new file mode 100644 index 00000000..7998042c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.prismlauncher.PrismLauncher.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.prismlauncher.PrismLauncher.png.import b/tools/configurator/assets/icons/pixelitos/16/org.prismlauncher.PrismLauncher.png.import new file mode 100644 index 00000000..5ccdabc6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.prismlauncher.PrismLauncher.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvr0vqplyynln" +path="res://.godot/imported/org.prismlauncher.PrismLauncher.png-07e164a314679fe4b0835f9ae129f321.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.prismlauncher.PrismLauncher.png" +dest_files=["res://.godot/imported/org.prismlauncher.PrismLauncher.png-07e164a314679fe4b0835f9ae129f321.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.rnd2.cpupower-gui.png b/tools/configurator/assets/icons/pixelitos/16/org.rnd2.cpupower-gui.png new file mode 100644 index 00000000..99ddb5e1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.rnd2.cpupower-gui.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.rnd2.cpupower-gui.png.import b/tools/configurator/assets/icons/pixelitos/16/org.rnd2.cpupower-gui.png.import new file mode 100644 index 00000000..74419933 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.rnd2.cpupower-gui.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lsi3lmo88sb7" +path="res://.godot/imported/org.rnd2.cpupower-gui.png-a40304d03499ce8685c2fbc386bb510d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.rnd2.cpupower-gui.png" +dest_files=["res://.godot/imported/org.rnd2.cpupower-gui.png-a40304d03499ce8685c2fbc386bb510d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.ryujinx.Ryujinx.png b/tools/configurator/assets/icons/pixelitos/16/org.ryujinx.Ryujinx.png new file mode 100644 index 00000000..604f23bf Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.ryujinx.Ryujinx.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.ryujinx.Ryujinx.png.import b/tools/configurator/assets/icons/pixelitos/16/org.ryujinx.Ryujinx.png.import new file mode 100644 index 00000000..9ba22ff7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.ryujinx.Ryujinx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hrlmj3pmha5t" +path="res://.godot/imported/org.ryujinx.Ryujinx.png-4c351c857fe2f9740f11bfd050c66337.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.ryujinx.Ryujinx.png" +dest_files=["res://.godot/imported/org.ryujinx.Ryujinx.png-4c351c857fe2f9740f11bfd050c66337.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.about.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.about.png new file mode 100644 index 00000000..44b33e80 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.about.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.about.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.about.png.import new file mode 100644 index 00000000..418cc8a8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.about.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwcp67onjq824" +path="res://.godot/imported/org.xfce.about.png-a66c7b7f85a744d1c11fb5851ea8a62a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.about.png" +dest_files=["res://.godot/imported/org.xfce.about.png-a66c7b7f85a744d1c11fb5851ea8a62a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.appfinder.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.appfinder.png new file mode 100644 index 00000000..4f1d91fc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.appfinder.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.appfinder.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.appfinder.png.import new file mode 100644 index 00000000..8bdf189b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.appfinder.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf5ny8suf3skw" +path="res://.godot/imported/org.xfce.appfinder.png-36a7fb2a29275e01504d402474117897.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.appfinder.png" +dest_files=["res://.godot/imported/org.xfce.appfinder.png-36a7fb2a29275e01504d402474117897.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.filemanager.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.filemanager.png new file mode 100644 index 00000000..77e06888 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.filemanager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.filemanager.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.filemanager.png.import new file mode 100644 index 00000000..f5b8ada8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.filemanager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://co37mhpomsm5k" +path="res://.godot/imported/org.xfce.filemanager.png-30b6aa56ac2e2a09e9be7eb060fb0f33.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.filemanager.png" +dest_files=["res://.godot/imported/org.xfce.filemanager.png-30b6aa56ac2e2a09e9be7eb060fb0f33.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.garcon.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.garcon.png new file mode 100644 index 00000000..b9c05361 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.garcon.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.garcon.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.garcon.png.import new file mode 100644 index 00000000..77a2c2f9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.garcon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2gcl1s3kkq3w" +path="res://.godot/imported/org.xfce.garcon.png-c11059a9935d671a8b40787df039cd86.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.garcon.png" +dest_files=["res://.godot/imported/org.xfce.garcon.png-c11059a9935d671a8b40787df039cd86.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.mailreader.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.mailreader.png new file mode 100644 index 00000000..9533dc87 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.mailreader.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.mailreader.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.mailreader.png.import new file mode 100644 index 00000000..9f05cd98 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.mailreader.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqokc3afgdgwl" +path="res://.godot/imported/org.xfce.mailreader.png-acdb445240e7da3bdb5f5993993bd450.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.mailreader.png" +dest_files=["res://.godot/imported/org.xfce.mailreader.png-acdb445240e7da3bdb5f5993993bd450.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.notification.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.notification.png new file mode 100644 index 00000000..15912542 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.notification.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.notification.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.notification.png.import new file mode 100644 index 00000000..00f1e8e4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.notification.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhqr4n32qyx7j" +path="res://.godot/imported/org.xfce.notification.png-7baa6917e0703e05f9b2634ae18914c1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.notification.png" +dest_files=["res://.godot/imported/org.xfce.notification.png-7baa6917e0703e05f9b2634ae18914c1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.actions.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.actions.png new file mode 100644 index 00000000..933ee6a7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.actions.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.actions.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.actions.png.import new file mode 100644 index 00000000..002324c4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.actions.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yul4oi0rbom0" +path="res://.godot/imported/org.xfce.panel.actions.png-27d53e6c886051cd7897f8f47067fe91.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.panel.actions.png" +dest_files=["res://.godot/imported/org.xfce.panel.actions.png-27d53e6c886051cd7897f8f47067fe91.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.applicationsmenu.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.applicationsmenu.png new file mode 100644 index 00000000..44b33e80 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.applicationsmenu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.applicationsmenu.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.applicationsmenu.png.import new file mode 100644 index 00000000..9cc79aa4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.applicationsmenu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv1a1fj4w55jp" +path="res://.godot/imported/org.xfce.panel.applicationsmenu.png-2581cc5e977993815757389dd480e611.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.panel.applicationsmenu.png" +dest_files=["res://.godot/imported/org.xfce.panel.applicationsmenu.png-2581cc5e977993815757389dd480e611.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.png new file mode 100644 index 00000000..6c71f919 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.png.import new file mode 100644 index 00000000..1e2b4fd9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmfivi50t2asm" +path="res://.godot/imported/org.xfce.panel.png-c3f2be6c956f645b87c1de62fe5d7820.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.panel.png" +dest_files=["res://.godot/imported/org.xfce.panel.png-c3f2be6c956f645b87c1de62fe5d7820.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.tasklist.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.tasklist.png new file mode 100644 index 00000000..6c71f919 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.tasklist.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.tasklist.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.tasklist.png.import new file mode 100644 index 00000000..149910af --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.tasklist.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcx6il2ck3136" +path="res://.godot/imported/org.xfce.panel.tasklist.png-c5c0b0bc6cc2f73f5f19463ad44adcdc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.panel.tasklist.png" +dest_files=["res://.godot/imported/org.xfce.panel.tasklist.png-c5c0b0bc6cc2f73f5f19463ad44adcdc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.whiskermenu.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.whiskermenu.png new file mode 100644 index 00000000..44b33e80 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.whiskermenu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.whiskermenu.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.whiskermenu.png.import new file mode 100644 index 00000000..6433ff1b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.whiskermenu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o66g0htjj5yy" +path="res://.godot/imported/org.xfce.panel.whiskermenu.png-51446df856ff13f503b581f007d98ee4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.panel.whiskermenu.png" +dest_files=["res://.godot/imported/org.xfce.panel.whiskermenu.png-51446df856ff13f503b581f007d98ee4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.windowmenu.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.windowmenu.png new file mode 100644 index 00000000..b9c05361 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.windowmenu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.windowmenu.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.windowmenu.png.import new file mode 100644 index 00000000..8f804c77 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.windowmenu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6hu6nwnodggt" +path="res://.godot/imported/org.xfce.panel.windowmenu.png-02cd501fdab8fb1160560157990e5107.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.panel.windowmenu.png" +dest_files=["res://.godot/imported/org.xfce.panel.windowmenu.png-02cd501fdab8fb1160560157990e5107.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.powermanager.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.powermanager.png new file mode 100644 index 00000000..035ae5ef Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.powermanager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.powermanager.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.powermanager.png.import new file mode 100644 index 00000000..aab5674d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.powermanager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfl4fx141ngyj" +path="res://.godot/imported/org.xfce.powermanager.png-3db3f9b2a47ba9e04594bfe87de381f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.powermanager.png" +dest_files=["res://.godot/imported/org.xfce.powermanager.png-3db3f9b2a47ba9e04594bfe87de381f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.session.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.session.png new file mode 100644 index 00000000..65460949 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.session.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.session.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.session.png.import new file mode 100644 index 00000000..4d3f0af5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.session.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgf54yv6jwm01" +path="res://.godot/imported/org.xfce.session.png-d1043828ecf1990df809d466782df966.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.session.png" +dest_files=["res://.godot/imported/org.xfce.session.png-d1043828ecf1990df809d466782df966.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.accessibility.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.accessibility.png new file mode 100644 index 00000000..71112dbc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.accessibility.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.accessibility.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.accessibility.png.import new file mode 100644 index 00000000..60e485c3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.accessibility.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbistoey5xott" +path="res://.godot/imported/org.xfce.settings.accessibility.png-93533fa194363a020734ae40cd0051d3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.accessibility.png" +dest_files=["res://.godot/imported/org.xfce.settings.accessibility.png-93533fa194363a020734ae40cd0051d3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.appearance.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.appearance.png new file mode 100644 index 00000000..31f776b4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.appearance.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.appearance.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.appearance.png.import new file mode 100644 index 00000000..3c9b6f0d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.appearance.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bia24qoyb6qcx" +path="res://.godot/imported/org.xfce.settings.appearance.png-661546795fae00496f33c54a947a3956.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.appearance.png" +dest_files=["res://.godot/imported/org.xfce.settings.appearance.png-661546795fae00496f33c54a947a3956.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.color.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.color.png new file mode 100644 index 00000000..d6de2445 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.color.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.color.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.color.png.import new file mode 100644 index 00000000..a5435c19 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.color.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chh012frbla0o" +path="res://.godot/imported/org.xfce.settings.color.png-f77917750b0d38d1e6f4b95f1d75dbb1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.color.png" +dest_files=["res://.godot/imported/org.xfce.settings.color.png-f77917750b0d38d1e6f4b95f1d75dbb1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.default-applications.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.default-applications.png new file mode 100644 index 00000000..0b273a9f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.default-applications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.default-applications.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.default-applications.png.import new file mode 100644 index 00000000..ba10ed12 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.default-applications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvhekbcxjlry5" +path="res://.godot/imported/org.xfce.settings.default-applications.png-87df4cde2b5b850345969bc64e9a5871.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.default-applications.png" +dest_files=["res://.godot/imported/org.xfce.settings.default-applications.png-87df4cde2b5b850345969bc64e9a5871.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.display.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.display.png new file mode 100644 index 00000000..ce878051 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.display.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.display.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.display.png.import new file mode 100644 index 00000000..a8674b40 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.display.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dynuranek4e2v" +path="res://.godot/imported/org.xfce.settings.display.png-e80dec6573aaab806d045a4115beae6e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.display.png" +dest_files=["res://.godot/imported/org.xfce.settings.display.png-e80dec6573aaab806d045a4115beae6e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.editor.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.editor.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.editor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.editor.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.editor.png.import new file mode 100644 index 00000000..e7e6e16b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.editor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ed28akply7xg" +path="res://.godot/imported/org.xfce.settings.editor.png-6f68cd2db2d317f318d3f169cd8bad38.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.editor.png" +dest_files=["res://.godot/imported/org.xfce.settings.editor.png-6f68cd2db2d317f318d3f169cd8bad38.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.keyboard.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.keyboard.png new file mode 100644 index 00000000..2a577eb2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.keyboard.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.keyboard.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.keyboard.png.import new file mode 100644 index 00000000..14aaa8b3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.keyboard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2ytuk3nolulh" +path="res://.godot/imported/org.xfce.settings.keyboard.png-223c26df080ab222223ebd7610051880.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.keyboard.png" +dest_files=["res://.godot/imported/org.xfce.settings.keyboard.png-223c26df080ab222223ebd7610051880.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.manager.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.manager.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.manager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.manager.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.manager.png.import new file mode 100644 index 00000000..92aa2cc7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.manager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsqn3ch8h3nne" +path="res://.godot/imported/org.xfce.settings.manager.png-0f2f007fbda2297afc3fd07e4f4cb773.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.manager.png" +dest_files=["res://.godot/imported/org.xfce.settings.manager.png-0f2f007fbda2297afc3fd07e4f4cb773.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.mouse.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.mouse.png new file mode 100644 index 00000000..f22eacca Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.mouse.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.mouse.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.mouse.png.import new file mode 100644 index 00000000..601fd3e9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.mouse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u1011hgs3tkx" +path="res://.godot/imported/org.xfce.settings.mouse.png-4dd39d90fe2d2c912d2d73af91df3dbc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.mouse.png" +dest_files=["res://.godot/imported/org.xfce.settings.mouse.png-4dd39d90fe2d2c912d2d73af91df3dbc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal-settings.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal-settings.png new file mode 100644 index 00000000..ed8a1c2b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal-settings.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal-settings.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal-settings.png.import new file mode 100644 index 00000000..0a725418 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal-settings.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b870j1m7iegvv" +path="res://.godot/imported/org.xfce.terminal-settings.png-5fc70e4f55fce672952233170ee9f96e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.terminal-settings.png" +dest_files=["res://.godot/imported/org.xfce.terminal-settings.png-5fc70e4f55fce672952233170ee9f96e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal.png new file mode 100644 index 00000000..ed8a1c2b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal.png.import new file mode 100644 index 00000000..dc29536e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpykpi6o2og2r" +path="res://.godot/imported/org.xfce.terminal.png-45f9db63c63ff7830cbc6c476d27ebac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.terminal.png" +dest_files=["res://.godot/imported/org.xfce.terminal.png-45f9db63c63ff7830cbc6c476d27ebac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminalemulator.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminalemulator.png new file mode 100644 index 00000000..ed8a1c2b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminalemulator.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminalemulator.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminalemulator.png.import new file mode 100644 index 00000000..9321f1e6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminalemulator.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqfyk1uusseue" +path="res://.godot/imported/org.xfce.terminalemulator.png-f28e77455486c9acdefe66205820681e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.terminalemulator.png" +dest_files=["res://.godot/imported/org.xfce.terminalemulator.png-f28e77455486c9acdefe66205820681e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.thunar.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.thunar.png new file mode 100644 index 00000000..77e06888 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.thunar.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.thunar.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.thunar.png.import new file mode 100644 index 00000000..0f12e979 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.thunar.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt40bcd4q1cge" +path="res://.godot/imported/org.xfce.thunar.png-7acd5f7299ecf650849cb5d3ee5798ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.thunar.png" +dest_files=["res://.godot/imported/org.xfce.thunar.png-7acd5f7299ecf650849cb5d3ee5798ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.tumbler.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.tumbler.png new file mode 100644 index 00000000..0bdbb16c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.tumbler.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.tumbler.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.tumbler.png.import new file mode 100644 index 00000000..af12e56d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.tumbler.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn76eg7lrk667" +path="res://.godot/imported/org.xfce.tumbler.png-c8f9d08654760a6cd9b5fdeb937418fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.tumbler.png" +dest_files=["res://.godot/imported/org.xfce.tumbler.png-c8f9d08654760a6cd9b5fdeb937418fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.volman.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.volman.png new file mode 100644 index 00000000..83c09b8e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.volman.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.volman.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.volman.png.import new file mode 100644 index 00000000..8153ddf9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.volman.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbtod0i0xmq0n" +path="res://.godot/imported/org.xfce.volman.png-f046606d234aea49999cd1321103be66.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.volman.png" +dest_files=["res://.godot/imported/org.xfce.volman.png-f046606d234aea49999cd1321103be66.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.webbrowser.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.webbrowser.png new file mode 100644 index 00000000..88f0a50d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.webbrowser.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.webbrowser.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.webbrowser.png.import new file mode 100644 index 00000000..9dd6b64c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.webbrowser.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgqe4crqoksyx" +path="res://.godot/imported/org.xfce.webbrowser.png-e4b5b9c513e65d1ea17c40a54e9c8257.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.webbrowser.png" +dest_files=["res://.godot/imported/org.xfce.webbrowser.png-e4b5b9c513e65d1ea17c40a54e9c8257.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.workspaces.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.workspaces.png new file mode 100644 index 00000000..a03ea0be Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.workspaces.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.workspaces.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.workspaces.png.import new file mode 100644 index 00000000..7c23aed1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.workspaces.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wpjwggxb0xpi" +path="res://.godot/imported/org.xfce.workspaces.png-936b0a43d7ba97967317c303793ead6b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.workspaces.png" +dest_files=["res://.godot/imported/org.xfce.workspaces.png-936b0a43d7ba97967317c303793ead6b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfdesktop.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfdesktop.png new file mode 100644 index 00000000..7c519310 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfdesktop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfdesktop.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfdesktop.png.import new file mode 100644 index 00000000..c3c1b085 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfdesktop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxqqex7nt6pw1" +path="res://.godot/imported/org.xfce.xfdesktop.png-90d9ed2b688bcbdd9195376171f49f47.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.xfdesktop.png" +dest_files=["res://.godot/imported/org.xfce.xfdesktop.png-90d9ed2b688bcbdd9195376171f49f47.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4-tweaks.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4-tweaks.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4-tweaks.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4-tweaks.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4-tweaks.png.import new file mode 100644 index 00000000..101e0008 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4-tweaks.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb1dsanh76hp2" +path="res://.godot/imported/org.xfce.xfwm4-tweaks.png-4edef579d9857d639b79a675ac20d192.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.xfwm4-tweaks.png" +dest_files=["res://.godot/imported/org.xfce.xfwm4-tweaks.png-4edef579d9857d639b79a675ac20d192.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4.png new file mode 100644 index 00000000..004f34cd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4.png.import new file mode 100644 index 00000000..0c9ca2be --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbdx1hyg82dti" +path="res://.godot/imported/org.xfce.xfwm4.png-4e660e6b97cc24b183beeb11a27f5f24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.xfwm4.png" +dest_files=["res://.godot/imported/org.xfce.xfwm4.png-4e660e6b97cc24b183beeb11a27f5f24.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.yuzu_emu.yuzu.png b/tools/configurator/assets/icons/pixelitos/16/org.yuzu_emu.yuzu.png new file mode 100644 index 00000000..5494bbaf Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.yuzu_emu.yuzu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.yuzu_emu.yuzu.png.import b/tools/configurator/assets/icons/pixelitos/16/org.yuzu_emu.yuzu.png.import new file mode 100644 index 00000000..b78fc8ca --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.yuzu_emu.yuzu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1hjps1wpnsvt" +path="res://.godot/imported/org.yuzu_emu.yuzu.png-d516bd818951c54eb7ddfa9b4e248b45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.yuzu_emu.yuzu.png" +dest_files=["res://.godot/imported/org.yuzu_emu.yuzu.png-d516bd818951c54eb7ddfa9b4e248b45.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.zdoom.GZDoom.png b/tools/configurator/assets/icons/pixelitos/16/org.zdoom.GZDoom.png new file mode 100644 index 00000000..0cf56591 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.zdoom.GZDoom.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.zdoom.GZDoom.png.import b/tools/configurator/assets/icons/pixelitos/16/org.zdoom.GZDoom.png.import new file mode 100644 index 00000000..2fbed2be --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.zdoom.GZDoom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgejbfwthuvpk" +path="res://.godot/imported/org.zdoom.GZDoom.png-28bc1e29b0bfbb21d25aaa8763b86d02.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.zdoom.GZDoom.png" +dest_files=["res://.godot/imported/org.zdoom.GZDoom.png-28bc1e29b0bfbb21d25aaa8763b86d02.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/oricutron.png b/tools/configurator/assets/icons/pixelitos/16/oricutron.png new file mode 100644 index 00000000..c1c724ea Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/oricutron.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/oricutron.png.import b/tools/configurator/assets/icons/pixelitos/16/oricutron.png.import new file mode 100644 index 00000000..dadf1e9b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/oricutron.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dae2syr0t3xf7" +path="res://.godot/imported/oricutron.png-41a6bab6a207b41204a0fe50d3cf1826.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/oricutron.png" +dest_files=["res://.godot/imported/oricutron.png-41a6bab6a207b41204a0fe50d3cf1826.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/pcsxr-icon.png b/tools/configurator/assets/icons/pixelitos/16/pcsxr-icon.png new file mode 100644 index 00000000..f1af0b57 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/pcsxr-icon.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/pcsxr-icon.png.import b/tools/configurator/assets/icons/pixelitos/16/pcsxr-icon.png.import new file mode 100644 index 00000000..b90a3ebb --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/pcsxr-icon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://01728drco4o4" +path="res://.godot/imported/pcsxr-icon.png-8917afafc3f1e660bd5c0e50da790609.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/pcsxr-icon.png" +dest_files=["res://.godot/imported/pcsxr-icon.png-8917afafc3f1e660bd5c0e50da790609.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/picom.png b/tools/configurator/assets/icons/pixelitos/16/picom.png new file mode 100644 index 00000000..76349c4c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/picom.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/picom.png.import b/tools/configurator/assets/icons/pixelitos/16/picom.png.import new file mode 100644 index 00000000..c4daf96e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/picom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4sgwyv0jbsu1" +path="res://.godot/imported/picom.png-ef1986fc454441d1a642b5b06966273c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/picom.png" +dest_files=["res://.godot/imported/picom.png-ef1986fc454441d1a642b5b06966273c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/plasma-search.png b/tools/configurator/assets/icons/pixelitos/16/plasma-search.png new file mode 100644 index 00000000..4f1d91fc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/plasma-search.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/plasma-search.png.import b/tools/configurator/assets/icons/pixelitos/16/plasma-search.png.import new file mode 100644 index 00000000..d34276dc --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/plasma-search.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4cxjx6r5p8nh" +path="res://.godot/imported/plasma-search.png-735378940b6c67d3137d3d624dba6562.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/plasma-search.png" +dest_files=["res://.godot/imported/plasma-search.png-735378940b6c67d3137d3d624dba6562.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/plasma.png b/tools/configurator/assets/icons/pixelitos/16/plasma.png new file mode 100644 index 00000000..6c0d2d4c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/plasma.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/plasma.png.import b/tools/configurator/assets/icons/pixelitos/16/plasma.png.import new file mode 100644 index 00000000..bec06136 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/plasma.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7mfq1ri1aqmp" +path="res://.godot/imported/plasma.png-c6018396c6be27623a15d265e28c380e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/plasma.png" +dest_files=["res://.godot/imported/plasma.png-c6018396c6be27623a15d265e28c380e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/plasmashell.png b/tools/configurator/assets/icons/pixelitos/16/plasmashell.png new file mode 100644 index 00000000..6c0d2d4c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/plasmashell.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/plasmashell.png.import b/tools/configurator/assets/icons/pixelitos/16/plasmashell.png.import new file mode 100644 index 00000000..af9733e1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/plasmashell.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c14vif2ujrpah" +path="res://.godot/imported/plasmashell.png-2087bea5d0258667796a94afc624b5a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/plasmashell.png" +dest_files=["res://.godot/imported/plasmashell.png-2087bea5d0258667796a94afc624b5a9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/playonlinux.png b/tools/configurator/assets/icons/pixelitos/16/playonlinux.png new file mode 100644 index 00000000..bb0889fe Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/playonlinux.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/playonlinux.png.import b/tools/configurator/assets/icons/pixelitos/16/playonlinux.png.import new file mode 100644 index 00000000..ac872f30 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/playonlinux.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c72he282v60dh" +path="res://.godot/imported/playonlinux.png-0efbe94457ea618be9c7219d1f75d693.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/playonlinux.png" +dest_files=["res://.godot/imported/playonlinux.png-0efbe94457ea618be9c7219d1f75d693.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/portal2.png b/tools/configurator/assets/icons/pixelitos/16/portal2.png new file mode 100644 index 00000000..f7a067b3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/portal2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/portal2.png.import b/tools/configurator/assets/icons/pixelitos/16/portal2.png.import new file mode 100644 index 00000000..987d767d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/portal2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2vltke8wdy1e" +path="res://.godot/imported/portal2.png-51e281228f5c3932544c7898c1e5f02c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/portal2.png" +dest_files=["res://.godot/imported/portal2.png-51e281228f5c3932544c7898c1e5f02c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/portmaster.png b/tools/configurator/assets/icons/pixelitos/16/portmaster.png new file mode 100644 index 00000000..3da7cb4a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/portmaster.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/portmaster.png.import b/tools/configurator/assets/icons/pixelitos/16/portmaster.png.import new file mode 100644 index 00000000..1b36f3bb --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/portmaster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk752lj5kwueq" +path="res://.godot/imported/portmaster.png-c092ba49485bf5f8fca6713d5a7dcf77.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/portmaster.png" +dest_files=["res://.godot/imported/portmaster.png-c092ba49485bf5f8fca6713d5a7dcf77.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-accessibility.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-accessibility.png new file mode 100644 index 00000000..71112dbc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-accessibility.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-accessibility.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-accessibility.png.import new file mode 100644 index 00000000..5cbf3e1f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-accessibility.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c35qwkfw3scqc" +path="res://.godot/imported/preferences-desktop-accessibility.png-75273d2d7bc377d62114b17b779c0ea8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-accessibility.png" +dest_files=["res://.godot/imported/preferences-desktop-accessibility.png-75273d2d7bc377d62114b17b779c0ea8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-activities.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-activities.png new file mode 100644 index 00000000..a03ea0be Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-activities.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-activities.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-activities.png.import new file mode 100644 index 00000000..d1581c8d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-activities.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhh411lvgak6x" +path="res://.godot/imported/preferences-desktop-activities.png-be9947e634977e435a1e89e856dd4cc0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-activities.png" +dest_files=["res://.godot/imported/preferences-desktop-activities.png-be9947e634977e435a1e89e856dd4cc0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-baloo.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-baloo.png new file mode 100644 index 00000000..4f1d91fc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-baloo.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-baloo.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-baloo.png.import new file mode 100644 index 00000000..d1d1dcd1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-baloo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g3kbuut4p8rp" +path="res://.godot/imported/preferences-desktop-baloo.png-4e6a1233daa2b235cdd793d053dd3620.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-baloo.png" +dest_files=["res://.godot/imported/preferences-desktop-baloo.png-4e6a1233daa2b235cdd793d053dd3620.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-color.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-color.png new file mode 100644 index 00000000..d6de2445 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-color.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-color.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-color.png.import new file mode 100644 index 00000000..b70eb282 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-color.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk7wbka4qj6gb" +path="res://.godot/imported/preferences-desktop-color.png-540fee3c1f215e0aae8559e9532559ed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-color.png" +dest_files=["res://.godot/imported/preferences-desktop-color.png-540fee3c1f215e0aae8559e9532559ed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-cursors.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-cursors.png new file mode 100644 index 00000000..6f5b3c7b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-cursors.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-cursors.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-cursors.png.import new file mode 100644 index 00000000..52e60254 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-cursors.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bv5u500iou4t7" +path="res://.godot/imported/preferences-desktop-cursors.png-73d490687d1903fe0531da1af6868295.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-cursors.png" +dest_files=["res://.godot/imported/preferences-desktop-cursors.png-73d490687d1903fe0531da1af6868295.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-default-applications.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-default-applications.png new file mode 100644 index 00000000..0b273a9f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-default-applications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-default-applications.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-default-applications.png.import new file mode 100644 index 00000000..b05ae5b3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-default-applications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1484gslnijbh" +path="res://.godot/imported/preferences-desktop-default-applications.png-e33b100d4c8e4ec3a8f8b58a96189e46.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-default-applications.png" +dest_files=["res://.godot/imported/preferences-desktop-default-applications.png-e33b100d4c8e4ec3a8f8b58a96189e46.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display-nightcolor.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display-nightcolor.png new file mode 100644 index 00000000..ce878051 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display-nightcolor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display-nightcolor.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display-nightcolor.png.import new file mode 100644 index 00000000..2944080e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display-nightcolor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ciwcplu412cv7" +path="res://.godot/imported/preferences-desktop-display-nightcolor.png-3aa31cf0df3d0007d07ad9d057fb529c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-display-nightcolor.png" +dest_files=["res://.godot/imported/preferences-desktop-display-nightcolor.png-3aa31cf0df3d0007d07ad9d057fb529c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display.png new file mode 100644 index 00000000..ce878051 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display.png.import new file mode 100644 index 00000000..ab08027e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4wf3b1q62wg0" +path="res://.godot/imported/preferences-desktop-display.png-bec0663e0a6f2dfba4880b476315b6b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-display.png" +dest_files=["res://.godot/imported/preferences-desktop-display.png-bec0663e0a6f2dfba4880b476315b6b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-emoticons.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-emoticons.png new file mode 100644 index 00000000..ca50058c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-emoticons.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-emoticons.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-emoticons.png.import new file mode 100644 index 00000000..b9604624 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-emoticons.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkithtfdcslqm" +path="res://.godot/imported/preferences-desktop-emoticons.png-ba8b4da68eaace5320d714abbc97bfc1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-emoticons.png" +dest_files=["res://.godot/imported/preferences-desktop-emoticons.png-ba8b4da68eaace5320d714abbc97bfc1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-feedback.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-feedback.png new file mode 100644 index 00000000..eba63ae7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-feedback.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-feedback.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-feedback.png.import new file mode 100644 index 00000000..8a5eb86a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-feedback.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2sh5n06ltqvs" +path="res://.godot/imported/preferences-desktop-feedback.png-6b01ebb05e467bd09eab44ae7213c42d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-feedback.png" +dest_files=["res://.godot/imported/preferences-desktop-feedback.png-6b01ebb05e467bd09eab44ae7213c42d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-filetype-association.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-filetype-association.png new file mode 100644 index 00000000..1dc57b9d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-filetype-association.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-filetype-association.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-filetype-association.png.import new file mode 100644 index 00000000..b68c9abf --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-filetype-association.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chfiyjqoa1h76" +path="res://.godot/imported/preferences-desktop-filetype-association.png-222303069c5b8b7c51ae472d2102f670.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-filetype-association.png" +dest_files=["res://.godot/imported/preferences-desktop-filetype-association.png-222303069c5b8b7c51ae472d2102f670.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font-installer.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font-installer.png new file mode 100644 index 00000000..7ed03533 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font-installer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font-installer.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font-installer.png.import new file mode 100644 index 00000000..f10d1a2c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font-installer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt81lm1fppr88" +path="res://.godot/imported/preferences-desktop-font-installer.png-7520bcacb6f40c731bac10671e64b49c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-font-installer.png" +dest_files=["res://.godot/imported/preferences-desktop-font-installer.png-7520bcacb6f40c731bac10671e64b49c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font.png new file mode 100644 index 00000000..7ed03533 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font.png.import new file mode 100644 index 00000000..9876fb04 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceeu7dtkc73pa" +path="res://.godot/imported/preferences-desktop-font.png-0206ec89c99047f695a505f7052c00a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-font.png" +dest_files=["res://.godot/imported/preferences-desktop-font.png-0206ec89c99047f695a505f7052c00a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-gaming.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-gaming.png new file mode 100644 index 00000000..e2a38b32 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-gaming.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-gaming.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-gaming.png.import new file mode 100644 index 00000000..18843b3e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-gaming.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://50ang61sjvqf" +path="res://.godot/imported/preferences-desktop-gaming.png-e8e25e5669463d458821e72145f00c66.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-gaming.png" +dest_files=["res://.godot/imported/preferences-desktop-gaming.png-e8e25e5669463d458821e72145f00c66.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-icons.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-icons.png new file mode 100644 index 00000000..64d42472 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-icons.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-icons.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-icons.png.import new file mode 100644 index 00000000..d62ab155 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-icons.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m4knhhovo6gw" +path="res://.godot/imported/preferences-desktop-icons.png-b25ad3b900531e4da94951cd0bb5a539.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-icons.png" +dest_files=["res://.godot/imported/preferences-desktop-icons.png-b25ad3b900531e4da94951cd0bb5a539.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcut.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcut.png new file mode 100644 index 00000000..2a577eb2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcut.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcut.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcut.png.import new file mode 100644 index 00000000..6de0ce62 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcut.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cflmi0x335ois" +path="res://.godot/imported/preferences-desktop-keyboard-shortcut.png-7900b64636f49c2e322162254451288f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcut.png" +dest_files=["res://.godot/imported/preferences-desktop-keyboard-shortcut.png-7900b64636f49c2e322162254451288f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcuts.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcuts.png new file mode 100644 index 00000000..9728b168 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcuts.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcuts.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcuts.png.import new file mode 100644 index 00000000..d762c93c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcuts.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnmfukj2i3141" +path="res://.godot/imported/preferences-desktop-keyboard-shortcuts.png-a1c633203c6a28760a684a1ced9091b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcuts.png" +dest_files=["res://.godot/imported/preferences-desktop-keyboard-shortcuts.png-a1c633203c6a28760a684a1ced9091b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard.png new file mode 100644 index 00000000..2a577eb2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard.png.import new file mode 100644 index 00000000..8c115daa --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m58on2yeua6q" +path="res://.godot/imported/preferences-desktop-keyboard.png-d18cce687b93ca5fd501adbe7801798c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-keyboard.png" +dest_files=["res://.godot/imported/preferences-desktop-keyboard.png-d18cce687b93ca5fd501adbe7801798c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-launch-feedback.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-launch-feedback.png new file mode 100644 index 00000000..65460949 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-launch-feedback.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-launch-feedback.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-launch-feedback.png.import new file mode 100644 index 00000000..a5c28102 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-launch-feedback.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bknv1ve45rbap" +path="res://.godot/imported/preferences-desktop-launch-feedback.png-b10174d21205932f2df452853abe915d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-launch-feedback.png" +dest_files=["res://.godot/imported/preferences-desktop-launch-feedback.png-b10174d21205932f2df452853abe915d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-locale.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-locale.png new file mode 100644 index 00000000..06d89798 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-locale.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-locale.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-locale.png.import new file mode 100644 index 00000000..1fde067a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-locale.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cthlwjgcq1xa3" +path="res://.godot/imported/preferences-desktop-locale.png-bcb93f5c133027ee5845257cf81ebe63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-locale.png" +dest_files=["res://.godot/imported/preferences-desktop-locale.png-bcb93f5c133027ee5845257cf81ebe63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-mouse.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-mouse.png new file mode 100644 index 00000000..f22eacca Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-mouse.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-mouse.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-mouse.png.import new file mode 100644 index 00000000..eb74e064 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-mouse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxxysdnsp2bp6" +path="res://.godot/imported/preferences-desktop-mouse.png-9d3086db4fca1052d8ef5179d6e4f248.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-mouse.png" +dest_files=["res://.godot/imported/preferences-desktop-mouse.png-9d3086db4fca1052d8ef5179d6e4f248.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-notification-bell.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-notification-bell.png new file mode 100644 index 00000000..15912542 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-notification-bell.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-notification-bell.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-notification-bell.png.import new file mode 100644 index 00000000..6c90d6e0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-notification-bell.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgfh71000s0w0" +path="res://.godot/imported/preferences-desktop-notification-bell.png-ec36ee81ed2c898377bc6d70430f5451.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-notification-bell.png" +dest_files=["res://.godot/imported/preferences-desktop-notification-bell.png-ec36ee81ed2c898377bc6d70430f5451.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-peripherals.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-peripherals.png new file mode 100644 index 00000000..f22eacca Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-peripherals.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-peripherals.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-peripherals.png.import new file mode 100644 index 00000000..cd33cb3f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-peripherals.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvj2e6d4uinj" +path="res://.godot/imported/preferences-desktop-peripherals.png-3883396431c3a6d2a54e0e507b5f6cb7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-peripherals.png" +dest_files=["res://.godot/imported/preferences-desktop-peripherals.png-3883396431c3a6d2a54e0e507b5f6cb7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-personal.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-personal.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-personal.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-personal.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-personal.png.import new file mode 100644 index 00000000..93aa9714 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-personal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxewb6w43ip1i" +path="res://.godot/imported/preferences-desktop-personal.png-f770350c2ab69996655905fe718c6f5e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-personal.png" +dest_files=["res://.godot/imported/preferences-desktop-personal.png-f770350c2ab69996655905fe718c6f5e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-plasma-theme.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-plasma-theme.png new file mode 100644 index 00000000..ebd4e1c4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-plasma-theme.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-plasma-theme.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-plasma-theme.png.import new file mode 100644 index 00000000..f94cba8c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-plasma-theme.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgyophevygne6" +path="res://.godot/imported/preferences-desktop-plasma-theme.png-256fca699c9b162bc478251c9e248292.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-plasma-theme.png" +dest_files=["res://.godot/imported/preferences-desktop-plasma-theme.png-256fca699c9b162bc478251c9e248292.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-tablet.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-tablet.png new file mode 100644 index 00000000..79046b27 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-tablet.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-tablet.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-tablet.png.import new file mode 100644 index 00000000..532b6b6a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-tablet.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://32xih17df4pr" +path="res://.godot/imported/preferences-desktop-tablet.png-c804535884330c8eec41a5169afea038.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-tablet.png" +dest_files=["res://.godot/imported/preferences-desktop-tablet.png-c804535884330c8eec41a5169afea038.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-applications.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-applications.png new file mode 100644 index 00000000..d382caa6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-applications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-applications.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-applications.png.import new file mode 100644 index 00000000..8ec1eae2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-applications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dws0rr8jfap8i" +path="res://.godot/imported/preferences-desktop-theme-applications.png-4747329daaf2f9bc279e7d1f91ee6676.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-theme-applications.png" +dest_files=["res://.godot/imported/preferences-desktop-theme-applications.png-4747329daaf2f9bc279e7d1f91ee6676.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-global.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-global.png new file mode 100644 index 00000000..31f776b4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-global.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-global.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-global.png.import new file mode 100644 index 00000000..b3897a62 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-global.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8oex88dows0o" +path="res://.godot/imported/preferences-desktop-theme-global.png-6aac40f72448c6b1549f1e3f0b14ac10.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-theme-global.png" +dest_files=["res://.godot/imported/preferences-desktop-theme-global.png-6aac40f72448c6b1549f1e3f0b14ac10.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme.png new file mode 100644 index 00000000..31f776b4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme.png.import new file mode 100644 index 00000000..9ddbb3ed --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dky7nwryje704" +path="res://.godot/imported/preferences-desktop-theme.png-e883ec76cbd7504c6f9b646b1f6b0ddd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-theme.png" +dest_files=["res://.godot/imported/preferences-desktop-theme.png-e883ec76cbd7504c6f9b646b1f6b0ddd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-touchpad.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-touchpad.png new file mode 100644 index 00000000..4f7691e1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-touchpad.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-touchpad.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-touchpad.png.import new file mode 100644 index 00000000..f67eb19e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-touchpad.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cedie5ag60rbc" +path="res://.godot/imported/preferences-desktop-touchpad.png-33c38dc42bf5aa5231ef159fb7ce7ca9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-touchpad.png" +dest_files=["res://.godot/imported/preferences-desktop-touchpad.png-33c38dc42bf5aa5231ef159fb7ce7ca9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-user.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-user.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-user.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-user.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-user.png.import new file mode 100644 index 00000000..cf0e2b48 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-user.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n8p7470loem4" +path="res://.godot/imported/preferences-desktop-user.png-124cb7d45f1278e37a3d0db514e7d8c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-user.png" +dest_files=["res://.godot/imported/preferences-desktop-user.png-124cb7d45f1278e37a3d0db514e7d8c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-wallpaper.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-wallpaper.png new file mode 100644 index 00000000..64aaa26d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-wallpaper.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-wallpaper.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-wallpaper.png.import new file mode 100644 index 00000000..5dcccba7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-wallpaper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1f52fe05blqy" +path="res://.godot/imported/preferences-desktop-wallpaper.png-64bd2841fd5ea0b3609d36f2b28942ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-wallpaper.png" +dest_files=["res://.godot/imported/preferences-desktop-wallpaper.png-64bd2841fd5ea0b3609d36f2b28942ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop.png.import new file mode 100644 index 00000000..74524089 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn3pw84c6mlsk" +path="res://.godot/imported/preferences-desktop.png-05a9a9a3084bba8618cf5c49bdfcf2ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop.png" +dest_files=["res://.godot/imported/preferences-desktop.png-05a9a9a3084bba8618cf5c49bdfcf2ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-network.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-network.png new file mode 100644 index 00000000..24cc0d0f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-network.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-network.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-network.png.import new file mode 100644 index 00000000..78913223 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-network.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2qkkdgbfdchd" +path="res://.godot/imported/preferences-system-network.png-a7f18f002d7e33c008f5c7c9580f6480.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-network.png" +dest_files=["res://.godot/imported/preferences-system-network.png-a7f18f002d7e33c008f5c7c9580f6480.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-notifications.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-notifications.png new file mode 100644 index 00000000..15912542 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-notifications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-notifications.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-notifications.png.import new file mode 100644 index 00000000..d4e93527 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-notifications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxrhrmkmg7urb" +path="res://.godot/imported/preferences-system-notifications.png-48ffc2cabdd20ce8ba57a8b9af672df9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-notifications.png" +dest_files=["res://.godot/imported/preferences-system-notifications.png-48ffc2cabdd20ce8ba57a8b9af672df9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-search.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-search.png new file mode 100644 index 00000000..4f1d91fc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-search.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-search.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-search.png.import new file mode 100644 index 00000000..a1ac9052 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-search.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djrtcdwxuvfj4" +path="res://.godot/imported/preferences-system-search.png-de9a763925f1da793e0b974c213186dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-search.png" +dest_files=["res://.godot/imported/preferences-system-search.png-de9a763925f1da793e0b974c213186dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-session-services.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-session-services.png new file mode 100644 index 00000000..31db6e05 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-session-services.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-session-services.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-session-services.png.import new file mode 100644 index 00000000..c8047301 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-session-services.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfxghigsbiqf1" +path="res://.godot/imported/preferences-system-session-services.png-30af6243d6ffd3d8a18c0bdf3b6df591.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-session-services.png" +dest_files=["res://.godot/imported/preferences-system-session-services.png-30af6243d6ffd3d8a18c0bdf3b6df591.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-splash.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-splash.png new file mode 100644 index 00000000..e63322a2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-splash.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-splash.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-splash.png.import new file mode 100644 index 00000000..17f1f32a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-splash.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cebtyi1tx7f7n" +path="res://.godot/imported/preferences-system-splash.png-5c2558cab91f6e30e3e311e8ef79fced.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-splash.png" +dest_files=["res://.godot/imported/preferences-system-splash.png-5c2558cab91f6e30e3e311e8ef79fced.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-time.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-time.png new file mode 100644 index 00000000..22ee5f71 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-time.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-time.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-time.png.import new file mode 100644 index 00000000..e140a385 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-time.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cm8q7gmtaytl" +path="res://.godot/imported/preferences-system-time.png-4d578f09f4f105fd9af734a9efe3c374.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-time.png" +dest_files=["res://.godot/imported/preferences-system-time.png-4d578f09f4f105fd9af734a9efe3c374.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-users.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-users.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-users.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-users.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-users.png.import new file mode 100644 index 00000000..1e937e21 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-users.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://v8q2yt1ku0oj" +path="res://.godot/imported/preferences-system-users.png-832bc1e218edce65e24928e40a981bfa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-users.png" +dest_files=["res://.godot/imported/preferences-system-users.png-832bc1e218edce65e24928e40a981bfa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows-actions.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows-actions.png new file mode 100644 index 00000000..bfdcec42 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows-actions.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows-actions.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows-actions.png.import new file mode 100644 index 00000000..b0ba18f6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows-actions.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://we7r4tgvylj7" +path="res://.godot/imported/preferences-system-windows-actions.png-10561d9321e5e2171fabe7f35baf6efa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-windows-actions.png" +dest_files=["res://.godot/imported/preferences-system-windows-actions.png-10561d9321e5e2171fabe7f35baf6efa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows.png new file mode 100644 index 00000000..bfdcec42 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows.png.import new file mode 100644 index 00000000..f05e594d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ojosle3jlmcq" +path="res://.godot/imported/preferences-system-windows.png-f3f23f0b1f1798df9fa64dc89e9c800d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-windows.png" +dest_files=["res://.godot/imported/preferences-system-windows.png-f3f23f0b1f1798df9fa64dc89e9c800d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system.png.import new file mode 100644 index 00000000..12df65a9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm6m1y0u7tqul" +path="res://.godot/imported/preferences-system.png-8bcf1f077b588bae0aeaad821886906d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system.png" +dest_files=["res://.godot/imported/preferences-system.png-8bcf1f077b588bae0aeaad821886906d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-tweaks-shadows.png b/tools/configurator/assets/icons/pixelitos/16/preferences-tweaks-shadows.png new file mode 100644 index 00000000..9bc09aa2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-tweaks-shadows.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-tweaks-shadows.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-tweaks-shadows.png.import new file mode 100644 index 00000000..54f22053 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-tweaks-shadows.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnrroqoqmswwl" +path="res://.godot/imported/preferences-tweaks-shadows.png-9f5472e0debd8a608aba1a98d88b846b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-tweaks-shadows.png" +dest_files=["res://.godot/imported/preferences-tweaks-shadows.png-9f5472e0debd8a608aba1a98d88b846b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/primehack.png b/tools/configurator/assets/icons/pixelitos/16/primehack.png new file mode 100644 index 00000000..6e8032a6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/primehack.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/primehack.png.import b/tools/configurator/assets/icons/pixelitos/16/primehack.png.import new file mode 100644 index 00000000..fb14d203 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/primehack.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kr1q8015vaim" +path="res://.godot/imported/primehack.png-215d916d6654b2811b2c90bd03445f63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/primehack.png" +dest_files=["res://.godot/imported/primehack.png-215d916d6654b2811b2c90bd03445f63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/pvz.png b/tools/configurator/assets/icons/pixelitos/16/pvz.png new file mode 100644 index 00000000..257f8940 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/pvz.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/pvz.png.import b/tools/configurator/assets/icons/pixelitos/16/pvz.png.import new file mode 100644 index 00000000..0ddd0c17 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/pvz.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dohmqfg8vnb24" +path="res://.godot/imported/pvz.png-cf54b534c25ecc5e56b72a82e24be1db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/pvz.png" +dest_files=["res://.godot/imported/pvz.png-cf54b534c25ecc5e56b72a82e24be1db.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/qemu.png b/tools/configurator/assets/icons/pixelitos/16/qemu.png new file mode 100644 index 00000000..1dffade4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/qemu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/qemu.png.import b/tools/configurator/assets/icons/pixelitos/16/qemu.png.import new file mode 100644 index 00000000..65e2cc81 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/qemu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvuv7sp4uneml" +path="res://.godot/imported/qemu.png-c2a290f1a375d41e82faaafa287ce6b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/qemu.png" +dest_files=["res://.godot/imported/qemu.png-c2a290f1a375d41e82faaafa287ce6b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/raze.png b/tools/configurator/assets/icons/pixelitos/16/raze.png new file mode 100644 index 00000000..390982e8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/raze.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/raze.png.import b/tools/configurator/assets/icons/pixelitos/16/raze.png.import new file mode 100644 index 00000000..bb5010ff --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/raze.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cke850dhfqqs" +path="res://.godot/imported/raze.png-e4ae7402888398697b6c58ff047122e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/raze.png" +dest_files=["res://.godot/imported/raze.png-e4ae7402888398697b6c58ff047122e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/redream.png b/tools/configurator/assets/icons/pixelitos/16/redream.png new file mode 100644 index 00000000..4d317cfa Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/redream.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/redream.png.import b/tools/configurator/assets/icons/pixelitos/16/redream.png.import new file mode 100644 index 00000000..0864bf91 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/redream.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k4uc4spfu3dp" +path="res://.godot/imported/redream.png-9aed0f5f856dc8252cee283c49a97dc7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/redream.png" +dest_files=["res://.godot/imported/redream.png-9aed0f5f856dc8252cee283c49a97dc7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/retroachievements.png b/tools/configurator/assets/icons/pixelitos/16/retroachievements.png new file mode 100644 index 00000000..05d73d6d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/retroachievements.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/retroachievements.png.import b/tools/configurator/assets/icons/pixelitos/16/retroachievements.png.import new file mode 100644 index 00000000..d263e571 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/retroachievements.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jpdccqpel2o0" +path="res://.godot/imported/retroachievements.png-7a6c7b94e38d9727ffd6620ed532a005.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/retroachievements.png" +dest_files=["res://.godot/imported/retroachievements.png-7a6c7b94e38d9727ffd6620ed532a005.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/retroachievements_r.png b/tools/configurator/assets/icons/pixelitos/16/retroachievements_r.png new file mode 100644 index 00000000..f453070d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/retroachievements_r.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/retroachievements_r.png.import b/tools/configurator/assets/icons/pixelitos/16/retroachievements_r.png.import new file mode 100644 index 00000000..cf74d7bf --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/retroachievements_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkgfwkkcn8m0c" +path="res://.godot/imported/retroachievements_r.png-32b929affa6aadc597b386f15a806086.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/retroachievements_r.png" +dest_files=["res://.godot/imported/retroachievements_r.png-32b929affa6aadc597b386f15a806086.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/retroarch.png b/tools/configurator/assets/icons/pixelitos/16/retroarch.png new file mode 100644 index 00000000..9cf89ada Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/retroarch.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/retroarch.png.import b/tools/configurator/assets/icons/pixelitos/16/retroarch.png.import new file mode 100644 index 00000000..664119da --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/retroarch.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cna6yoyjofd1r" +path="res://.godot/imported/retroarch.png-cdbc76d7b3cf5151b330916086805565.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/retroarch.png" +dest_files=["res://.godot/imported/retroarch.png-cdbc76d7b3cf5151b330916086805565.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/romm.png b/tools/configurator/assets/icons/pixelitos/16/romm.png new file mode 100644 index 00000000..0e6ef453 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/romm.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/romm.png.import b/tools/configurator/assets/icons/pixelitos/16/romm.png.import new file mode 100644 index 00000000..1219d3b4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/romm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b72c8l76p2v63" +path="res://.godot/imported/romm.png-4509adc3492d66efb382d7974e45aa79.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/romm.png" +dest_files=["res://.godot/imported/romm.png-4509adc3492d66efb382d7974e45aa79.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/roxterm.png b/tools/configurator/assets/icons/pixelitos/16/roxterm.png new file mode 100644 index 00000000..ed8a1c2b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/roxterm.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/roxterm.png.import b/tools/configurator/assets/icons/pixelitos/16/roxterm.png.import new file mode 100644 index 00000000..e535774c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/roxterm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca7xrs551iscw" +path="res://.godot/imported/roxterm.png-7642cf5b41e736ab6ef3cb10b79ec163.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/roxterm.png" +dest_files=["res://.godot/imported/roxterm.png-7642cf5b41e736ab6ef3cb10b79ec163.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/ruffle.png b/tools/configurator/assets/icons/pixelitos/16/ruffle.png new file mode 100644 index 00000000..ac69d76b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/ruffle.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/ruffle.png.import b/tools/configurator/assets/icons/pixelitos/16/ruffle.png.import new file mode 100644 index 00000000..17846697 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/ruffle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvmof0t5n2ir0" +path="res://.godot/imported/ruffle.png-f70fbfddbbafb936c7a1f4b99a59aa5e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/ruffle.png" +dest_files=["res://.godot/imported/ruffle.png-f70fbfddbbafb936c7a1f4b99a59aa5e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/scummvm.png b/tools/configurator/assets/icons/pixelitos/16/scummvm.png new file mode 100644 index 00000000..131cd9ad Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/scummvm.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/scummvm.png.import b/tools/configurator/assets/icons/pixelitos/16/scummvm.png.import new file mode 100644 index 00000000..a373b79b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/scummvm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8b4ax5j4eedk" +path="res://.godot/imported/scummvm.png-2adc817cfff5997d269fcdde2985984a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/scummvm.png" +dest_files=["res://.godot/imported/scummvm.png-2adc817cfff5997d269fcdde2985984a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/sdltrs.png b/tools/configurator/assets/icons/pixelitos/16/sdltrs.png new file mode 100644 index 00000000..d26a432a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/sdltrs.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/sdltrs.png.import b/tools/configurator/assets/icons/pixelitos/16/sdltrs.png.import new file mode 100644 index 00000000..4c75435a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/sdltrs.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvk5hxalqfgb7" +path="res://.godot/imported/sdltrs.png-fe31a6206147de752a57abbd41e7e8e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/sdltrs.png" +dest_files=["res://.godot/imported/sdltrs.png-fe31a6206147de752a57abbd41e7e8e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/search.png b/tools/configurator/assets/icons/pixelitos/16/search.png new file mode 100644 index 00000000..4f1d91fc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/search.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/search.png.import b/tools/configurator/assets/icons/pixelitos/16/search.png.import new file mode 100644 index 00000000..0768db3a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/search.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj7nyqs2setf3" +path="res://.godot/imported/search.png-8f15dc952b96a8b8e28e3d52f2c4f2e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/search.png" +dest_files=["res://.godot/imported/search.png-8f15dc952b96a8b8e28e3d52f2c4f2e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/security-high.png b/tools/configurator/assets/icons/pixelitos/16/security-high.png new file mode 100644 index 00000000..ac52aca7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/security-high.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/security-high.png.import b/tools/configurator/assets/icons/pixelitos/16/security-high.png.import new file mode 100644 index 00000000..b3e17a6f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/security-high.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j6ayc241mul7" +path="res://.godot/imported/security-high.png-e3c55e9993f44540fe3855ab3b49d5a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/security-high.png" +dest_files=["res://.godot/imported/security-high.png-e3c55e9993f44540fe3855ab3b49d5a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/security-low.png b/tools/configurator/assets/icons/pixelitos/16/security-low.png new file mode 100644 index 00000000..45d2cf8a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/security-low.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/security-low.png.import b/tools/configurator/assets/icons/pixelitos/16/security-low.png.import new file mode 100644 index 00000000..dce25d23 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/security-low.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgodd1g2u3b32" +path="res://.godot/imported/security-low.png-57c11229d4ec7d240e1ad6a5f6cb8ddb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/security-low.png" +dest_files=["res://.godot/imported/security-low.png-57c11229d4ec7d240e1ad6a5f6cb8ddb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/security-medium.png b/tools/configurator/assets/icons/pixelitos/16/security-medium.png new file mode 100644 index 00000000..c4b3fb7e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/security-medium.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/security-medium.png.import b/tools/configurator/assets/icons/pixelitos/16/security-medium.png.import new file mode 100644 index 00000000..99006b6c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/security-medium.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd5eulbnphmuc" +path="res://.godot/imported/security-medium.png-4d465c71282317ebffd524c51ad2990f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/security-medium.png" +dest_files=["res://.godot/imported/security-medium.png-4d465c71282317ebffd524c51ad2990f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/simcoupe.png b/tools/configurator/assets/icons/pixelitos/16/simcoupe.png new file mode 100644 index 00000000..0ae4a032 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/simcoupe.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/simcoupe.png.import b/tools/configurator/assets/icons/pixelitos/16/simcoupe.png.import new file mode 100644 index 00000000..013b21b7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/simcoupe.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc8khhviiolw7" +path="res://.godot/imported/simcoupe.png-fd097e8eeb90b6108dbf315fc57855fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/simcoupe.png" +dest_files=["res://.godot/imported/simcoupe.png-fd097e8eeb90b6108dbf315fc57855fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/simplescreenrecorder.png b/tools/configurator/assets/icons/pixelitos/16/simplescreenrecorder.png new file mode 100644 index 00000000..a2092b1c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/simplescreenrecorder.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/simplescreenrecorder.png.import b/tools/configurator/assets/icons/pixelitos/16/simplescreenrecorder.png.import new file mode 100644 index 00000000..9d7efa77 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/simplescreenrecorder.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk0yte5sv7c2v" +path="res://.godot/imported/simplescreenrecorder.png-387b632a8d8abf13f7fde27646e7ff13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/simplescreenrecorder.png" +dest_files=["res://.godot/imported/simplescreenrecorder.png-387b632a8d8abf13f7fde27646e7ff13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/skullgirls.png b/tools/configurator/assets/icons/pixelitos/16/skullgirls.png new file mode 100644 index 00000000..f049d3a4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/skullgirls.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/skullgirls.png.import b/tools/configurator/assets/icons/pixelitos/16/skullgirls.png.import new file mode 100644 index 00000000..2d177bae --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/skullgirls.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drp3unl1vkrog" +path="res://.godot/imported/skullgirls.png-71aba4d569bd4656d080a6c5efe77d76.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/skullgirls.png" +dest_files=["res://.godot/imported/skullgirls.png-71aba4d569bd4656d080a6c5efe77d76.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/snes9x.png b/tools/configurator/assets/icons/pixelitos/16/snes9x.png new file mode 100644 index 00000000..764cc23b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/snes9x.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/snes9x.png.import b/tools/configurator/assets/icons/pixelitos/16/snes9x.png.import new file mode 100644 index 00000000..ed9d69a8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/snes9x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c62sx6543a5he" +path="res://.godot/imported/snes9x.png-cff50f0bf19843a1ae9aa3e6859cccd6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/snes9x.png" +dest_files=["res://.godot/imported/snes9x.png-cff50f0bf19843a1ae9aa3e6859cccd6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/solarus.png b/tools/configurator/assets/icons/pixelitos/16/solarus.png new file mode 100644 index 00000000..808c03f5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/solarus.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/solarus.png.import b/tools/configurator/assets/icons/pixelitos/16/solarus.png.import new file mode 100644 index 00000000..e51d92ef --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/solarus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3n0fek4gi555" +path="res://.godot/imported/solarus.png-637f4aa0ea0d755b3ec06201bb05cd9e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/solarus.png" +dest_files=["res://.godot/imported/solarus.png-637f4aa0ea0d755b3ec06201bb05cd9e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/spacefm-find.png b/tools/configurator/assets/icons/pixelitos/16/spacefm-find.png new file mode 100644 index 00000000..865e567a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/spacefm-find.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/spacefm-find.png.import b/tools/configurator/assets/icons/pixelitos/16/spacefm-find.png.import new file mode 100644 index 00000000..6381060f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/spacefm-find.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr5yjnrs8omxq" +path="res://.godot/imported/spacefm-find.png-53352db519eb13c0782ad7624d28cf2b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/spacefm-find.png" +dest_files=["res://.godot/imported/spacefm-find.png-53352db519eb13c0782ad7624d28cf2b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/spacefm.png b/tools/configurator/assets/icons/pixelitos/16/spacefm.png new file mode 100644 index 00000000..77e06888 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/spacefm.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/spacefm.png.import b/tools/configurator/assets/icons/pixelitos/16/spacefm.png.import new file mode 100644 index 00000000..82b29f21 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/spacefm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coe8y7u6h2ris" +path="res://.godot/imported/spacefm.png-7b259b5b2ff7202b6d6d76c6c6fed804.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/spacefm.png" +dest_files=["res://.godot/imported/spacefm.png-7b259b5b2ff7202b6d6d76c6c6fed804.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/spotify.png b/tools/configurator/assets/icons/pixelitos/16/spotify.png new file mode 100644 index 00000000..3f4c736a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/spotify.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/spotify.png.import b/tools/configurator/assets/icons/pixelitos/16/spotify.png.import new file mode 100644 index 00000000..510a4714 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/spotify.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://def4opf6rqyuc" +path="res://.godot/imported/spotify.png-20583f418e2d260b4827ed546eabf5bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/spotify.png" +dest_files=["res://.godot/imported/spotify.png-20583f418e2d260b4827ed546eabf5bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/steam-rom-manager.png b/tools/configurator/assets/icons/pixelitos/16/steam-rom-manager.png new file mode 100644 index 00000000..5fb09a14 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/steam-rom-manager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/steam-rom-manager.png.import b/tools/configurator/assets/icons/pixelitos/16/steam-rom-manager.png.import new file mode 100644 index 00000000..de490d9c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/steam-rom-manager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8bluiipss6s7" +path="res://.godot/imported/steam-rom-manager.png-9c953bde1dcce1ed1cdd1f6b63483d8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/steam-rom-manager.png" +dest_files=["res://.godot/imported/steam-rom-manager.png-9c953bde1dcce1ed1cdd1f6b63483d8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/steam.png b/tools/configurator/assets/icons/pixelitos/16/steam.png new file mode 100644 index 00000000..4f517f48 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/steam.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/steam.png.import b/tools/configurator/assets/icons/pixelitos/16/steam.png.import new file mode 100644 index 00000000..128a44c0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/steam.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq7k15yigp12n" +path="res://.godot/imported/steam.png-b078f1f95ae03fe9d3dc8218c130db0d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/steam.png" +dest_files=["res://.godot/imported/steam.png-b078f1f95ae03fe9d3dc8218c130db0d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_1289310.png b/tools/configurator/assets/icons/pixelitos/16/steam_icon_1289310.png new file mode 100644 index 00000000..c336011d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/steam_icon_1289310.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_1289310.png.import b/tools/configurator/assets/icons/pixelitos/16/steam_icon_1289310.png.import new file mode 100644 index 00000000..237e76c4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/steam_icon_1289310.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6tgi18yckgyh" +path="res://.godot/imported/steam_icon_1289310.png-929d2360848cb3f65d6763c4126a2936.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/steam_icon_1289310.png" +dest_files=["res://.godot/imported/steam_icon_1289310.png-929d2360848cb3f65d6763c4126a2936.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_20.png b/tools/configurator/assets/icons/pixelitos/16/steam_icon_20.png new file mode 100644 index 00000000..789c9e39 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/steam_icon_20.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_20.png.import b/tools/configurator/assets/icons/pixelitos/16/steam_icon_20.png.import new file mode 100644 index 00000000..9630d3f7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/steam_icon_20.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy12d6j31cqhx" +path="res://.godot/imported/steam_icon_20.png-99848ddb725c982b2af9d08cfdecb92f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/steam_icon_20.png" +dest_files=["res://.godot/imported/steam_icon_20.png-99848ddb725c982b2af9d08cfdecb92f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_245170.png b/tools/configurator/assets/icons/pixelitos/16/steam_icon_245170.png new file mode 100644 index 00000000..f049d3a4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/steam_icon_245170.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_245170.png.import b/tools/configurator/assets/icons/pixelitos/16/steam_icon_245170.png.import new file mode 100644 index 00000000..df810839 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/steam_icon_245170.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cub7g0r2r4fc2" +path="res://.godot/imported/steam_icon_245170.png-6b3e4830baecf1e92ebdb8c82d66c7dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/steam_icon_245170.png" +dest_files=["res://.godot/imported/steam_icon_245170.png-6b3e4830baecf1e92ebdb8c82d66c7dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_322170.png b/tools/configurator/assets/icons/pixelitos/16/steam_icon_322170.png new file mode 100644 index 00000000..7deecf74 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/steam_icon_322170.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_322170.png.import b/tools/configurator/assets/icons/pixelitos/16/steam_icon_322170.png.import new file mode 100644 index 00000000..62c444da --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/steam_icon_322170.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bm2nq8fahr7yr" +path="res://.godot/imported/steam_icon_322170.png-fa8ebaf25263717eb34cef2e33a66166.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/steam_icon_322170.png" +dest_files=["res://.godot/imported/steam_icon_322170.png-fa8ebaf25263717eb34cef2e33a66166.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_3590.png b/tools/configurator/assets/icons/pixelitos/16/steam_icon_3590.png new file mode 100644 index 00000000..257f8940 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/steam_icon_3590.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_3590.png.import b/tools/configurator/assets/icons/pixelitos/16/steam_icon_3590.png.import new file mode 100644 index 00000000..0df2461a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/steam_icon_3590.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://t8y6t1udeh58" +path="res://.godot/imported/steam_icon_3590.png-389a4dbe806652c7078dd678f8c3f1ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/steam_icon_3590.png" +dest_files=["res://.godot/imported/steam_icon_3590.png-389a4dbe806652c7078dd678f8c3f1ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_620.png b/tools/configurator/assets/icons/pixelitos/16/steam_icon_620.png new file mode 100644 index 00000000..f7a067b3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/steam_icon_620.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_620.png.import b/tools/configurator/assets/icons/pixelitos/16/steam_icon_620.png.import new file mode 100644 index 00000000..42b9dbce --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/steam_icon_620.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2s533p5hnurr" +path="res://.godot/imported/steam_icon_620.png-ad18815d1bdfbcd46c57164ad0091233.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/steam_icon_620.png" +dest_files=["res://.godot/imported/steam_icon_620.png-ad18815d1bdfbcd46c57164ad0091233.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_70.png b/tools/configurator/assets/icons/pixelitos/16/steam_icon_70.png new file mode 100644 index 00000000..9a8277b2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/steam_icon_70.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_70.png.import b/tools/configurator/assets/icons/pixelitos/16/steam_icon_70.png.import new file mode 100644 index 00000000..3a1afcd9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/steam_icon_70.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5x62oq72g0ts" +path="res://.godot/imported/steam_icon_70.png-6f255c749a65e7337d9b7de37f27ed79.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/steam_icon_70.png" +dest_files=["res://.godot/imported/steam_icon_70.png-6f255c749a65e7337d9b7de37f27ed79.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/stella.png b/tools/configurator/assets/icons/pixelitos/16/stella.png new file mode 100644 index 00000000..c2f07638 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/stella.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/stella.png.import b/tools/configurator/assets/icons/pixelitos/16/stella.png.import new file mode 100644 index 00000000..ad35404b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/stella.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ojje55wspq87" +path="res://.godot/imported/stella.png-4de3afffad8f31f69344bb3bd6f9aa9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/stella.png" +dest_files=["res://.godot/imported/stella.png-4de3afffad8f31f69344bb3bd6f9aa9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/strawberry.png b/tools/configurator/assets/icons/pixelitos/16/strawberry.png new file mode 100644 index 00000000..361cefcf Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/strawberry.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/strawberry.png.import b/tools/configurator/assets/icons/pixelitos/16/strawberry.png.import new file mode 100644 index 00000000..f62501ac --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/strawberry.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgk64qjqo6q1j" +path="res://.godot/imported/strawberry.png-7ccb8caf25884ca8511816502ff738ed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/strawberry.png" +dest_files=["res://.godot/imported/strawberry.png-7ccb8caf25884ca8511816502ff738ed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/supermodel.png b/tools/configurator/assets/icons/pixelitos/16/supermodel.png new file mode 100644 index 00000000..d52230eb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/supermodel.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/supermodel.png.import b/tools/configurator/assets/icons/pixelitos/16/supermodel.png.import new file mode 100644 index 00000000..c00f0c52 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/supermodel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gwkmo282lwpq" +path="res://.godot/imported/supermodel.png-2370d99ef21be058ea45c09b3cd4ca21.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/supermodel.png" +dest_files=["res://.godot/imported/supermodel.png-2370d99ef21be058ea45c09b3cd4ca21.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/supertuxkart.png b/tools/configurator/assets/icons/pixelitos/16/supertuxkart.png new file mode 100644 index 00000000..23b4691c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/supertuxkart.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/supertuxkart.png.import b/tools/configurator/assets/icons/pixelitos/16/supertuxkart.png.import new file mode 100644 index 00000000..43925f01 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/supertuxkart.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cytqatrku51le" +path="res://.godot/imported/supertuxkart.png-f1d1934d102f7db2e5541804410921c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/supertuxkart.png" +dest_files=["res://.godot/imported/supertuxkart.png-f1d1934d102f7db2e5541804410921c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-file-manager.png b/tools/configurator/assets/icons/pixelitos/16/system-file-manager.png new file mode 100644 index 00000000..77e06888 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-file-manager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-file-manager.png.import b/tools/configurator/assets/icons/pixelitos/16/system-file-manager.png.import new file mode 100644 index 00000000..d27327df --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-file-manager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl2i2gk1hbnqa" +path="res://.godot/imported/system-file-manager.png-842ebc4010d551148ae9b76ccc8766d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-file-manager.png" +dest_files=["res://.godot/imported/system-file-manager.png-842ebc4010d551148ae9b76ccc8766d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-lock-screen.png b/tools/configurator/assets/icons/pixelitos/16/system-lock-screen.png new file mode 100644 index 00000000..fe75993c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-lock-screen.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-lock-screen.png.import b/tools/configurator/assets/icons/pixelitos/16/system-lock-screen.png.import new file mode 100644 index 00000000..a2e65ce2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-lock-screen.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d00ek24nvfj7x" +path="res://.godot/imported/system-lock-screen.png-e9ea68da0d3a36330347454e7ac3c345.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-lock-screen.png" +dest_files=["res://.godot/imported/system-lock-screen.png-e9ea68da0d3a36330347454e7ac3c345.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-log-out.png b/tools/configurator/assets/icons/pixelitos/16/system-log-out.png new file mode 100644 index 00000000..1ccffb7c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-log-out.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-log-out.png.import b/tools/configurator/assets/icons/pixelitos/16/system-log-out.png.import new file mode 100644 index 00000000..ec6fa71a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-log-out.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br1jsl4kv2n3t" +path="res://.godot/imported/system-log-out.png-bb671251ad259cb2c201d79028478a62.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-log-out.png" +dest_files=["res://.godot/imported/system-log-out.png-bb671251ad259cb2c201d79028478a62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-logout.png b/tools/configurator/assets/icons/pixelitos/16/system-logout.png new file mode 100644 index 00000000..1ccffb7c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-logout.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-logout.png.import b/tools/configurator/assets/icons/pixelitos/16/system-logout.png.import new file mode 100644 index 00000000..ad01417c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-logout.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3rbuehbro1ry" +path="res://.godot/imported/system-logout.png-3c7da452254b7fd460d47363c13e73cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-logout.png" +dest_files=["res://.godot/imported/system-logout.png-3c7da452254b7fd460d47363c13e73cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-reboot.png b/tools/configurator/assets/icons/pixelitos/16/system-reboot.png new file mode 100644 index 00000000..e2d17944 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-reboot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-reboot.png.import b/tools/configurator/assets/icons/pixelitos/16/system-reboot.png.import new file mode 100644 index 00000000..3184a412 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-reboot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfgok7ebqinc3" +path="res://.godot/imported/system-reboot.png-7e29360bc5998a0b2efb37079f86b3c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-reboot.png" +dest_files=["res://.godot/imported/system-reboot.png-7e29360bc5998a0b2efb37079f86b3c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-run.png b/tools/configurator/assets/icons/pixelitos/16/system-run.png new file mode 100644 index 00000000..31db6e05 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-run.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-run.png.import b/tools/configurator/assets/icons/pixelitos/16/system-run.png.import new file mode 100644 index 00000000..18bcbb53 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-run.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqn6ewwbp7vrv" +path="res://.godot/imported/system-run.png-305ddb0d74524762e698470100fefe20.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-run.png" +dest_files=["res://.godot/imported/system-run.png-305ddb0d74524762e698470100fefe20.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-search.png b/tools/configurator/assets/icons/pixelitos/16/system-search.png new file mode 100644 index 00000000..4f1d91fc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-search.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-search.png.import b/tools/configurator/assets/icons/pixelitos/16/system-search.png.import new file mode 100644 index 00000000..6d85407c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-search.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnpe0gn8f210" +path="res://.godot/imported/system-search.png-bc21dfb5be7657a4a0ac84f5ddc4c40b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-search.png" +dest_files=["res://.godot/imported/system-search.png-bc21dfb5be7657a4a0ac84f5ddc4c40b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-shutdown.png b/tools/configurator/assets/icons/pixelitos/16/system-shutdown.png new file mode 100644 index 00000000..933ee6a7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-shutdown.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-shutdown.png.import b/tools/configurator/assets/icons/pixelitos/16/system-shutdown.png.import new file mode 100644 index 00000000..d854221b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-shutdown.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dllymmym0335n" +path="res://.godot/imported/system-shutdown.png-a75946cc22f093e1fd7d20423f6d4b6f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-shutdown.png" +dest_files=["res://.godot/imported/system-shutdown.png-a75946cc22f093e1fd7d20423f6d4b6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-software-install.png b/tools/configurator/assets/icons/pixelitos/16/system-software-install.png new file mode 100644 index 00000000..743671ce Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-software-install.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-software-install.png.import b/tools/configurator/assets/icons/pixelitos/16/system-software-install.png.import new file mode 100644 index 00000000..97012ed6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-software-install.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://caoe28dbq33x3" +path="res://.godot/imported/system-software-install.png-b13f1ec242485529c63ced3278abf54b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-software-install.png" +dest_files=["res://.godot/imported/system-software-install.png-b13f1ec242485529c63ced3278abf54b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-suspend-hibernate.png b/tools/configurator/assets/icons/pixelitos/16/system-suspend-hibernate.png new file mode 100644 index 00000000..885a2a4e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-suspend-hibernate.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-suspend-hibernate.png.import b/tools/configurator/assets/icons/pixelitos/16/system-suspend-hibernate.png.import new file mode 100644 index 00000000..62cc50aa --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-suspend-hibernate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bucpvenc7dmma" +path="res://.godot/imported/system-suspend-hibernate.png-ba07d22518ebca88849cd171f005e86d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-suspend-hibernate.png" +dest_files=["res://.godot/imported/system-suspend-hibernate.png-ba07d22518ebca88849cd171f005e86d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-suspend.png b/tools/configurator/assets/icons/pixelitos/16/system-suspend.png new file mode 100644 index 00000000..fe75993c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-suspend.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-suspend.png.import b/tools/configurator/assets/icons/pixelitos/16/system-suspend.png.import new file mode 100644 index 00000000..312566ac --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-suspend.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdqayeev762dx" +path="res://.godot/imported/system-suspend.png-3805ff4bef128ce0747c8a8d9416f70c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-suspend.png" +dest_files=["res://.godot/imported/system-suspend.png-3805ff4bef128ce0747c8a8d9416f70c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-switch-user.png b/tools/configurator/assets/icons/pixelitos/16/system-switch-user.png new file mode 100644 index 00000000..480e62d1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-switch-user.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-switch-user.png.import b/tools/configurator/assets/icons/pixelitos/16/system-switch-user.png.import new file mode 100644 index 00000000..f9ac607d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-switch-user.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://64ojdcj7mfol" +path="res://.godot/imported/system-switch-user.png-b582e67832ed6a2d283bf00b190081d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-switch-user.png" +dest_files=["res://.godot/imported/system-switch-user.png-b582e67832ed6a2d283bf00b190081d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-users.png b/tools/configurator/assets/icons/pixelitos/16/system-users.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-users.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-users.png.import b/tools/configurator/assets/icons/pixelitos/16/system-users.png.import new file mode 100644 index 00000000..befd0585 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-users.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qqcb7grvp6om" +path="res://.godot/imported/system-users.png-f43ba36547704aa521f06c414bb06bfe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-users.png" +dest_files=["res://.godot/imported/system-users.png-f43ba36547704aa521f06c414bb06bfe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/systemsettings.png b/tools/configurator/assets/icons/pixelitos/16/systemsettings.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/systemsettings.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/systemsettings.png.import b/tools/configurator/assets/icons/pixelitos/16/systemsettings.png.import new file mode 100644 index 00000000..a4cce86e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/systemsettings.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8w5o1bmrth6g" +path="res://.godot/imported/systemsettings.png-a32512d81ece5301e2abfb892943e3f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/systemsettings.png" +dest_files=["res://.godot/imported/systemsettings.png-a32512d81ece5301e2abfb892943e3f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/team-fortress-classic.png b/tools/configurator/assets/icons/pixelitos/16/team-fortress-classic.png new file mode 100644 index 00000000..789c9e39 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/team-fortress-classic.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/team-fortress-classic.png.import b/tools/configurator/assets/icons/pixelitos/16/team-fortress-classic.png.import new file mode 100644 index 00000000..52b71583 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/team-fortress-classic.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g5bbb8d4048h" +path="res://.godot/imported/team-fortress-classic.png-7fb9df470d445fd4020a654dc726ff15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/team-fortress-classic.png" +dest_files=["res://.godot/imported/team-fortress-classic.png-7fb9df470d445fd4020a654dc726ff15.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/telegram.png b/tools/configurator/assets/icons/pixelitos/16/telegram.png new file mode 100644 index 00000000..98f6f3c6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/telegram.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/telegram.png.import b/tools/configurator/assets/icons/pixelitos/16/telegram.png.import new file mode 100644 index 00000000..6fce858d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/telegram.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4u0yp5008h72" +path="res://.godot/imported/telegram.png-0ff85cc21c0cff8036f5dcccf133d32e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/telegram.png" +dest_files=["res://.godot/imported/telegram.png-0ff85cc21c0cff8036f5dcccf133d32e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/terminal-tango.png b/tools/configurator/assets/icons/pixelitos/16/terminal-tango.png new file mode 100644 index 00000000..ed8a1c2b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/terminal-tango.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/terminal-tango.png.import b/tools/configurator/assets/icons/pixelitos/16/terminal-tango.png.import new file mode 100644 index 00000000..7ba27817 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/terminal-tango.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxtop31oij8b5" +path="res://.godot/imported/terminal-tango.png-2cca333019c8808606519465822a385a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/terminal-tango.png" +dest_files=["res://.godot/imported/terminal-tango.png-2cca333019c8808606519465822a385a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/tesseract.png b/tools/configurator/assets/icons/pixelitos/16/tesseract.png new file mode 100644 index 00000000..800ea5ef Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/tesseract.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/tesseract.png.import b/tools/configurator/assets/icons/pixelitos/16/tesseract.png.import new file mode 100644 index 00000000..d35137f1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/tesseract.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmia0bukb6fgd" +path="res://.godot/imported/tesseract.png-064b9e2e05b60a6b4b7a91fb4921d28e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/tesseract.png" +dest_files=["res://.godot/imported/tesseract.png-064b9e2e05b60a6b4b7a91fb4921d28e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/text-x-chdr.png b/tools/configurator/assets/icons/pixelitos/16/text-x-chdr.png new file mode 100644 index 00000000..f0b2cfe5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/text-x-chdr.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/text-x-chdr.png.import b/tools/configurator/assets/icons/pixelitos/16/text-x-chdr.png.import new file mode 100644 index 00000000..78200293 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/text-x-chdr.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjslf4sag627l" +path="res://.godot/imported/text-x-chdr.png-e9e8afda665f1e49f23176ac0f2de535.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/text-x-chdr.png" +dest_files=["res://.godot/imported/text-x-chdr.png-e9e8afda665f1e49f23176ac0f2de535.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/tint2.png b/tools/configurator/assets/icons/pixelitos/16/tint2.png new file mode 100644 index 00000000..6c71f919 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/tint2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/tint2.png.import b/tools/configurator/assets/icons/pixelitos/16/tint2.png.import new file mode 100644 index 00000000..c058d451 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/tint2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b12go0dgwqe32" +path="res://.godot/imported/tint2.png-14981b5c67f9c481b0df20c7559a8ec7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/tint2.png" +dest_files=["res://.godot/imported/tint2.png-14981b5c67f9c481b0df20c7559a8ec7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/tint2conf.png b/tools/configurator/assets/icons/pixelitos/16/tint2conf.png new file mode 100644 index 00000000..6c71f919 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/tint2conf.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/tint2conf.png.import b/tools/configurator/assets/icons/pixelitos/16/tint2conf.png.import new file mode 100644 index 00000000..7e7a9aa4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/tint2conf.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf40mycjyk4yq" +path="res://.godot/imported/tint2conf.png-284a035988f362480e1b0a7874e97de2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/tint2conf.png" +dest_files=["res://.godot/imported/tint2conf.png-284a035988f362480e1b0a7874e97de2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/tools-check-spelling.png b/tools/configurator/assets/icons/pixelitos/16/tools-check-spelling.png new file mode 100644 index 00000000..93158588 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/tools-check-spelling.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/tools-check-spelling.png.import b/tools/configurator/assets/icons/pixelitos/16/tools-check-spelling.png.import new file mode 100644 index 00000000..37b01a18 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/tools-check-spelling.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgfk8feokb5w5" +path="res://.godot/imported/tools-check-spelling.png-a2a533768237b01e590776eb567fc3a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/tools-check-spelling.png" +dest_files=["res://.godot/imported/tools-check-spelling.png-a2a533768237b01e590776eb567fc3a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/tsugaru.png b/tools/configurator/assets/icons/pixelitos/16/tsugaru.png new file mode 100644 index 00000000..eaf8e1eb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/tsugaru.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/tsugaru.png.import b/tools/configurator/assets/icons/pixelitos/16/tsugaru.png.import new file mode 100644 index 00000000..5d963e39 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/tsugaru.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwwhexnd8i1h1" +path="res://.godot/imported/tsugaru.png-437ad6a3a7ff11854f4c1cc89abad33a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/tsugaru.png" +dest_files=["res://.godot/imported/tsugaru.png-437ad6a3a7ff11854f4c1cc89abad33a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/twitter.png b/tools/configurator/assets/icons/pixelitos/16/twitter.png new file mode 100644 index 00000000..dbbbfe3d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/twitter.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/twitter.png.import b/tools/configurator/assets/icons/pixelitos/16/twitter.png.import new file mode 100644 index 00000000..07148812 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/twitter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmg3ay2o2rond" +path="res://.godot/imported/twitter.png-eb5a5787b6dc28d2695e1fdef37276ca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/twitter.png" +dest_files=["res://.godot/imported/twitter.png-eb5a5787b6dc28d2695e1fdef37276ca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/uget-icon.png b/tools/configurator/assets/icons/pixelitos/16/uget-icon.png new file mode 100644 index 00000000..b15ae0ce Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/uget-icon.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/uget-icon.png.import b/tools/configurator/assets/icons/pixelitos/16/uget-icon.png.import new file mode 100644 index 00000000..c4c24a6c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/uget-icon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj3edaahdc7oo" +path="res://.godot/imported/uget-icon.png-c5a5b0f19c7b736fc0446ce5c9159089.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/uget-icon.png" +dest_files=["res://.godot/imported/uget-icon.png-c5a5b0f19c7b736fc0446ce5c9159089.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/urbanterror.png b/tools/configurator/assets/icons/pixelitos/16/urbanterror.png new file mode 100644 index 00000000..3cf4e5ce Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/urbanterror.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/urbanterror.png.import b/tools/configurator/assets/icons/pixelitos/16/urbanterror.png.import new file mode 100644 index 00000000..32a90ae7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/urbanterror.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de2s7amfwsy4b" +path="res://.godot/imported/urbanterror.png-f89e9f4ba137c8961d17cc87cf64a393.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/urbanterror.png" +dest_files=["res://.godot/imported/urbanterror.png-f89e9f4ba137c8961d17cc87cf64a393.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/user-info.png b/tools/configurator/assets/icons/pixelitos/16/user-info.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/user-info.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/user-info.png.import b/tools/configurator/assets/icons/pixelitos/16/user-info.png.import new file mode 100644 index 00000000..c4ab223d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/user-info.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgyr3tv8ng4ky" +path="res://.godot/imported/user-info.png-245299ca135d07e8b2d474391a36e331.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/user-info.png" +dest_files=["res://.godot/imported/user-info.png-245299ca135d07e8b2d474391a36e331.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/utilities-system-monitor.png b/tools/configurator/assets/icons/pixelitos/16/utilities-system-monitor.png new file mode 100644 index 00000000..ff4e5819 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/utilities-system-monitor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/utilities-system-monitor.png.import b/tools/configurator/assets/icons/pixelitos/16/utilities-system-monitor.png.import new file mode 100644 index 00000000..b8a111fd --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/utilities-system-monitor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3fd3momtaxc8" +path="res://.godot/imported/utilities-system-monitor.png-28372a5bab0d00e46abb06d42711a0e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/utilities-system-monitor.png" +dest_files=["res://.godot/imported/utilities-system-monitor.png-28372a5bab0d00e46abb06d42711a0e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/utilities-terminal.png b/tools/configurator/assets/icons/pixelitos/16/utilities-terminal.png new file mode 100644 index 00000000..ed8a1c2b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/utilities-terminal.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/utilities-terminal.png.import b/tools/configurator/assets/icons/pixelitos/16/utilities-terminal.png.import new file mode 100644 index 00000000..72e85df4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/utilities-terminal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do0eyukvt2nmx" +path="res://.godot/imported/utilities-terminal.png-2cbe6a35ce562b2e6c45b2965a4235b4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/utilities-terminal.png" +dest_files=["res://.godot/imported/utilities-terminal.png-2cbe6a35ce562b2e6c45b2965a4235b4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/utilities-tweak-tool.png b/tools/configurator/assets/icons/pixelitos/16/utilities-tweak-tool.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/utilities-tweak-tool.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/utilities-tweak-tool.png.import b/tools/configurator/assets/icons/pixelitos/16/utilities-tweak-tool.png.import new file mode 100644 index 00000000..a454a608 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/utilities-tweak-tool.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8skwer0rpxrd" +path="res://.godot/imported/utilities-tweak-tool.png-6e7480633f257c24648b69404af54b4b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/utilities-tweak-tool.png" +dest_files=["res://.godot/imported/utilities-tweak-tool.png-6e7480633f257c24648b69404af54b4b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/ventoy.png b/tools/configurator/assets/icons/pixelitos/16/ventoy.png new file mode 100644 index 00000000..83c09b8e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/ventoy.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/ventoy.png.import b/tools/configurator/assets/icons/pixelitos/16/ventoy.png.import new file mode 100644 index 00000000..2a4b6194 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/ventoy.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gdvbqsbd21ea" +path="res://.godot/imported/ventoy.png-73c71b94bf12c922d070aa57b7937b5e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/ventoy.png" +dest_files=["res://.godot/imported/ventoy.png-73c71b94bf12c922d070aa57b7937b5e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/video-display.png b/tools/configurator/assets/icons/pixelitos/16/video-display.png new file mode 100644 index 00000000..ce878051 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/video-display.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/video-display.png.import b/tools/configurator/assets/icons/pixelitos/16/video-display.png.import new file mode 100644 index 00000000..faa3b734 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/video-display.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpu4rf0817jdd" +path="res://.godot/imported/video-display.png-debf9c1b116845775a1c8280c1f35ef4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/video-display.png" +dest_files=["res://.godot/imported/video-display.png-debf9c1b116845775a1c8280c1f35ef4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/viewnior.png b/tools/configurator/assets/icons/pixelitos/16/viewnior.png new file mode 100644 index 00000000..0bdbb16c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/viewnior.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/viewnior.png.import b/tools/configurator/assets/icons/pixelitos/16/viewnior.png.import new file mode 100644 index 00000000..ab0c8027 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/viewnior.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e87q1uv22qnk" +path="res://.godot/imported/viewnior.png-44d50731b3e041071409e21564c92b2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/viewnior.png" +dest_files=["res://.godot/imported/viewnior.png-44d50731b3e041071409e21564c92b2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/vim.png b/tools/configurator/assets/icons/pixelitos/16/vim.png new file mode 100644 index 00000000..326ea235 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/vim.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/vim.png.import b/tools/configurator/assets/icons/pixelitos/16/vim.png.import new file mode 100644 index 00000000..805a1f4d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/vim.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cflkavw61pbuo" +path="res://.godot/imported/vim.png-e392abfff231faa7ebb3456307710cd8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/vim.png" +dest_files=["res://.godot/imported/vim.png-e392abfff231faa7ebb3456307710cd8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/virt-manager.png b/tools/configurator/assets/icons/pixelitos/16/virt-manager.png new file mode 100644 index 00000000..cfb61bc9 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/virt-manager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/virt-manager.png.import b/tools/configurator/assets/icons/pixelitos/16/virt-manager.png.import new file mode 100644 index 00000000..608d385f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/virt-manager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk5dgt1074ggd" +path="res://.godot/imported/virt-manager.png-6b91c09de9ef35b02d508798aa67389c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/virt-manager.png" +dest_files=["res://.godot/imported/virt-manager.png-6b91c09de9ef35b02d508798aa67389c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/virtualbox.png b/tools/configurator/assets/icons/pixelitos/16/virtualbox.png new file mode 100644 index 00000000..07c0ec4f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/virtualbox.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/virtualbox.png.import b/tools/configurator/assets/icons/pixelitos/16/virtualbox.png.import new file mode 100644 index 00000000..755fc37b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/virtualbox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c07s6ipedcxj" +path="res://.godot/imported/virtualbox.png-9b68eb51b6f62a43968329d18d41db42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/virtualbox.png" +dest_files=["res://.godot/imported/virtualbox.png-9b68eb51b6f62a43968329d18d41db42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/visual-studio-code.png b/tools/configurator/assets/icons/pixelitos/16/visual-studio-code.png new file mode 100644 index 00000000..d45bde63 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/visual-studio-code.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/visual-studio-code.png.import b/tools/configurator/assets/icons/pixelitos/16/visual-studio-code.png.import new file mode 100644 index 00000000..c4376ee3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/visual-studio-code.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca6to2d15hvp6" +path="res://.godot/imported/visual-studio-code.png-25692ca8485bb690bbc73f9bf8cfa184.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/visual-studio-code.png" +dest_files=["res://.godot/imported/visual-studio-code.png-25692ca8485bb690bbc73f9bf8cfa184.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/vita3k.png b/tools/configurator/assets/icons/pixelitos/16/vita3k.png new file mode 100644 index 00000000..e1441196 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/vita3k.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/vita3k.png.import b/tools/configurator/assets/icons/pixelitos/16/vita3k.png.import new file mode 100644 index 00000000..62d7a9c1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/vita3k.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cly75dshuhaj" +path="res://.godot/imported/vita3k.png-93fe1d165f18d42eb8d11782e32ca7a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/vita3k.png" +dest_files=["res://.godot/imported/vita3k.png-93fe1d165f18d42eb8d11782e32ca7a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/vivaldi.png b/tools/configurator/assets/icons/pixelitos/16/vivaldi.png new file mode 100644 index 00000000..5d34b0c9 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/vivaldi.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/vivaldi.png.import b/tools/configurator/assets/icons/pixelitos/16/vivaldi.png.import new file mode 100644 index 00000000..46b695d8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/vivaldi.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://psgbhmi6m6a" +path="res://.godot/imported/vivaldi.png-1656dbc320082bef066759e8094d9a65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/vivaldi.png" +dest_files=["res://.godot/imported/vivaldi.png-1656dbc320082bef066759e8094d9a65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/vpinball.png b/tools/configurator/assets/icons/pixelitos/16/vpinball.png new file mode 100644 index 00000000..246a0f0d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/vpinball.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/vpinball.png.import b/tools/configurator/assets/icons/pixelitos/16/vpinball.png.import new file mode 100644 index 00000000..bf8f035c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/vpinball.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgqp5gfygvabx" +path="res://.godot/imported/vpinball.png-f7b80d1ce198d6aba87b6d34b24e4b4c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/vpinball.png" +dest_files=["res://.godot/imported/vpinball.png-f7b80d1ce198d6aba87b6d34b24e4b4c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/vscodium.png b/tools/configurator/assets/icons/pixelitos/16/vscodium.png new file mode 100644 index 00000000..8db5def0 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/vscodium.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/vscodium.png.import b/tools/configurator/assets/icons/pixelitos/16/vscodium.png.import new file mode 100644 index 00000000..9731bcbe --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/vscodium.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk0ymfg6swxkb" +path="res://.godot/imported/vscodium.png-c7249cafc42d9fff83b75c6e00013f0f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/vscodium.png" +dest_files=["res://.godot/imported/vscodium.png-c7249cafc42d9fff83b75c6e00013f0f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/waterfox.png b/tools/configurator/assets/icons/pixelitos/16/waterfox.png new file mode 100644 index 00000000..2cab3843 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/waterfox.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/waterfox.png.import b/tools/configurator/assets/icons/pixelitos/16/waterfox.png.import new file mode 100644 index 00000000..667dd539 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/waterfox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b18qmcfm8xitj" +path="res://.godot/imported/waterfox.png-f5cdf2daf2fb1f59bc435c4904dfcd80.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/waterfox.png" +dest_files=["res://.godot/imported/waterfox.png-f5cdf2daf2fb1f59bc435c4904dfcd80.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/wine.png b/tools/configurator/assets/icons/pixelitos/16/wine.png new file mode 100644 index 00000000..b0bf7108 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/wine.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/wine.png.import b/tools/configurator/assets/icons/pixelitos/16/wine.png.import new file mode 100644 index 00000000..80f93f3e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/wine.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpwyu3hvv62c5" +path="res://.godot/imported/wine.png-583ea9587fa331cb756b428ac5ab7cd7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/wine.png" +dest_files=["res://.godot/imported/wine.png-583ea9587fa331cb756b428ac5ab7cd7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xarchiver.png b/tools/configurator/assets/icons/pixelitos/16/xarchiver.png new file mode 100644 index 00000000..f94f6e1e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xarchiver.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xarchiver.png.import b/tools/configurator/assets/icons/pixelitos/16/xarchiver.png.import new file mode 100644 index 00000000..7f8668ba --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xarchiver.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgta2khfqwul5" +path="res://.godot/imported/xarchiver.png-440e60dc8a19f025c3df8304419c2af3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xarchiver.png" +dest_files=["res://.godot/imported/xarchiver.png-440e60dc8a19f025c3df8304419c2af3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xenia.png b/tools/configurator/assets/icons/pixelitos/16/xenia.png new file mode 100644 index 00000000..1c37b691 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xenia.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xenia.png.import b/tools/configurator/assets/icons/pixelitos/16/xenia.png.import new file mode 100644 index 00000000..1bd76ab9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xenia.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cadw0a72vyht3" +path="res://.godot/imported/xenia.png-404c14c1fb3a625de35e2b6a0233918a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xenia.png" +dest_files=["res://.godot/imported/xenia.png-404c14c1fb3a625de35e2b6a0233918a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfce-display-profile.png b/tools/configurator/assets/icons/pixelitos/16/xfce-display-profile.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfce-display-profile.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfce-display-profile.png.import b/tools/configurator/assets/icons/pixelitos/16/xfce-display-profile.png.import new file mode 100644 index 00000000..ee88b815 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfce-display-profile.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s5wjg2hbbs4c" +path="res://.godot/imported/xfce-display-profile.png-3fae86b686e1c34ac75474b4221254e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfce-display-profile.png" +dest_files=["res://.godot/imported/xfce-display-profile.png-3fae86b686e1c34ac75474b4221254e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfce4-logo.png b/tools/configurator/assets/icons/pixelitos/16/xfce4-logo.png new file mode 100644 index 00000000..44b33e80 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfce4-logo.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfce4-logo.png.import b/tools/configurator/assets/icons/pixelitos/16/xfce4-logo.png.import new file mode 100644 index 00000000..154e8558 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfce4-logo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvhmw7adbslp" +path="res://.godot/imported/xfce4-logo.png-d15a4ad641968d3fb52e371a647d1a99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfce4-logo.png" +dest_files=["res://.godot/imported/xfce4-logo.png-d15a4ad641968d3fb52e371a647d1a99.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfce4-panel.png b/tools/configurator/assets/icons/pixelitos/16/xfce4-panel.png new file mode 100644 index 00000000..6c71f919 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfce4-panel.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfce4-panel.png.import b/tools/configurator/assets/icons/pixelitos/16/xfce4-panel.png.import new file mode 100644 index 00000000..8e5576af --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfce4-panel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://676ex2tlwvbe" +path="res://.godot/imported/xfce4-panel.png-0e54f9857a1d71d55f21bae1f684c3f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfce4-panel.png" +dest_files=["res://.godot/imported/xfce4-panel.png-0e54f9857a1d71d55f21bae1f684c3f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfce4-settings.png b/tools/configurator/assets/icons/pixelitos/16/xfce4-settings.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfce4-settings.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfce4-settings.png.import b/tools/configurator/assets/icons/pixelitos/16/xfce4-settings.png.import new file mode 100644 index 00000000..12a6a3d0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfce4-settings.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cks7g5wldlmxh" +path="res://.godot/imported/xfce4-settings.png-549e6b6c58b910debf614a20b7846dab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfce4-settings.png" +dest_files=["res://.godot/imported/xfce4-settings.png-549e6b6c58b910debf614a20b7846dab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-hibernate.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-hibernate.png new file mode 100644 index 00000000..885a2a4e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-hibernate.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-hibernate.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-hibernate.png.import new file mode 100644 index 00000000..ccb16718 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-hibernate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddmy8g7lyi224" +path="res://.godot/imported/xfsm-hibernate.png-8638f6ff9927011167334582011af3a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-hibernate.png" +dest_files=["res://.godot/imported/xfsm-hibernate.png-8638f6ff9927011167334582011af3a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-lock.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-lock.png new file mode 100644 index 00000000..fe75993c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-lock.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-lock.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-lock.png.import new file mode 100644 index 00000000..8e631d4a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-lock.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqsq1h8y71lfc" +path="res://.godot/imported/xfsm-lock.png-9576458b998d6372c9977082063a1443.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-lock.png" +dest_files=["res://.godot/imported/xfsm-lock.png-9576458b998d6372c9977082063a1443.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-logout.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-logout.png new file mode 100644 index 00000000..1ccffb7c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-logout.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-logout.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-logout.png.import new file mode 100644 index 00000000..1a4013c2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-logout.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0m8e47lba1et" +path="res://.godot/imported/xfsm-logout.png-ac73a847e90bdf75fad44456bfb943e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-logout.png" +dest_files=["res://.godot/imported/xfsm-logout.png-ac73a847e90bdf75fad44456bfb943e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-reboot.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-reboot.png new file mode 100644 index 00000000..e2d17944 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-reboot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-reboot.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-reboot.png.import new file mode 100644 index 00000000..70542333 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-reboot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://reen68m4q0sa" +path="res://.godot/imported/xfsm-reboot.png-9d2dec3268df7f808e7bbc7e0648e701.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-reboot.png" +dest_files=["res://.godot/imported/xfsm-reboot.png-9d2dec3268df7f808e7bbc7e0648e701.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-shutdown.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-shutdown.png new file mode 100644 index 00000000..933ee6a7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-shutdown.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-shutdown.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-shutdown.png.import new file mode 100644 index 00000000..a1d3bbca --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-shutdown.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crsgqqhmtx16d" +path="res://.godot/imported/xfsm-shutdown.png-b3a0b02d819392a4d81210e00159b733.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-shutdown.png" +dest_files=["res://.godot/imported/xfsm-shutdown.png-b3a0b02d819392a4d81210e00159b733.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend-hibernate.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend-hibernate.png new file mode 100644 index 00000000..885a2a4e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend-hibernate.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend-hibernate.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend-hibernate.png.import new file mode 100644 index 00000000..73a167fc --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend-hibernate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch44473hnctip" +path="res://.godot/imported/xfsm-suspend-hibernate.png-a69ba42625da3707cf2abc70b2e2a1ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-suspend-hibernate.png" +dest_files=["res://.godot/imported/xfsm-suspend-hibernate.png-a69ba42625da3707cf2abc70b2e2a1ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend.png new file mode 100644 index 00000000..fe75993c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend.png.import new file mode 100644 index 00000000..81031a8f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwruuyshmnsnr" +path="res://.godot/imported/xfsm-suspend.png-696c941b51e15ad9372f9a667e7e212d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-suspend.png" +dest_files=["res://.godot/imported/xfsm-suspend.png-696c941b51e15ad9372f9a667e7e212d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-switch-user.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-switch-user.png new file mode 100644 index 00000000..480e62d1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-switch-user.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-switch-user.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-switch-user.png.import new file mode 100644 index 00000000..63862b15 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-switch-user.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dftye6v4lj68f" +path="res://.godot/imported/xfsm-switch-user.png-72d8f01ff17445363a9f48c777ebec31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-switch-user.png" +dest_files=["res://.godot/imported/xfsm-switch-user.png-72d8f01ff17445363a9f48c777ebec31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-users.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-users.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-users.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-users.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-users.png.import new file mode 100644 index 00000000..98e89924 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-users.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwbb7jldfgivg" +path="res://.godot/imported/xfsm-users.png-bac0746ce05178f903a231cb62e00b07.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-users.png" +dest_files=["res://.godot/imported/xfsm-users.png-bac0746ce05178f903a231cb62e00b07.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/youtube-music.png b/tools/configurator/assets/icons/pixelitos/16/youtube-music.png new file mode 100644 index 00000000..7b101c88 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/youtube-music.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/youtube-music.png.import b/tools/configurator/assets/icons/pixelitos/16/youtube-music.png.import new file mode 100644 index 00000000..7920ff9c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/youtube-music.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3shqdknt7pm" +path="res://.godot/imported/youtube-music.png-3177d6285d96c22fcfc17e4e23364668.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/youtube-music.png" +dest_files=["res://.godot/imported/youtube-music.png-3177d6285d96c22fcfc17e4e23364668.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/youtube.png b/tools/configurator/assets/icons/pixelitos/16/youtube.png new file mode 100644 index 00000000..eaad8522 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/youtube.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/youtube.png.import b/tools/configurator/assets/icons/pixelitos/16/youtube.png.import new file mode 100644 index 00000000..20b83065 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/youtube.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0c8ak7bxccch" +path="res://.godot/imported/youtube.png-68accaf6eddb3bf22959327109ee6aac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/youtube.png" +dest_files=["res://.godot/imported/youtube.png-68accaf6eddb3bf22959327109ee6aac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/zsnes.png b/tools/configurator/assets/icons/pixelitos/16/zsnes.png new file mode 100644 index 00000000..132409c2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/zsnes.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/zsnes.png.import b/tools/configurator/assets/icons/pixelitos/16/zsnes.png.import new file mode 100644 index 00000000..3085d4b0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/zsnes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0jiqq01ttumv" +path="res://.godot/imported/zsnes.png-9d207e62f6761228b413dd3ba02be9fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/zsnes.png" +dest_files=["res://.godot/imported/zsnes.png-9d207e62f6761228b413dd3ba02be9fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/LICENSE b/tools/configurator/assets/icons/pixelitos/LICENSE new file mode 100644 index 00000000..7cd68098 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 ItzSelenux + +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/tools/configurator/assets/icons/pixelitos/README.md b/tools/configurator/assets/icons/pixelitos/README.md new file mode 100644 index 00000000..94b06885 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/README.md @@ -0,0 +1,13 @@ +# pixelitos-icon-theme + 16-bit style icon theme + ## Note + - pixelitos-icon-theme is under constantly development, + if you want a icon to be added, please make an issue + + ## Installation + +`git clone https://github.com/ItzSelenux/pixelitos-icon-theme` + +`mv ~/pixelitos-icon-theme ~/.local/share/icons/pixelitos` + +- the folder needs to be called "pixelites", for the color change script to work properly diff --git a/tools/configurator/assets/icons/pixelitos/vcs-conflicting.svg b/tools/configurator/assets/icons/pixelitos/vcs-conflicting.svg new file mode 100644 index 00000000..73b82a5b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/vcs-conflicting.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/tools/configurator/assets/icons/pixelitos/vcs-conflicting.svg.import b/tools/configurator/assets/icons/pixelitos/vcs-conflicting.svg.import new file mode 100644 index 00000000..5f644754 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/vcs-conflicting.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jyva1n4es6p6" +path="res://.godot/imported/vcs-conflicting.svg-7d9ca55fc6cdda8d2909862470dd2741.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/vcs-conflicting.svg" +dest_files=["res://.godot/imported/vcs-conflicting.svg-7d9ca55fc6cdda8d2909862470dd2741.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/tools/configurator/assets/icons/pixelitos/vcs-grey.svg b/tools/configurator/assets/icons/pixelitos/vcs-grey.svg new file mode 100644 index 00000000..905a487c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/vcs-grey.svg @@ -0,0 +1,51 @@ + + + + + + + + + + diff --git a/tools/configurator/assets/icons/pixelitos/vcs-grey.svg.import b/tools/configurator/assets/icons/pixelitos/vcs-grey.svg.import new file mode 100644 index 00000000..6b627a8b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/vcs-grey.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn0tfnnihjvy7" +path="res://.godot/imported/vcs-grey.svg-5dc3f74491f0350901e1bcb7ab7434c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/vcs-grey.svg" +dest_files=["res://.godot/imported/vcs-grey.svg-5dc3f74491f0350901e1bcb7ab7434c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/tools/configurator/assets/icons/pixelitos/vcs-normal.svg b/tools/configurator/assets/icons/pixelitos/vcs-normal.svg new file mode 100644 index 00000000..63611fac --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/vcs-normal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/tools/configurator/assets/icons/pixelitos/vcs-normal.svg.import b/tools/configurator/assets/icons/pixelitos/vcs-normal.svg.import new file mode 100644 index 00000000..ba6ecd27 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/vcs-normal.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buod4n6hw4i2m" +path="res://.godot/imported/vcs-normal.svg-fb6e17b8037bb49251d0ed572e7833fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/vcs-normal.svg" +dest_files=["res://.godot/imported/vcs-normal.svg-fb6e17b8037bb49251d0ed572e7833fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538538__sjonas88__process-2.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538538__sjonas88__process-2.wav new file mode 100644 index 00000000..033e0566 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538538__sjonas88__process-2.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538538__sjonas88__process-2.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538538__sjonas88__process-2.wav.import new file mode 100644 index 00000000..fe5b914f --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538538__sjonas88__process-2.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://b2vis56rc446" +path="res://.godot/imported/538538__sjonas88__process-2.wav-7e0ab92936c07ed43d54872d5e9e3b4b.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538538__sjonas88__process-2.wav" +dest_files=["res://.godot/imported/538538__sjonas88__process-2.wav-7e0ab92936c07ed43d54872d5e9e3b4b.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538539__sjonas88__pipe-sound.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538539__sjonas88__pipe-sound.wav new file mode 100644 index 00000000..27d95bdc Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538539__sjonas88__pipe-sound.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538539__sjonas88__pipe-sound.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538539__sjonas88__pipe-sound.wav.import new file mode 100644 index 00000000..8c69ff51 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538539__sjonas88__pipe-sound.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://buktnqo4i5lmh" +path="res://.godot/imported/538539__sjonas88__pipe-sound.wav-6515783939644190febb3c8f23d3e912.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538539__sjonas88__pipe-sound.wav" +dest_files=["res://.godot/imported/538539__sjonas88__pipe-sound.wav-6515783939644190febb3c8f23d3e912.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538540__sjonas88__fail-sound.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538540__sjonas88__fail-sound.wav new file mode 100644 index 00000000..da2a541e Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538540__sjonas88__fail-sound.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538540__sjonas88__fail-sound.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538540__sjonas88__fail-sound.wav.import new file mode 100644 index 00000000..fd20d7fe --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538540__sjonas88__fail-sound.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://h8v5imq2ghl6" +path="res://.godot/imported/538540__sjonas88__fail-sound.wav-25ec50c6877c99ff966be2fd860a0bb1.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538540__sjonas88__fail-sound.wav" +dest_files=["res://.godot/imported/538540__sjonas88__fail-sound.wav-25ec50c6877c99ff966be2fd860a0bb1.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538541__sjonas88__fail-2.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538541__sjonas88__fail-2.wav new file mode 100644 index 00000000..32290ae8 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538541__sjonas88__fail-2.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538541__sjonas88__fail-2.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538541__sjonas88__fail-2.wav.import new file mode 100644 index 00000000..1f9aff8d --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538541__sjonas88__fail-2.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://dvuhuo2irjhbu" +path="res://.godot/imported/538541__sjonas88__fail-2.wav-122b4ea196164e5fa7c83a9cb72e40b1.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538541__sjonas88__fail-2.wav" +dest_files=["res://.godot/imported/538541__sjonas88__fail-2.wav-122b4ea196164e5fa7c83a9cb72e40b1.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538542__sjonas88__rising-3.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538542__sjonas88__rising-3.wav new file mode 100644 index 00000000..73ee660f Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538542__sjonas88__rising-3.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538542__sjonas88__rising-3.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538542__sjonas88__rising-3.wav.import new file mode 100644 index 00000000..6c3ca695 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538542__sjonas88__rising-3.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://ccfw0kgfshftj" +path="res://.godot/imported/538542__sjonas88__rising-3.wav-e5be02dafb9d2b2e656f3e284cb59f41.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538542__sjonas88__rising-3.wav" +dest_files=["res://.godot/imported/538542__sjonas88__rising-3.wav-e5be02dafb9d2b2e656f3e284cb59f41.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538543__sjonas88__rising-2.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538543__sjonas88__rising-2.wav new file mode 100644 index 00000000..682202e9 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538543__sjonas88__rising-2.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538543__sjonas88__rising-2.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538543__sjonas88__rising-2.wav.import new file mode 100644 index 00000000..f40102e3 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538543__sjonas88__rising-2.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://7o37g1ldsqg8" +path="res://.godot/imported/538543__sjonas88__rising-2.wav-94424088492c09d1baee466dfd04f771.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538543__sjonas88__rising-2.wav" +dest_files=["res://.godot/imported/538543__sjonas88__rising-2.wav-94424088492c09d1baee466dfd04f771.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538544__sjonas88__process.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538544__sjonas88__process.wav new file mode 100644 index 00000000..50710de8 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538544__sjonas88__process.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538544__sjonas88__process.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538544__sjonas88__process.wav.import new file mode 100644 index 00000000..a510fdc9 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538544__sjonas88__process.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://7w073cgcaph8" +path="res://.godot/imported/538544__sjonas88__process.wav-9eab6f84a156a2f52c7696fb11887a3c.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538544__sjonas88__process.wav" +dest_files=["res://.godot/imported/538544__sjonas88__process.wav-9eab6f84a156a2f52c7696fb11887a3c.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538545__sjonas88__process-3.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538545__sjonas88__process-3.wav new file mode 100644 index 00000000..39eba25f Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538545__sjonas88__process-3.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538545__sjonas88__process-3.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538545__sjonas88__process-3.wav.import new file mode 100644 index 00000000..6c33fd01 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538545__sjonas88__process-3.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://bsuubeqwno7gv" +path="res://.godot/imported/538545__sjonas88__process-3.wav-7ffbb7f6eec788f1d198cdfc5bcd35da.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538545__sjonas88__process-3.wav" +dest_files=["res://.godot/imported/538545__sjonas88__process-3.wav-7ffbb7f6eec788f1d198cdfc5bcd35da.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538546__sjonas88__rising.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538546__sjonas88__rising.wav new file mode 100644 index 00000000..ff1bb288 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538546__sjonas88__rising.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538546__sjonas88__rising.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538546__sjonas88__rising.wav.import new file mode 100644 index 00000000..b69c5001 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538546__sjonas88__rising.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://c1gh1d0tp5ut3" +path="res://.godot/imported/538546__sjonas88__rising.wav-be28154e2568a7901227e89f3cf4027f.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538546__sjonas88__rising.wav" +dest_files=["res://.godot/imported/538546__sjonas88__rising.wav-be28154e2568a7901227e89f3cf4027f.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538547__sjonas88__rising-4.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538547__sjonas88__rising-4.wav new file mode 100644 index 00000000..b82140be Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538547__sjonas88__rising-4.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538547__sjonas88__rising-4.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538547__sjonas88__rising-4.wav.import new file mode 100644 index 00000000..74050be3 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538547__sjonas88__rising-4.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://ctks8i20nretn" +path="res://.godot/imported/538547__sjonas88__rising-4.wav-cc2a6f85daa3fc6ba61d88b8bf523924.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538547__sjonas88__rising-4.wav" +dest_files=["res://.godot/imported/538547__sjonas88__rising-4.wav-cc2a6f85daa3fc6ba61d88b8bf523924.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538548__sjonas88__select-3.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538548__sjonas88__select-3.wav new file mode 100644 index 00000000..3ac170a9 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538548__sjonas88__select-3.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538548__sjonas88__select-3.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538548__sjonas88__select-3.wav.import new file mode 100644 index 00000000..ca14f934 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538548__sjonas88__select-3.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://fveqtwd33w7n" +path="res://.godot/imported/538548__sjonas88__select-3.wav-3d75efee47597b1c7d77f9412f0b14b5.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538548__sjonas88__select-3.wav" +dest_files=["res://.godot/imported/538548__sjonas88__select-3.wav-3d75efee47597b1c7d77f9412f0b14b5.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538549__sjonas88__select-2.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538549__sjonas88__select-2.wav new file mode 100644 index 00000000..11792f71 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538549__sjonas88__select-2.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538549__sjonas88__select-2.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538549__sjonas88__select-2.wav.import new file mode 100644 index 00000000..4a18a9e5 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538549__sjonas88__select-2.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://dhejvg02t5o35" +path="res://.godot/imported/538549__sjonas88__select-2.wav-8b1c4c60db51366ba4f01f6922bbf4d2.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538549__sjonas88__select-2.wav" +dest_files=["res://.godot/imported/538549__sjonas88__select-2.wav-8b1c4c60db51366ba4f01f6922bbf4d2.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538550__sjonas88__deep-tone.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538550__sjonas88__deep-tone.wav new file mode 100644 index 00000000..e465c937 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538550__sjonas88__deep-tone.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538550__sjonas88__deep-tone.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538550__sjonas88__deep-tone.wav.import new file mode 100644 index 00000000..b29bd3fa --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538550__sjonas88__deep-tone.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://b0tkc4uqeh75q" +path="res://.godot/imported/538550__sjonas88__deep-tone.wav-95e9dc90f6e75bc6620575d07f709ba7.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538550__sjonas88__deep-tone.wav" +dest_files=["res://.godot/imported/538550__sjonas88__deep-tone.wav-95e9dc90f6e75bc6620575d07f709ba7.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538551__sjonas88__3-select.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538551__sjonas88__3-select.wav new file mode 100644 index 00000000..2e7aa53d Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538551__sjonas88__3-select.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538551__sjonas88__3-select.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538551__sjonas88__3-select.wav.import new file mode 100644 index 00000000..1284ae6c --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538551__sjonas88__3-select.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://ujv8kpegpmpt" +path="res://.godot/imported/538551__sjonas88__3-select.wav-86b8ffff434ba08cc915003719c0dcd9.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538551__sjonas88__3-select.wav" +dest_files=["res://.godot/imported/538551__sjonas88__3-select.wav-86b8ffff434ba08cc915003719c0dcd9.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538552__sjonas88__rising-tones.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538552__sjonas88__rising-tones.wav new file mode 100644 index 00000000..bd71d2a5 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538552__sjonas88__rising-tones.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538552__sjonas88__rising-tones.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538552__sjonas88__rising-tones.wav.import new file mode 100644 index 00000000..d068e028 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538552__sjonas88__rising-tones.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://mm42tfxhowwe" +path="res://.godot/imported/538552__sjonas88__rising-tones.wav-f484f3e32af39e2f6ece214b2cbbc19b.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538552__sjonas88__rising-tones.wav" +dest_files=["res://.godot/imported/538552__sjonas88__rising-tones.wav-f484f3e32af39e2f6ece214b2cbbc19b.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538553__sjonas88__stars.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538553__sjonas88__stars.wav new file mode 100644 index 00000000..55b368da Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538553__sjonas88__stars.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538553__sjonas88__stars.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538553__sjonas88__stars.wav.import new file mode 100644 index 00000000..b14fef5b --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538553__sjonas88__stars.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://bmap54wuuumst" +path="res://.godot/imported/538553__sjonas88__stars.wav-593d0d6b4e2052a07396971ced5315b5.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538553__sjonas88__stars.wav" +dest_files=["res://.godot/imported/538553__sjonas88__stars.wav-593d0d6b4e2052a07396971ced5315b5.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538554__sjonas88__success.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538554__sjonas88__success.wav new file mode 100644 index 00000000..3d811607 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538554__sjonas88__success.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538554__sjonas88__success.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538554__sjonas88__success.wav.import new file mode 100644 index 00000000..5ba9a95e --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538554__sjonas88__success.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://bu16hw2opbvp6" +path="res://.godot/imported/538554__sjonas88__success.wav-617fb21a3a937ebffcac1034bc19f3de.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538554__sjonas88__success.wav" +dest_files=["res://.godot/imported/538554__sjonas88__success.wav-617fb21a3a937ebffcac1034bc19f3de.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538555__sjonas88__shimmer.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538555__sjonas88__shimmer.wav new file mode 100644 index 00000000..5643866a Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538555__sjonas88__shimmer.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538555__sjonas88__shimmer.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538555__sjonas88__shimmer.wav.import new file mode 100644 index 00000000..2b3a2c5d --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538555__sjonas88__shimmer.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://cgg08e1741i0m" +path="res://.godot/imported/538555__sjonas88__shimmer.wav-c47d31735b366fa09f66d96c18887d7d.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538555__sjonas88__shimmer.wav" +dest_files=["res://.godot/imported/538555__sjonas88__shimmer.wav-c47d31735b366fa09f66d96c18887d7d.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/_readme_and_license.txt b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/_readme_and_license.txt new file mode 100644 index 00000000..8abc72f9 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/_readme_and_license.txt @@ -0,0 +1,76 @@ +Sound pack downloaded from Freesound +---------------------------------------- + +"Smooth Game-like Sounds" + +This pack of sounds contains sounds by the following user: + - Sjonas88 ( https://freesound.org/people/Sjonas88/ ) + +You can find this pack online at: https://freesound.org/people/Sjonas88/packs/30375/ + + +Licenses in this pack (see below for individual sound licenses) +--------------------------------------------------------------- + +Creative Commons 0: http://creativecommons.org/publicdomain/zero/1.0/ + + +Sounds in this pack +------------------- + + * 538555__sjonas88__shimmer.wav + * url: https://freesound.org/s/538555/ + * license: Creative Commons 0 + * 538554__sjonas88__success.wav + * url: https://freesound.org/s/538554/ + * license: Creative Commons 0 + * 538553__sjonas88__stars.wav + * url: https://freesound.org/s/538553/ + * license: Creative Commons 0 + * 538552__sjonas88__rising-tones.wav + * url: https://freesound.org/s/538552/ + * license: Creative Commons 0 + * 538551__sjonas88__3-select.wav + * url: https://freesound.org/s/538551/ + * license: Creative Commons 0 + * 538550__sjonas88__deep-tone.wav + * url: https://freesound.org/s/538550/ + * license: Creative Commons 0 + * 538549__sjonas88__select-2.wav + * url: https://freesound.org/s/538549/ + * license: Creative Commons 0 + * 538548__sjonas88__select-3.wav + * url: https://freesound.org/s/538548/ + * license: Creative Commons 0 + * 538547__sjonas88__rising-4.wav + * url: https://freesound.org/s/538547/ + * license: Creative Commons 0 + * 538546__sjonas88__rising.wav + * url: https://freesound.org/s/538546/ + * license: Creative Commons 0 + * 538545__sjonas88__process-3.wav + * url: https://freesound.org/s/538545/ + * license: Creative Commons 0 + * 538544__sjonas88__process.wav + * url: https://freesound.org/s/538544/ + * license: Creative Commons 0 + * 538543__sjonas88__rising-2.wav + * url: https://freesound.org/s/538543/ + * license: Creative Commons 0 + * 538542__sjonas88__rising-3.wav + * url: https://freesound.org/s/538542/ + * license: Creative Commons 0 + * 538541__sjonas88__fail-2.wav + * url: https://freesound.org/s/538541/ + * license: Creative Commons 0 + * 538540__sjonas88__fail-sound.wav + * url: https://freesound.org/s/538540/ + * license: Creative Commons 0 + * 538539__sjonas88__pipe-sound.wav + * url: https://freesound.org/s/538539/ + * license: Creative Commons 0 + * 538538__sjonas88__process-2.wav + * url: https://freesound.org/s/538538/ + * license: Creative Commons 0 + + diff --git a/tools/configurator/assets/themes/default_theme.tres b/tools/configurator/assets/themes/default_theme.tres new file mode 100644 index 00000000..a2d96385 --- /dev/null +++ b/tools/configurator/assets/themes/default_theme.tres @@ -0,0 +1,65 @@ +[gd_resource type="Theme" load_steps=7 format=3 uid="uid://hhc60cllcg47"] + +[ext_resource type="Texture2D" uid="uid://buod4n6hw4i2m" path="res://assets/icons/pixelitos/vcs-normal.svg" id="1_pvl23"] +[ext_resource type="Texture2D" uid="uid://cn0tfnnihjvy7" path="res://assets/icons/pixelitos/vcs-grey.svg" id="2_ud3yg"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_md22p"] +bg_color = Color(0.580392, 0.419608, 0.921569, 1) +border_width_left = 15 +border_width_top = 15 +border_width_right = 15 +border_width_bottom = 15 +border_color = Color(0.843137, 0.137255, 0.909804, 1) +border_blend = true +corner_radius_top_left = 25 +corner_radius_top_right = 25 +corner_radius_bottom_right = 25 +corner_radius_bottom_left = 25 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kr58o"] +bg_color = Color(0.580392, 0.419608, 0.921569, 1) +border_width_left = 15 +border_width_top = 15 +border_width_right = 15 +border_width_bottom = 15 +border_color = Color(0.136826, 0.136826, 0.136826, 1) +border_blend = true +corner_radius_top_left = 25 +corner_radius_top_right = 25 +corner_radius_bottom_right = 25 +corner_radius_bottom_left = 25 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_0ahfc"] +bg_color = Color(0.454524, 0.454524, 0.454524, 1) +border_width_left = 10 +border_width_top = 10 +border_width_right = 10 +border_width_bottom = 10 +border_color = Color(0.101961, 0.623529, 1, 1) +border_blend = true +corner_radius_top_left = 25 +corner_radius_top_right = 25 +corner_radius_bottom_right = 25 +corner_radius_bottom_left = 25 +corner_detail = 7 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_o8sf1"] +bg_color = Color(0.101961, 0.623529, 1, 1) +border_width_left = 15 +border_width_top = 14 +border_width_right = 15 +border_width_bottom = 15 +border_blend = true +corner_radius_top_left = 25 +corner_radius_top_right = 25 +corner_radius_bottom_right = 25 +corner_radius_bottom_left = 25 + +[resource] +Button/constants/align_to_largest_stylebox = 1 +Button/styles/focus = SubResource("StyleBoxFlat_md22p") +Button/styles/hover = SubResource("StyleBoxFlat_kr58o") +Button/styles/normal = SubResource("StyleBoxFlat_0ahfc") +Button/styles/pressed = SubResource("StyleBoxFlat_o8sf1") +CheckBox/icons/checked = ExtResource("1_pvl23") +CheckBox/icons/unchecked = ExtResource("2_ud3yg") diff --git a/tools/configurator/assets/themes/emulators.tres b/tools/configurator/assets/themes/emulators.tres new file mode 100644 index 00000000..333c8103 --- /dev/null +++ b/tools/configurator/assets/themes/emulators.tres @@ -0,0 +1,14 @@ +[gd_resource type="StyleBoxFlat" format=3 uid="uid://ba3l3ja1jbqpx"] + +[resource] +bg_color = Color(0.6, 0.168627, 0.6, 0.372549) +border_width_left = 3 +border_width_top = 3 +border_width_right = 3 +border_width_bottom = 3 +border_color = Color(0.990271, 0.937624, 0.986034, 1) +border_blend = true +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 diff --git a/tools/configurator/assets/wiki_content/configurator.md b/tools/configurator/assets/wiki_content/configurator.md new file mode 100644 index 00000000..2d7dda67 --- /dev/null +++ b/tools/configurator/assets/wiki_content/configurator.md @@ -0,0 +1,171 @@ +# The RetroDECK Configurator + +**Please note that we are going to rebuild the Configurator into a controller friendly GODOT application and that the current version is not the final design.** + + + +The `RetroDECK Configurator` is a unique multi-use utility that exists within RetroDECK to manage many aspects of the application and exposes functions from the `RetroDECK Framework` to the user. + +The `RetroDECK Configurator` can be opened from: + +- The main menu inside the ES-DE interface and choose `RetroDECK Configurator`. + + + +* From the `RetroDECK Configurator.desktop` desktop shortcut, available in your application menu. + + + +* From CLI by calling `flatpak run net.retrodeck.retrodeck --configurator` + +What follows are the commands you can use inside the Configurator (more commands will be added during development). + +## Presets & Settings +In this menu you can set various presets. + +#### Widescreen: Enable/Disable +Enables or disables Widescreen in all supported emulators and cores. + +#### Ask to Exit prompt: Enable/Disable +Enables or disables ask to exit prompts in all supported emulators and cores. +Note: If you disable this, the emulators will directly exit. + +### Global: Presets & Settings +In this menu you will find presets and settings that span over multiple emulators. + +#### RetroAchivements: Login +Login to RetroAchievements in all supported emulators and cores. + +#### RetroAchivements: Logut +Logut from RetroAchievements in all supported emulators and cores. + +#### RetroAchivements: Hardcore Mode +Enables `Hardcore Mode` from RetroAchievements in all supported emulators and cores. + +#### Swap A/B and X/Y: Enable/Disable +Swaps `A/B` `X/Y` in supported emulators and cores. + +#### Quick Resume: Enable/Disable +Enables `Quick Resume` aka `Auto Save` + `Auto Load` on exit in supported emulators and cores. + +### RetroArch: Presets & Settings +In this menu you will find presets and settings for RetroArch. + +#### Borders: Enable/Disable +Enable / Disable borders across the RetroArch cores you choose. + +#### Rewind: Enable/Disable +Enable / Disable rewind across all of RetroArch (this may impact performance on some more demanding systems). + +### Wii & Gamecube: Presets & Settings +In this menu you will find presets and settings for Dolphin and Primehack. + + + +#### Dolphin Textures: Universal Dynamic Input +Enable / Disable Venomalias's Universal Dynamic Input Texture for Dolphin. + + + +#### Primehack Textures: Universal Dynamic Input +Enable / Disable Venomalias's Universal Dynamic Input Texture for Primehack. + + + +## Open Emulator + +Here you launch and configure each emulator's settings, the option you choose will open that emulators GUI. For documentation on how to change the settings of each emulator's settings please check the website of each emulator. + +(Please note that most of the emulator interfaces where not designed with controller input in mind for handling the applications GUI, just the games. You might need to use other inputs like the Steam Decks touchscreen or a mouse and keyboard to navigate properly). + + +## RetroDECK: Tools + + +### Tool: Remove empty ROM folders + +This tool removes all the roms folders under retrodeck/roms/ that are empty to only leave those that are populated with content. + +### Tool: Rebuild all ROM folders + +This tool rebuilds rom folders you have accidentally removed or used the `Remove empty ROM folders` tool. + +### Tool: Move files +This option lets you choose the installation path of the RetroDECK folder that handles ROMS, Saves, BIOS, etc... to a new location. +You get the following three options. + +`Internal Storage` - Moves the folder to the internal storage. +`SD CARD` - Moves the folder to the SD CARD +`Custom Location` - Choose where you want the RetroDECK folder to be. + + + +### Tool: Compress games +This option enables you to compress disc-based game image files `.gdi` `.iso` `.bin` `.cue` to the less space demanding `.chd` format. +You can choose either a single game or many. + + + +### Install: RetroDECK SD Controller Profile +This option installs the Steam controller profiles that RetroDECK into Steam. + + +### Install: PS3 Firmware +This option downloads and installs the latest PS3 firmware. At the end of the download, RPCS3 will open requesting the user to install it (just press OK). + + + +### RetroDECK: Change update settings (cooker only) +This option lets you turn on or off automatic updates on launch. + + + +## RetroDECK: Troubleshooting +Various troubleshooting options. + + +### Backup: RetroDECK Userdata +Creates backups of the user data folders + + + +### Check & Verify: Multi-file structure +Verifies the structure of multi disc/file games that uses `.m3u` files. + + + +### Check & Verify: BIOS +Shows a detailed BIOS list of missing and current BIOS. + + + +### RetroDECK: Reset +The reset menu resets various features + + + +#### Reset Specific Emulator +Opens a menu where you can reset a specific emulator + + +#### Reset All Emulators +Resets all the emulators at once + + + +#### Reset RetroDECK +Resets the entirety of RetroDECK. +`⚠️ WARNING! BACK UP YOUR DATA BEFORE RUNNING THIS! ⚠️` + + + +## RetroDECK: About +This menu contains information about RetroDECK + +### Version history +Displays the changelogs + + + +### Credits +Displays the credits diff --git a/tools/configurator/components/bios_check/bios_check.gd b/tools/configurator/components/bios_check/bios_check.gd new file mode 100644 index 00000000..d4b9fa6d --- /dev/null +++ b/tools/configurator/components/bios_check/bios_check.gd @@ -0,0 +1,54 @@ +extends Control + +var bios_result: Dictionary +var console: bool = false +var BIOS_COLUMNS_BASIC := ["BIOS File Name", "System", "Found", "Hash\nMatch", "Description"] +var BIOS_COLUMNS_EXPERT := ["BIOS File Name", "System", "Found", "Hash\nMatch", "Description", "Sub\nFolder", "Hash"] +@onready var bios_type:int = get_tree().current_scene.bios_type +@onready var custom_theme: Theme = get_tree().current_scene.custom_theme + +func _ready(): + #var font_size = get_theme_font_size("font") + #custom_theme.default_font_size = 16 + $".".theme = custom_theme + var table: Tree = %Table + if bios_type == 1: #Basic BIOS button pressed + table.columns = BIOS_COLUMNS_BASIC.size() + for i in BIOS_COLUMNS_BASIC.size(): + table.set_column_custom_minimum_width(0, 150) + table.set_column_custom_minimum_width(1, 200) + table.set_column_custom_minimum_width(4, 350) + table.set_column_title(i, BIOS_COLUMNS_BASIC[i]) + else: #Assume advanced BIOS button pressed + table.columns = BIOS_COLUMNS_EXPERT.size() + for i in BIOS_COLUMNS_EXPERT.size(): + table.set_column_custom_minimum_width(0, 170) + table.set_column_custom_minimum_width(1, 200) + table.set_column_custom_minimum_width(4, 325) + table.set_column_custom_minimum_width(6, 225) + table.set_column_title(i, BIOS_COLUMNS_EXPERT[i]) + var root = table.create_item() + table.hide_root = true + if bios_type == 1: #Basic BIOS button pressed + var parameters = ["check_bios_files","basic"] + bios_result = await class_functions.run_thread_command(class_functions.wrapper_command, parameters, console) + else: #Assume advanced BIOS button pressed + var parameters = ["check_bios_files"] + bios_result = await class_functions.run_thread_command(class_functions.wrapper_command, parameters, console) + var bios_list = bios_result["output"] + var bios_lines: Array = bios_list.split("\n") + for line in bios_lines: + var bios_line: Array = line.split("^") + var table_line: TreeItem = table.create_item(root) + for i in bios_line.size(): + if bios_line.size() >= 5: + if bios_line[2] == "No": + table_line.set_custom_bg_color(i,Color(1,0,0,0.15)) + elif bios_line[2] == "Yes" and bios_line[3] == "No": + table_line.set_custom_bg_color(i,Color(1,0.6,0,0.35)) + elif bios_line[2] == "Yes": + table_line.set_custom_bg_color(i,Color(0,1,0,0.15)) + table_line.set_text(i, bios_line[i]) + #if table_line.get_index() % 2 == 1: + #table_line.set_custom_bg_color(i,Color(0.15, 0.15, 0.15, 1),false) + #table_line.set_custom_color(i,Color(1,1,1,1)) diff --git a/tools/configurator/components/bios_check/bios_popup_content.tscn b/tools/configurator/components/bios_check/bios_popup_content.tscn new file mode 100644 index 00000000..6b4111c7 --- /dev/null +++ b/tools/configurator/components/bios_check/bios_popup_content.tscn @@ -0,0 +1,42 @@ +[gd_scene load_steps=3 format=3 uid="uid://bihon3xtx45y7"] + +[ext_resource type="Script" path="res://components/bios_check/bios_check.gd" id="1_qrkee"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8e2dh"] +bg_color = Color(0.133, 0.133, 0.133, 1) +border_width_left = 25 +border_width_top = 25 +border_width_right = 25 +border_width_bottom = 25 +border_color = Color(0.505882, 0.505882, 0.505882, 0.647059) +border_blend = true + +[node name="PopupContent" type="Control"] +top_level = true +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +offset_right = -1.0 +offset_bottom = -71.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_qrkee") + +[node name="Table" type="Tree" parent="."] +unique_name_in_owner = true +clip_contents = false +layout_mode = 2 +offset_right = 1277.0 +offset_bottom = 723.0 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_font_sizes/font_size = 16 +theme_override_font_sizes/title_button_font_size = 18 +theme_override_styles/panel = SubResource("StyleBoxFlat_8e2dh") +columns = 5 +column_titles_visible = true +allow_reselect = true +allow_rmb_select = true diff --git a/tools/configurator/components/popup.gd b/tools/configurator/components/popup.gd new file mode 100644 index 00000000..21611062 --- /dev/null +++ b/tools/configurator/components/popup.gd @@ -0,0 +1,32 @@ +extends Control + +var content = null +#@onready var button_off = get_node(current_scene.%l1_button)# .current_scene.l1_button +@onready var lbhide: Panel = get_tree().current_scene.get_node("%l1_box") +@onready var rbhide: Panel = get_tree().current_scene.get_node("%r1_box") +@onready var bios_type:int = get_tree().current_scene.bios_type +@onready var custom_theme: Theme = get_tree().current_scene.custom_theme + +func _ready(): + $".".theme = custom_theme + lbhide.visible=false + rbhide.visible=false + # TODO this alowes copy and paste from RTB in logs? + if (content != null and bios_type > 0): + $Panel/MarginContainer/VBoxContainer/ContentContainer/MarginContainer.add_child(content) + +func _process(_delta): + if Input.is_action_pressed("back_button"): + lbhide.visible=true + rbhide.visible=true + queue_free() + +func set_content(new_content): + content = load(new_content).instantiate() + +func set_title(new_title): + $Panel/MarginContainer/VBoxContainer/MarginContainer/HBoxContainer/Label.text = new_title +func set_display_text(new_display_text): + $Panel/MarginContainer/VBoxContainer/ContentContainer/MarginContainer/LineEdit.text=new_display_text +func _on_back_pressed(): + queue_free() diff --git a/tools/configurator/components/popup.tscn b/tools/configurator/components/popup.tscn new file mode 100644 index 00000000..e1c06685 --- /dev/null +++ b/tools/configurator/components/popup.tscn @@ -0,0 +1,69 @@ +[gd_scene load_steps=2 format=3 uid="uid://ixg127wfv7wo"] + +[ext_resource type="Script" path="res://components/popup.gd" id="1_ck1vn"] + +[node name="Popup" type="Control"] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_ck1vn") + +[node name="Panel" type="Panel" parent="."] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +offset_right = -357.0 +offset_bottom = -70.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="MarginContainer" type="MarginContainer" parent="Panel"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="VBoxContainer" type="VBoxContainer" parent="Panel/MarginContainer"] +layout_mode = 2 + +[node name="MarginContainer" type="MarginContainer" parent="Panel/MarginContainer/VBoxContainer"] +layout_mode = 2 +theme_override_constants/margin_left = 10 +theme_override_constants/margin_top = 0 +theme_override_constants/margin_right = 0 +theme_override_constants/margin_bottom = 0 + +[node name="HBoxContainer" type="HBoxContainer" parent="Panel/MarginContainer/VBoxContainer/MarginContainer"] +layout_mode = 2 + +[node name="Label" type="Label" parent="Panel/MarginContainer/VBoxContainer/MarginContainer/HBoxContainer"] +layout_mode = 2 +theme_override_font_sizes/font_size = 23 +text = "This is the label" + +[node name="ContentContainer" type="Panel" parent="Panel/MarginContainer/VBoxContainer"] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="MarginContainer" type="MarginContainer" parent="Panel/MarginContainer/VBoxContainer/ContentContainer"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 10 +theme_override_constants/margin_top = 6 +theme_override_constants/margin_right = 10 +theme_override_constants/margin_bottom = 6 + +[node name="LineEdit" type="TextEdit" parent="Panel/MarginContainer/VBoxContainer/ContentContainer/MarginContainer"] +layout_mode = 2 +editable = false +shortcut_keys_enabled = false diff --git a/tools/configurator/components/popup_dialogue.gd b/tools/configurator/components/popup_dialogue.gd new file mode 100644 index 00000000..7d9c8f49 --- /dev/null +++ b/tools/configurator/components/popup_dialogue.gd @@ -0,0 +1,36 @@ +extends Control + +var command: String +var parameters: Array +@onready var custom_theme: Theme = get_tree().current_scene.custom_theme + +func _ready(): + $".".theme = custom_theme + var args = OS.get_cmdline_args() + for arg in range(args.size()): + if args[arg] == "--title" and arg + 1 < args.size(): + %title_label.text = args[arg + 1] + elif args[arg] == "--content" and arg + 1 < args.size(): + %content_rtl.text = args[arg + 1] + elif args[arg] == "--command" and arg + 1 < args.size(): + command = args[arg + 1] + elif args[arg] == "--parameters" and arg + 1 < args.size(): + parameters.append(args[arg + 1]) + elif args[arg] == "--fullscreen" and arg + 1 < args.size(): + DisplayServer.window_set_mode(DisplayServer.WindowMode.WINDOW_MODE_FULLSCREEN) + +func _input(event): + if Input.is_action_pressed("back_button"): + get_tree().quit() + +func _on_cancel_pressed(): + class_functions.logger("d", "Exited dialogue") + get_tree().quit() + +func _on_ok_button_pressed() -> void: + class_functions.logger("d", "Command to run " + command + " " + str(parameters)) + var result = class_functions.execute_command(command,parameters , false) + class_functions.logger("d", "Exit code: " + str(result["exit_code"])) + %content_rtl.text = result["output"] + #get_tree().quit() + diff --git a/tools/configurator/components/popup_dialogue.tscn b/tools/configurator/components/popup_dialogue.tscn new file mode 100644 index 00000000..4d04367c --- /dev/null +++ b/tools/configurator/components/popup_dialogue.tscn @@ -0,0 +1,107 @@ +[gd_scene load_steps=3 format=3 uid="uid://bdbxu0r51jfk1"] + +[ext_resource type="Script" path="res://components/popup_dialogue.gd" id="1_oiwsy"] +[ext_resource type="Texture2D" uid="uid://brf74puvpnwsd" path="res://assets/graphics/retrodeck.png" id="2_3a55w"] + +[node name="Popup_Dialogue" type="Control"] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +offset_left = 23.0 +offset_top = -7.0 +offset_right = 23.0 +offset_bottom = -7.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_oiwsy") + +[node name="Panel" type="Panel" parent="."] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +offset_right = -357.0 +offset_bottom = -70.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="MarginContainer" type="MarginContainer" parent="Panel"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="VBoxContainer" type="VBoxContainer" parent="Panel/MarginContainer"] +layout_mode = 2 + +[node name="MarginContainer" type="MarginContainer" parent="Panel/MarginContainer/VBoxContainer"] +layout_mode = 2 +theme_override_constants/margin_left = 10 +theme_override_constants/margin_top = 0 +theme_override_constants/margin_right = 0 +theme_override_constants/margin_bottom = 0 + +[node name="HBoxContainer" type="HBoxContainer" parent="Panel/MarginContainer/VBoxContainer/MarginContainer"] +layout_mode = 2 + +[node name="title_label" type="Label" parent="Panel/MarginContainer/VBoxContainer/MarginContainer/HBoxContainer"] +unique_name_in_owner = true +layout_mode = 2 +theme_override_font_sizes/font_size = 23 +text = "Welcome to RetroDeck" + +[node name="ContentContainer" type="Panel" parent="Panel/MarginContainer/VBoxContainer"] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="MarginContainer" type="MarginContainer" parent="Panel/MarginContainer/VBoxContainer/ContentContainer"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 10 +theme_override_constants/margin_top = 6 +theme_override_constants/margin_right = 10 +theme_override_constants/margin_bottom = 6 + +[node name="content_rtl" type="RichTextLabel" parent="Panel/MarginContainer/VBoxContainer/ContentContainer/MarginContainer"] +unique_name_in_owner = true +layout_mode = 2 +focus_mode = 2 +text = "Some text here for the content?" +scroll_following = true +context_menu_enabled = true +selection_enabled = true + +[node name="MarginContainer_bootom" type="MarginContainer" parent="Panel/MarginContainer/VBoxContainer"] +layout_mode = 2 + +[node name="HBoxContainer" type="HBoxContainer" parent="Panel/MarginContainer/VBoxContainer/MarginContainer_bootom"] +layout_mode = 2 + +[node name="cancel_button" type="Button" parent="Panel/MarginContainer/VBoxContainer/MarginContainer_bootom/HBoxContainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(200, 0) +layout_mode = 2 +size_flags_horizontal = 10 +text = "CANCEL" + +[node name="ok_button" type="Button" parent="Panel/MarginContainer/VBoxContainer/MarginContainer_bootom/HBoxContainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(200, 0) +layout_mode = 2 +size_flags_horizontal = 10 +text = "OK" + +[node name="Retrodeck" type="Sprite2D" parent="."] +position = Vector2(859, 108) +scale = Vector2(0.209961, 0.204102) +texture = ExtResource("2_3a55w") + +[connection signal="pressed" from="Panel/MarginContainer/VBoxContainer/MarginContainer_bootom/HBoxContainer/cancel_button" to="." method="_on_cancel_pressed"] +[connection signal="pressed" from="Panel/MarginContainer/VBoxContainer/MarginContainer_bootom/HBoxContainer/ok_button" to="." method="_on_ok_button_pressed"] diff --git a/tools/configurator/components/popups_content/popup_content_test.tscn b/tools/configurator/components/popups_content/popup_content_test.tscn new file mode 100644 index 00000000..42c75f87 --- /dev/null +++ b/tools/configurator/components/popups_content/popup_content_test.tscn @@ -0,0 +1,15 @@ +[gd_scene format=3 uid="uid://c5uvguthjpfjq"] + +[node name="PopupContentTest" type="Control"] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Button" type="Button" parent="."] +layout_mode = 1 +offset_right = 12.0 +offset_bottom = 8.0 +text = "Test" diff --git a/tools/configurator/data_list.json b/tools/configurator/data_list.json new file mode 100644 index 00000000..9f8a400d --- /dev/null +++ b/tools/configurator/data_list.json @@ -0,0 +1,408 @@ +{ + "about_links": { + "example_site": { + "description": "Updated description.", + "name": "Updated Site", + "url": "https://updated-example.com" + }, + "rd_changelog": { + "description": "Opens the RetroDECK change log in your default browser", + "name": "Changelog", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_rd_versions/version-history/" + }, + "rd_contactus": { + "description": "Opens the RetroDECK contact us section in your default browser", + "name": "Contact us", + "url": "https://github.com/XargonWan/RetroDECK" + }, + "rd_credits": { + "description": "Opens the RetroDECK Credits in your default browser", + "name": "Credits", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/" + }, + "rd_donate": { + "description": "Opens Donations page in your default browser", + "name": "Donate", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/" + }, + "rd_licenses": { + "description": "Opens the RetroDECK licenses in your default browser", + "name": "Licences", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/" + }, + "rd_web": { + "description": "Opens the RetroDECK Website in your default browser", + "name": "Website", + "url": "https://retrodeck.net/" + }, + "rd_wiki": { + "description": "Opens the RetroDECK Wiki in your default browser", + "name": "Wiki", + "url": "https://retrodeck.readthedocs.io/en/latest/" + } + }, + "emulators": { + "cemu": { + "description": "Wii U emulator", + "name": "Cemu", + "options": [ + { + "resettable": true + } + ], + "properties": [ + { + "abxy_button": { + "status": false + }, + "standalone": true + }, + { + "abxy_button": { + "status": false + }, + "standalone": false + } + ] + }, + "citra": { + "description": "N3DS emulator", + "name": "Citra", + "options": [ + { + "resettable": true + } + ], + "properties": [ + { + "abxy_button": { + "status": false + }, + "standalone": true + }, + { + "abxy_button": { + "status": false + }, + "standalone": false + } + ] + }, + "dolphin": { + "description": "Wii/GameCube emulator", + "name": "Dolphin", + "options": [ + { + "resettable": true + } + ], + "properties": [ + { + "abxy_button": { + "status": false + }, + "standalone": true + }, + { + "abxy_button": { + "status": false + }, + "standalone": false + } + ] + }, + "duckstation": { + "description": "PSX emulator", + "name": "Duckstation", + "options": [ + { + "resettable": true + } + ], + "properties": [ + { + "abxy_button": { + "status": false + }, + "standalone": true + }, + { + "abxy_button": { + "status": false + }, + "standalone": false + } + ] + }, + "example_emulator": { + "description": "Updated description", + "name": "Updated Emulator", + "options": [ + { + "resettable": false + } + ], + "properties": [ + { + "abxy_button": { + "status": true + }, + "standalone": false + } + ] + }, + "gzdoom": { + "description": "Doom engine", + "name": "GZDoom", + "options": [ + { + "resettable": true + } + ], + "properties": [ + { + "abxy_button": { + "status": false + }, + "standalone": true + }, + { + "abxy_button": { + "status": false + }, + "standalone": false + } + ] + }, + "mame": { + "description": "Multiple Arcade Machine Emulator", + "name": "MAME", + "options": [ + { + "resettable": true + } + ], + "properties": [ + { + "abxy_button": { + "status": false + }, + "standalone": true + }, + { + "abxy_button": { + "status": false + }, + "standalone": false + } + ] + }, + "melonds": { + "description": "NDS emulator", + "name": "MelonDS", + "options": [ + { + "resettable": true + } + ], + "properties": [ + { + "abxy_button": { + "status": false + }, + "standalone": true + }, + { + "abxy_button": { + "status": false + }, + "standalone": false + } + ] + }, + "pcsx2": { + "description": "PS2 emulator", + "name": "PCSX2", + "options": [ + { + "resettable": true + } + ], + "properties": [ + { + "abxy_button": { + "status": false + }, + "standalone": true + }, + { + "abxy_button": { + "status": false + }, + "standalone": false + } + ] + }, + "ppsspp": { + "description": "PSP emulator", + "name": "PPSSPP", + "options": [ + { + "resettable": true + } + ], + "properties": [ + { + "abxy_button": { + "status": false + }, + "standalone": true + }, + { + "abxy_button": { + "status": false + }, + "standalone": false + } + ] + }, + "primehack": { + "description": "Metroid Prime emulator", + "name": "Primehack", + "options": [ + { + "resettable": true + } + ], + "properties": [ + { + "abxy_button": { + "status": false + }, + "standalone": true + }, + { + "abxy_button": { + "status": false + }, + "standalone": false + } + ] + }, + "rpcs3": { + "description": "PS3 emulator", + "name": "RPCS3", + "options": [ + { + "resettable": true + } + ], + "properties": [ + { + "abxy_button": { + "status": false + }, + "standalone": true + }, + { + "abxy_button": { + "status": false + }, + "standalone": false + } + ] + }, + "ryujinx": { + "description": "Switch emulator", + "name": "Ryujinx", + "options": [ + { + "resettable": true + } + ], + "properties": [ + { + "abxy_button": { + "status": false + }, + "standalone": true + }, + { + "abxy_button": { + "status": false + }, + "standalone": false + } + ] + }, + "vita3k": { + "description": "PS Vita emulator", + "name": "Vita3k", + "options": [ + { + "resettable": true + } + ], + "properties": [ + { + "abxy_button": { + "status": false + }, + "standalone": true + }, + { + "abxy_button": { + "status": false + }, + "standalone": false + } + ] + }, + "xemu": { + "description": "XBOX emulator", + "name": "XEMU", + "options": [ + { + "resettable": true + } + ], + "properties": [ + { + "abxy_button": { + "status": false + }, + "standalone": true + }, + { + "abxy_button": { + "status": false + }, + "standalone": false + } + ] + }, + "yuzu": { + "description": "Switch emulator", + "name": "Yuzu", + "options": [ + { + "resettable": true + } + ], + "properties": [ + { + "abxy_button": { + "status": false + }, + "standalone": true + }, + { + "abxy_button": { + "status": false + }, + "standalone": false + } + ] + } + } +} diff --git a/tools/configurator/data_list.yml b/tools/configurator/data_list.yml new file mode 100644 index 00000000..e91b7da1 --- /dev/null +++ b/tools/configurator/data_list.yml @@ -0,0 +1,166 @@ +about_links: + - name: "Website" + id: rd_web + url: https://retrodeck.net/ + description: "Opens the RetroDECK Website in your default browser" + - name: "Changelog" + id: rd_changelog + url: https://retrodeck.readthedocs.io/en/latest/wiki_rd_versions/version-history/ + description: "Opens the RetroDECK change log in your default browser" + - name: "Wiki" + id: rd_wiki + url: https://retrodeck.readthedocs.io/en/latest/ + description: "Opens the RetroDECK Wiki in your default browser" + - name: "Credits" + id: rd_credits + url: https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/ + description: "Opens the RetroDECK Credits in your default browser" + - name: "Donate" + id: rd_donate + url: https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/ + description: "Opens Donations page in your default browser" + - name: "Contact us" + id: rd_contactus + url: https://github.com/XargonWan/RetroDECK + description: "Opens the RetroDECK contact us section in your default browser" + - name: "Licences" + id: rd_licenses + url: https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/ + description: "Opens the RetroDECK licenses in your default browser" + +emulators: + cemu: + name: "Cemu" + description: "Wii U emulator" + options: + - resettable: true + properties: + - standalone: true + - abxy_button: + status: false + citra: + name: "Citra" + description: "N3DS emulator" + options: + - resettable: true + properties: + - standalone: true + - abxy_button: + status: false + dolphin: + name: "Dolphin" + description: "Wii/GameCube emulator" + options: + - resettable: true + properties: + - standalone: true + - abxy_button: + status: false + duckstation: + name: "Duckstation" + description: "PSX emulator" + options: + - resettable: true + properties: + - standalone: true + - abxy_button: + status: false + gzdoom: + name: "GZDoom" + description: "Doom engine" + options: + - resettable: true + properties: + - standalone: true + - abxy_button: + status: false + mame: + name: "MAME" + description: "Multiple Arcade Machine Emulator" + options: + - resettable: true + properties: + - standalone: true + - abxy_button: + status: false + melonds: + name: "MelonDS" + description: "NDS emulator" + options: + - resettable: true + properties: + - standalone: true + - abxy_button: + status: false + pcsx2: + name: "PCSX2" + description: "PS2 emulator" + options: + - resettable: true + properties: + - standalone: true + - abxy_button: + status: false + ppsspp: + name: "PPSSPP" + description: "PSP emulator" + options: + - resettable: true + properties: + - standalone: true + - abxy_button: + status: false + primehack: + name: "Primehack" + description: "Metroid Prime emulator" + options: + - resettable: true + properties: + - standalone: true + - abxy_button: + status: false + rpcs3: + name: "RPCS3" + description: "PS3 emulator" + options: + - resettable: true + properties: + - standalone: true + - abxy_button: + status: false + ryujinx: + name: "Ryujinx" + description: "Switch emulator" + options: + - resettable: true + properties: + - standalone: true + - abxy_button: + status: false + vita3k: + name: "Vita3k" + description: "PS Vita emulator" + options: + - resettable: true + properties: + - standalone: true + - abxy_button: + status: false + xemu: + name: "XEMU" + description: "XBOX emulator" + options: + - resettable: true + properties: + - standalone: true + - abxy_button: + status: false + yuzu: + name: "Yuzu" + description: "Switch emulator" + options: + - resettable: true + properties: + - standalone: true + - abxy_button: + status: false diff --git a/tools/configurator/emu_list.yml b/tools/configurator/emu_list.yml new file mode 100644 index 00000000..f9fcb801 --- /dev/null +++ b/tools/configurator/emu_list.yml @@ -0,0 +1,105 @@ +cemu: + name: "Cemu" + description: "Wii U emulator" + options: + - resettable: true + properties: + - standalone: true +citra: + name: "Citra" + description: "N3DS emulator" + options: + - resettable: true + properties: + - standalone: true +dolphin: + name: "Dolphin" + description: "Wii/GameCube emulator" + options: + - resettable: true + properties: + - standalone: true +duckstation: + name: "Duckstation" + description: "PSX emulator" + options: + - resettable: true + properties: + - standalone: true +gzdoom: + name: "GZDoom" + description: "Doom engine" + options: + - resettable: true + properties: + - standalone: true +mame: + name: "MAME" + description: "Multiple Arcade Machine Emulator" + options: + - resettable: true + properties: + - standalone: true +melonds: + name: "MelonDS" + description: "NDS emulator" + options: + - resettable: true + properties: + - standalone: true +pcsx2: + name: "PCSX2" + description: "PS2 emulator" + options: + - resettable: true + properties: + - standalone: true +ppsspp: + name: "PPSSPP" + description: "PSP emulator" + options: + - resettable: true + properties: + - standalone: true +primehack: + name: "Primehack" + description: "Metroid Prime emulator" + options: + - resettable: true + properties: + - standalone: true +rpcs3: + name: "RPCS3" + description: "PS3 emulator" + options: + - resettable: true + properties: + - standalone: true +ryujinx: + name: "Ryujinx" + description: "Switch emulator" + options: + - resettable: true + properties: + - standalone: true +vita3k: + name: "Vita3k" + description: "PS Vita emulator" + options: + - resettable: true + properties: + - standalone: true +xemu: + name: "XEMU" + description: "XBOX emulator" + options: + - resettable: true + properties: + - standalone: true +yuzu: + name: "Ryujinx" + description: "Switch emulator" + options: + - resettable: true + properties: + - standalone: true diff --git a/tools/configurator/export_presets.cfg b/tools/configurator/export_presets.cfg new file mode 100644 index 00000000..3e2f39ac --- /dev/null +++ b/tools/configurator/export_presets.cfg @@ -0,0 +1,566 @@ +[preset.0] + +name="Linux/X11 64-bit" +platform="Linux" +runnable=true +advanced_options=true +dedicated_server=false +custom_features="" +export_filter="all_resources" +include_filter="" +exclude_filter="" +export_path="../../../../Desktop/godot_configurator.x86_64" +encryption_include_filters="" +encryption_exclude_filters="" +encrypt_pck=false +encrypt_directory=false +script_export_mode=2 + +[preset.0.options] + +custom_template/debug="" +custom_template/release="" +debug/export_console_wrapper=0 +binary_format/embed_pck=true +texture_format/s3tc_bptc=true +texture_format/etc2_astc=false +binary_format/architecture="x86_64" +ssh_remote_deploy/enabled=false +ssh_remote_deploy/host="user@host_ip" +ssh_remote_deploy/port="22" +ssh_remote_deploy/extra_args_ssh="" +ssh_remote_deploy/extra_args_scp="" +ssh_remote_deploy/run_script="#!/usr/bin/env bash +export DISPLAY=:0 +unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\" +\"{temp_dir}/{exe_name}\" {cmd_args}" +ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash +kill $(pgrep -x -f \"{temp_dir}/{exe_name} {cmd_args}\") +rm -rf \"{temp_dir}\"" +texture_format/bptc=true +texture_format/s3tc=true +texture_format/etc=false +texture_format/etc2=false + +[preset.1] + +name="windows" +platform="Windows Desktop" +runnable=true +advanced_options=false +dedicated_server=false +custom_features="" +export_filter="all_resources" +include_filter="" +exclude_filter="" +export_path="" +encryption_include_filters="" +encryption_exclude_filters="" +encrypt_pck=false +encrypt_directory=false +script_export_mode=2 + +[preset.1.options] + +custom_template/debug="" +custom_template/release="" +debug/export_console_wrapper=1 +binary_format/embed_pck=false +texture_format/s3tc_bptc=true +texture_format/etc2_astc=false +binary_format/architecture="x86_64" +codesign/enable=false +codesign/timestamp=true +codesign/timestamp_server_url="" +codesign/digest_algorithm=1 +codesign/description="" +codesign/custom_options=PackedStringArray() +application/modify_resources=true +application/icon="" +application/console_wrapper_icon="" +application/icon_interpolation=4 +application/file_version="" +application/product_version="" +application/company_name="" +application/product_name="" +application/file_description="" +application/copyright="" +application/trademarks="" +application/export_angle=0 +application/export_d3d12=0 +application/d3d12_agility_sdk_multiarch=true +ssh_remote_deploy/enabled=false +ssh_remote_deploy/host="user@host_ip" +ssh_remote_deploy/port="22" +ssh_remote_deploy/extra_args_ssh="" +ssh_remote_deploy/extra_args_scp="" +ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}' +$action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}' +$trigger = New-ScheduledTaskTrigger -Once -At 00:00 +$settings = New-ScheduledTaskSettingsSet +$task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings +Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true +Start-ScheduledTask -TaskName godot_remote_debug +while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 } +Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue" +ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue +Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue +Remove-Item -Recurse -Force '{temp_dir}'" + +[preset.2] + +name="macOS" +platform="macOS" +runnable=true +advanced_options=false +dedicated_server=false +custom_features="" +export_filter="all_resources" +include_filter="" +exclude_filter="" +export_path="./godot_configurator.zip" +encryption_include_filters="" +encryption_exclude_filters="" +encrypt_pck=false +encrypt_directory=false +script_export_mode=2 + +[preset.2.options] + +export/distribution_type=1 +binary_format/architecture="universal" +custom_template/debug="" +custom_template/release="" +debug/export_console_wrapper=1 +application/icon="" +application/icon_interpolation=4 +application/bundle_identifier="net.retrodeck.retrodeck" +application/signature="" +application/app_category="Games" +application/short_version="" +application/version="" +application/copyright="" +application/copyright_localized={} +application/min_macos_version="10.12" +application/export_angle=0 +display/high_res=true +application/additional_plist_content="" +xcode/platform_build="14C18" +xcode/sdk_version="13.1" +xcode/sdk_build="22C55" +xcode/sdk_name="macosx13.1" +xcode/xcode_version="1420" +xcode/xcode_build="14C18" +codesign/codesign=1 +codesign/installer_identity="" +codesign/apple_team_id="" +codesign/identity="" +codesign/entitlements/custom_file="" +codesign/entitlements/allow_jit_code_execution=false +codesign/entitlements/allow_unsigned_executable_memory=false +codesign/entitlements/allow_dyld_environment_variables=false +codesign/entitlements/disable_library_validation=false +codesign/entitlements/audio_input=false +codesign/entitlements/camera=false +codesign/entitlements/location=false +codesign/entitlements/address_book=false +codesign/entitlements/calendars=false +codesign/entitlements/photos_library=false +codesign/entitlements/apple_events=false +codesign/entitlements/debugging=false +codesign/entitlements/app_sandbox/enabled=false +codesign/entitlements/app_sandbox/network_server=false +codesign/entitlements/app_sandbox/network_client=false +codesign/entitlements/app_sandbox/device_usb=false +codesign/entitlements/app_sandbox/device_bluetooth=false +codesign/entitlements/app_sandbox/files_downloads=0 +codesign/entitlements/app_sandbox/files_pictures=0 +codesign/entitlements/app_sandbox/files_music=0 +codesign/entitlements/app_sandbox/files_movies=0 +codesign/entitlements/app_sandbox/files_user_selected=0 +codesign/entitlements/app_sandbox/helper_executables=[] +codesign/custom_options=PackedStringArray() +notarization/notarization=0 +privacy/microphone_usage_description="" +privacy/microphone_usage_description_localized={} +privacy/camera_usage_description="" +privacy/camera_usage_description_localized={} +privacy/location_usage_description="" +privacy/location_usage_description_localized={} +privacy/address_book_usage_description="" +privacy/address_book_usage_description_localized={} +privacy/calendar_usage_description="" +privacy/calendar_usage_description_localized={} +privacy/photos_library_usage_description="" +privacy/photos_library_usage_description_localized={} +privacy/desktop_folder_usage_description="" +privacy/desktop_folder_usage_description_localized={} +privacy/documents_folder_usage_description="" +privacy/documents_folder_usage_description_localized={} +privacy/downloads_folder_usage_description="" +privacy/downloads_folder_usage_description_localized={} +privacy/network_volumes_usage_description="" +privacy/network_volumes_usage_description_localized={} +privacy/removable_volumes_usage_description="" +privacy/removable_volumes_usage_description_localized={} +privacy/tracking_enabled=false +privacy/tracking_domains=PackedStringArray() +privacy/collected_data/name/collected=false +privacy/collected_data/name/linked_to_user=false +privacy/collected_data/name/used_for_tracking=false +privacy/collected_data/name/collection_purposes=0 +privacy/collected_data/email_address/collected=false +privacy/collected_data/email_address/linked_to_user=false +privacy/collected_data/email_address/used_for_tracking=false +privacy/collected_data/email_address/collection_purposes=0 +privacy/collected_data/phone_number/collected=false +privacy/collected_data/phone_number/linked_to_user=false +privacy/collected_data/phone_number/used_for_tracking=false +privacy/collected_data/phone_number/collection_purposes=0 +privacy/collected_data/physical_address/collected=false +privacy/collected_data/physical_address/linked_to_user=false +privacy/collected_data/physical_address/used_for_tracking=false +privacy/collected_data/physical_address/collection_purposes=0 +privacy/collected_data/other_contact_info/collected=false +privacy/collected_data/other_contact_info/linked_to_user=false +privacy/collected_data/other_contact_info/used_for_tracking=false +privacy/collected_data/other_contact_info/collection_purposes=0 +privacy/collected_data/health/collected=false +privacy/collected_data/health/linked_to_user=false +privacy/collected_data/health/used_for_tracking=false +privacy/collected_data/health/collection_purposes=0 +privacy/collected_data/fitness/collected=false +privacy/collected_data/fitness/linked_to_user=false +privacy/collected_data/fitness/used_for_tracking=false +privacy/collected_data/fitness/collection_purposes=0 +privacy/collected_data/payment_info/collected=false +privacy/collected_data/payment_info/linked_to_user=false +privacy/collected_data/payment_info/used_for_tracking=false +privacy/collected_data/payment_info/collection_purposes=0 +privacy/collected_data/credit_info/collected=false +privacy/collected_data/credit_info/linked_to_user=false +privacy/collected_data/credit_info/used_for_tracking=false +privacy/collected_data/credit_info/collection_purposes=0 +privacy/collected_data/other_financial_info/collected=false +privacy/collected_data/other_financial_info/linked_to_user=false +privacy/collected_data/other_financial_info/used_for_tracking=false +privacy/collected_data/other_financial_info/collection_purposes=0 +privacy/collected_data/precise_location/collected=false +privacy/collected_data/precise_location/linked_to_user=false +privacy/collected_data/precise_location/used_for_tracking=false +privacy/collected_data/precise_location/collection_purposes=0 +privacy/collected_data/coarse_location/collected=false +privacy/collected_data/coarse_location/linked_to_user=false +privacy/collected_data/coarse_location/used_for_tracking=false +privacy/collected_data/coarse_location/collection_purposes=0 +privacy/collected_data/sensitive_info/collected=false +privacy/collected_data/sensitive_info/linked_to_user=false +privacy/collected_data/sensitive_info/used_for_tracking=false +privacy/collected_data/sensitive_info/collection_purposes=0 +privacy/collected_data/contacts/collected=false +privacy/collected_data/contacts/linked_to_user=false +privacy/collected_data/contacts/used_for_tracking=false +privacy/collected_data/contacts/collection_purposes=0 +privacy/collected_data/emails_or_text_messages/collected=false +privacy/collected_data/emails_or_text_messages/linked_to_user=false +privacy/collected_data/emails_or_text_messages/used_for_tracking=false +privacy/collected_data/emails_or_text_messages/collection_purposes=0 +privacy/collected_data/photos_or_videos/collected=false +privacy/collected_data/photos_or_videos/linked_to_user=false +privacy/collected_data/photos_or_videos/used_for_tracking=false +privacy/collected_data/photos_or_videos/collection_purposes=0 +privacy/collected_data/audio_data/collected=false +privacy/collected_data/audio_data/linked_to_user=false +privacy/collected_data/audio_data/used_for_tracking=false +privacy/collected_data/audio_data/collection_purposes=0 +privacy/collected_data/gameplay_content/collected=false +privacy/collected_data/gameplay_content/linked_to_user=false +privacy/collected_data/gameplay_content/used_for_tracking=false +privacy/collected_data/gameplay_content/collection_purposes=0 +privacy/collected_data/customer_support/collected=false +privacy/collected_data/customer_support/linked_to_user=false +privacy/collected_data/customer_support/used_for_tracking=false +privacy/collected_data/customer_support/collection_purposes=0 +privacy/collected_data/other_user_content/collected=false +privacy/collected_data/other_user_content/linked_to_user=false +privacy/collected_data/other_user_content/used_for_tracking=false +privacy/collected_data/other_user_content/collection_purposes=0 +privacy/collected_data/browsing_history/collected=false +privacy/collected_data/browsing_history/linked_to_user=false +privacy/collected_data/browsing_history/used_for_tracking=false +privacy/collected_data/browsing_history/collection_purposes=0 +privacy/collected_data/search_hhistory/collected=false +privacy/collected_data/search_hhistory/linked_to_user=false +privacy/collected_data/search_hhistory/used_for_tracking=false +privacy/collected_data/search_hhistory/collection_purposes=0 +privacy/collected_data/user_id/collected=false +privacy/collected_data/user_id/linked_to_user=false +privacy/collected_data/user_id/used_for_tracking=false +privacy/collected_data/user_id/collection_purposes=0 +privacy/collected_data/device_id/collected=false +privacy/collected_data/device_id/linked_to_user=false +privacy/collected_data/device_id/used_for_tracking=false +privacy/collected_data/device_id/collection_purposes=0 +privacy/collected_data/purchase_history/collected=false +privacy/collected_data/purchase_history/linked_to_user=false +privacy/collected_data/purchase_history/used_for_tracking=false +privacy/collected_data/purchase_history/collection_purposes=0 +privacy/collected_data/product_interaction/collected=false +privacy/collected_data/product_interaction/linked_to_user=false +privacy/collected_data/product_interaction/used_for_tracking=false +privacy/collected_data/product_interaction/collection_purposes=0 +privacy/collected_data/advertising_data/collected=false +privacy/collected_data/advertising_data/linked_to_user=false +privacy/collected_data/advertising_data/used_for_tracking=false +privacy/collected_data/advertising_data/collection_purposes=0 +privacy/collected_data/other_usage_data/collected=false +privacy/collected_data/other_usage_data/linked_to_user=false +privacy/collected_data/other_usage_data/used_for_tracking=false +privacy/collected_data/other_usage_data/collection_purposes=0 +privacy/collected_data/crash_data/collected=false +privacy/collected_data/crash_data/linked_to_user=false +privacy/collected_data/crash_data/used_for_tracking=false +privacy/collected_data/crash_data/collection_purposes=0 +privacy/collected_data/performance_data/collected=false +privacy/collected_data/performance_data/linked_to_user=false +privacy/collected_data/performance_data/used_for_tracking=false +privacy/collected_data/performance_data/collection_purposes=0 +privacy/collected_data/other_diagnostic_data/collected=false +privacy/collected_data/other_diagnostic_data/linked_to_user=false +privacy/collected_data/other_diagnostic_data/used_for_tracking=false +privacy/collected_data/other_diagnostic_data/collection_purposes=0 +privacy/collected_data/environment_scanning/collected=false +privacy/collected_data/environment_scanning/linked_to_user=false +privacy/collected_data/environment_scanning/used_for_tracking=false +privacy/collected_data/environment_scanning/collection_purposes=0 +privacy/collected_data/hands/collected=false +privacy/collected_data/hands/linked_to_user=false +privacy/collected_data/hands/used_for_tracking=false +privacy/collected_data/hands/collection_purposes=0 +privacy/collected_data/head/collected=false +privacy/collected_data/head/linked_to_user=false +privacy/collected_data/head/used_for_tracking=false +privacy/collected_data/head/collection_purposes=0 +privacy/collected_data/other_data_types/collected=false +privacy/collected_data/other_data_types/linked_to_user=false +privacy/collected_data/other_data_types/used_for_tracking=false +privacy/collected_data/other_data_types/collection_purposes=0 +ssh_remote_deploy/enabled=false +ssh_remote_deploy/host="user@host_ip" +ssh_remote_deploy/port="22" +ssh_remote_deploy/extra_args_ssh="" +ssh_remote_deploy/extra_args_scp="" +ssh_remote_deploy/run_script="#!/usr/bin/env bash +unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\" +open \"{temp_dir}/{exe_name}.app\" --args {cmd_args}" +ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash +kill $(pgrep -x -f \"{temp_dir}/{exe_name}.app/Contents/MacOS/{exe_name} {cmd_args}\") +rm -rf \"{temp_dir}\"" + +[preset.3] + +name="Android" +platform="Android" +runnable=true +advanced_options=false +dedicated_server=false +custom_features="" +export_filter="all_resources" +include_filter="" +exclude_filter="" +export_path="" +encryption_include_filters="" +encryption_exclude_filters="" +encrypt_pck=false +encrypt_directory=false +script_export_mode=2 + +[preset.3.options] + +custom_template/debug="" +custom_template/release="" +gradle_build/use_gradle_build=false +gradle_build/gradle_build_directory="" +gradle_build/android_source_template="" +gradle_build/compress_native_libraries=false +gradle_build/export_format=0 +gradle_build/min_sdk="" +gradle_build/target_sdk="" +architectures/armeabi-v7a=false +architectures/arm64-v8a=true +architectures/x86=false +architectures/x86_64=false +version/code=1 +version/name="" +package/unique_name="net.retrodeck.$genname" +package/name="Configurator" +package/signed=true +package/app_category=2 +package/retain_data_on_uninstall=false +package/exclude_from_recents=false +package/show_in_android_tv=false +package/show_in_app_library=true +package/show_as_launcher_app=false +launcher_icons/main_192x192="" +launcher_icons/adaptive_foreground_432x432="" +launcher_icons/adaptive_background_432x432="" +graphics/opengl_debug=false +xr_features/xr_mode=0 +screen/immersive_mode=true +screen/support_small=true +screen/support_normal=true +screen/support_large=true +screen/support_xlarge=true +user_data_backup/allow=false +command_line/extra_args="" +apk_expansion/enable=false +apk_expansion/SALT="" +apk_expansion/public_key="" +permissions/custom_permissions=PackedStringArray() +permissions/access_checkin_properties=false +permissions/access_coarse_location=false +permissions/access_fine_location=false +permissions/access_location_extra_commands=false +permissions/access_mock_location=false +permissions/access_network_state=false +permissions/access_surface_flinger=false +permissions/access_wifi_state=false +permissions/account_manager=false +permissions/add_voicemail=false +permissions/authenticate_accounts=false +permissions/battery_stats=false +permissions/bind_accessibility_service=false +permissions/bind_appwidget=false +permissions/bind_device_admin=false +permissions/bind_input_method=false +permissions/bind_nfc_service=false +permissions/bind_notification_listener_service=false +permissions/bind_print_service=false +permissions/bind_remoteviews=false +permissions/bind_text_service=false +permissions/bind_vpn_service=false +permissions/bind_wallpaper=false +permissions/bluetooth=false +permissions/bluetooth_admin=false +permissions/bluetooth_privileged=false +permissions/brick=false +permissions/broadcast_package_removed=false +permissions/broadcast_sms=false +permissions/broadcast_sticky=false +permissions/broadcast_wap_push=false +permissions/call_phone=false +permissions/call_privileged=false +permissions/camera=false +permissions/capture_audio_output=false +permissions/capture_secure_video_output=false +permissions/capture_video_output=false +permissions/change_component_enabled_state=false +permissions/change_configuration=false +permissions/change_network_state=false +permissions/change_wifi_multicast_state=false +permissions/change_wifi_state=false +permissions/clear_app_cache=false +permissions/clear_app_user_data=false +permissions/control_location_updates=false +permissions/delete_cache_files=false +permissions/delete_packages=false +permissions/device_power=false +permissions/diagnostic=false +permissions/disable_keyguard=false +permissions/dump=false +permissions/expand_status_bar=false +permissions/factory_test=false +permissions/flashlight=false +permissions/force_back=false +permissions/get_accounts=false +permissions/get_package_size=false +permissions/get_tasks=false +permissions/get_top_activity_info=false +permissions/global_search=false +permissions/hardware_test=false +permissions/inject_events=false +permissions/install_location_provider=false +permissions/install_packages=false +permissions/install_shortcut=false +permissions/internal_system_window=false +permissions/internet=false +permissions/kill_background_processes=false +permissions/location_hardware=false +permissions/manage_accounts=false +permissions/manage_app_tokens=false +permissions/manage_documents=false +permissions/manage_external_storage=false +permissions/master_clear=false +permissions/media_content_control=false +permissions/modify_audio_settings=false +permissions/modify_phone_state=false +permissions/mount_format_filesystems=false +permissions/mount_unmount_filesystems=false +permissions/nfc=false +permissions/persistent_activity=false +permissions/post_notifications=false +permissions/process_outgoing_calls=false +permissions/read_calendar=false +permissions/read_call_log=false +permissions/read_contacts=false +permissions/read_external_storage=false +permissions/read_frame_buffer=false +permissions/read_history_bookmarks=false +permissions/read_input_state=false +permissions/read_logs=false +permissions/read_phone_state=false +permissions/read_profile=false +permissions/read_sms=false +permissions/read_social_stream=false +permissions/read_sync_settings=false +permissions/read_sync_stats=false +permissions/read_user_dictionary=false +permissions/reboot=false +permissions/receive_boot_completed=false +permissions/receive_mms=false +permissions/receive_sms=false +permissions/receive_wap_push=false +permissions/record_audio=false +permissions/reorder_tasks=false +permissions/restart_packages=false +permissions/send_respond_via_message=false +permissions/send_sms=false +permissions/set_activity_watcher=false +permissions/set_alarm=false +permissions/set_always_finish=false +permissions/set_animation_scale=false +permissions/set_debug_app=false +permissions/set_orientation=false +permissions/set_pointer_speed=false +permissions/set_preferred_applications=false +permissions/set_process_limit=false +permissions/set_time=false +permissions/set_time_zone=false +permissions/set_wallpaper=false +permissions/set_wallpaper_hints=false +permissions/signal_persistent_processes=false +permissions/status_bar=false +permissions/subscribed_feeds_read=false +permissions/subscribed_feeds_write=false +permissions/system_alert_window=false +permissions/transmit_ir=false +permissions/uninstall_shortcut=false +permissions/update_device_stats=false +permissions/use_credentials=false +permissions/use_sip=false +permissions/vibrate=false +permissions/wake_lock=false +permissions/write_apn_settings=false +permissions/write_calendar=false +permissions/write_call_log=false +permissions/write_contacts=false +permissions/write_external_storage=false +permissions/write_gservices=false +permissions/write_history_bookmarks=false +permissions/write_profile=false +permissions/write_secure_settings=false +permissions/write_settings=false +permissions/write_sms=false +permissions/write_social_stream=false +permissions/write_sync_settings=false +permissions/write_user_dictionary=false diff --git a/tools/configurator/icon.svg b/tools/configurator/icon.svg new file mode 100755 index 00000000..ace25951 --- /dev/null +++ b/tools/configurator/icon.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/tools/configurator/icon.svg.import b/tools/configurator/icon.svg.import new file mode 100644 index 00000000..0b8aaa89 --- /dev/null +++ b/tools/configurator/icon.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl1qy5krtdiyf" +path="res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://icon.svg" +dest_files=["res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/tools/configurator/icon_retrodeck.svg b/tools/configurator/icon_retrodeck.svg new file mode 100644 index 00000000..8acc0c37 --- /dev/null +++ b/tools/configurator/icon_retrodeck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tools/configurator/icon_retrodeck.svg.import b/tools/configurator/icon_retrodeck.svg.import new file mode 100644 index 00000000..79f7ffb5 --- /dev/null +++ b/tools/configurator/icon_retrodeck.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcdlrjx1d5nu3" +path="res://.godot/imported/icon_retrodeck.svg-0c84e97ec06d205f01ec100f53e32f9c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://icon_retrodeck.svg" +dest_files=["res://.godot/imported/icon_retrodeck.svg-0c84e97ec06d205f01ec100f53e32f9c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/tools/configurator/main.tscn b/tools/configurator/main.tscn new file mode 100644 index 00000000..c2cb8bd1 --- /dev/null +++ b/tools/configurator/main.tscn @@ -0,0 +1,2041 @@ +[gd_scene load_steps=135 format=3 uid="uid://61f6m4r1mpan"] + +[ext_resource type="Theme" uid="uid://hhc60cllcg47" path="res://assets/themes/default_theme.tres" id="1_if8nh"] +[ext_resource type="Script" path="res://scripts/main.gd" id="1_obpq7"] +[ext_resource type="Script" path="res://scripts/TabContainer.gd" id="3_id6l4"] +[ext_resource type="AudioStream" uid="uid://dig4pco500pyt" path="res://res/configurator.mp3" id="3_xivj6"] +[ext_resource type="Script" path="res://scripts/TabGlobals.gd" id="4_2jqfc"] +[ext_resource type="Texture2D" uid="uid://dx0u5hiwxfgu5" path="res://res/pixel_ui_theme/8x8_ui_elements.png" id="4_2tuu4"] +[ext_resource type="Texture2D" uid="uid://qu88ngewoj4w" path="res://assets/icons/pixelitos/128/applications-games.png" id="4_caaxx"] +[ext_resource type="Texture2D" uid="uid://bdj8vt3vhucq4" path="res://assets/icons/pixelitos/128/cs-display.png" id="4_jldgc"] +[ext_resource type="Script" path="res://scripts/TabAbout.gd" id="4_m4rto"] +[ext_resource type="Script" path="res://scripts/Rekku.gd" id="4_nqqx3"] +[ext_resource type="Texture2D" uid="uid://suusabsjin6e" path="res://assets/icons/pixelitos/128/applications-graphics.png" id="4_q6hd2"] +[ext_resource type="Texture2D" uid="uid://dk856hwnwsuab" path="res://assets/icons/pixelitos/128/retroarch.png" id="4_xcuib"] +[ext_resource type="Texture2D" uid="uid://cvr1eijddf6nv" path="res://assets/icons/banner/gamegear.png" id="5_4d7s7"] +[ext_resource type="Texture2D" uid="uid://d2lm4mfx1gt86" path="res://assets/graphics/retrodeck_base_shake0.png" id="5_7rjbt"] +[ext_resource type="Texture2D" uid="uid://bns3nmvku2qhe" path="res://assets/icons/pixelitos/128/system-shutdown.png" id="5_ahd1x"] +[ext_resource type="Texture2D" uid="uid://dv42c6hpi6tde" path="res://assets/icons/pixelitos/128/cs-tiling.png" id="5_box56"] +[ext_resource type="Script" path="res://scripts/helper_text.gd" id="5_cprkf"] +[ext_resource type="Texture2D" uid="uid://dxdhjp18rgmr4" path="res://res/flags/united_kingdom_32.png" id="5_exkn2"] +[ext_resource type="Texture2D" uid="uid://du8go5dyabmsl" path="res://assets/icons/banner/gb.png" id="5_ja8to"] +[ext_resource type="StyleBox" uid="uid://ba3l3ja1jbqpx" path="res://assets/themes/emulators.tres" id="5_rjtkn"] +[ext_resource type="Texture2D" uid="uid://cboyy7fkdijwg" path="res://assets/icons/pixelitos/128/cs-desktop-effects.png" id="5_uiobi"] +[ext_resource type="Texture2D" uid="uid://do3mc6sg5mfek" path="res://assets/icons/pixelitos/128/system-software-install.png" id="5_vehlp"] +[ext_resource type="Texture2D" uid="uid://cjv6lhd4g63m3" path="res://assets/graphics/retrodeck_base_shake1.png" id="6_d43n7"] +[ext_resource type="Texture2D" uid="uid://cru43y7hco6kh" path="res://res/flags/italy_32.png" id="6_fiylw"] +[ext_resource type="Texture2D" uid="uid://du4mupvvwbusy" path="res://assets/icons/banner/gbc.png" id="6_mvrie"] +[ext_resource type="Texture2D" uid="uid://debs53e7f7bjp" path="res://assets/icons/pixelitos/128/cs-general.png" id="6_u80kq"] +[ext_resource type="Texture2D" uid="uid://cxwnt3djsrck7" path="res://assets/icons/pixelitos/128/duckstation.png" id="6_winpq"] +[ext_resource type="Texture2D" uid="uid://b4jbv7xaqy0sq" path="res://assets/icons/banner/gba.png" id="7_01lqn"] +[ext_resource type="Texture2D" uid="uid://c2furjlxwkxih" path="res://assets/icons/pixelitos/128/net.kuribo64.melonDS.png" id="7_4otos"] +[ext_resource type="Texture2D" uid="uid://cpbowpuwjpqtu" path="res://assets/icons/banner/snes.png" id="7_b8xj2"] +[ext_resource type="Texture2D" uid="uid://b5hwe733546r4" path="res://assets/icons/pixelitos/128/cs-windows.png" id="7_i14ax"] +[ext_resource type="Texture2D" uid="uid://cyqo650hjucw6" path="res://assets/graphics/retrodeck_base_shake2.png" id="7_mo842"] +[ext_resource type="Texture2D" uid="uid://cti2vt14gxisl" path="res://res/flags/germany_32.png" id="7_qgxid"] +[ext_resource type="Texture2D" uid="uid://c7i7mr38qxa4f" path="res://assets/icons/pixelitos/128/org.ppsspp.PPSSPP.png" id="8_akxf7"] +[ext_resource type="Texture2D" uid="uid://6x4onimvsynx" path="res://assets/icons/pixelitos/128/net.rpcs3.RPCS3.png" id="8_ec4gt"] +[ext_resource type="Texture2D" uid="uid://bojog0xvms7hr" path="res://assets/graphics/retrodeck_base_shake3.png" id="8_l3t5c"] +[ext_resource type="Texture2D" uid="uid://bns0ot5pbf03h" path="res://res/flags/sweden_32.png" id="8_lptln"] +[ext_resource type="Texture2D" uid="uid://buywpflv7of6f" path="res://assets/icons/banner/n64.png" id="8_rvph4"] +[ext_resource type="Texture2D" uid="uid://uko0ikrtjkj" path="res://assets/graphics/retrodeck_base_shake4.png" id="9_8eqo6"] +[ext_resource type="Texture2D" uid="uid://pva53gfr7uqq" path="res://assets/icons/pixelitos/128/preferences-desktop-gaming.png" id="9_d2327"] +[ext_resource type="Texture2D" uid="uid://dhsorn3kcfdcv" path="res://res/flags/ukraine_32.png" id="9_dp7oa"] +[ext_resource type="Texture2D" uid="uid://c8q3l08j2hl3a" path="res://assets/icons/pixelitos/128/cs-sound.png" id="9_qwq2k"] +[ext_resource type="Texture2D" uid="uid://dgdennwyj5g2l" path="res://assets/icons/banner/mastersystem.png" id="9_s3srh"] +[ext_resource type="Texture2D" uid="uid://cpq0em8j2bank" path="res://assets/icons/banner/megadrive.png" id="10_2jlmn"] +[ext_resource type="Texture2D" uid="uid://dtwjo7co226dw" path="res://res/flags/japan_32.png" id="10_e8mt0"] +[ext_resource type="Texture2D" uid="uid://clvsisb38lk72" path="res://assets/icons/pixelitos/128/accesories-screenshoot.png" id="10_jm3oh"] +[ext_resource type="Texture2D" uid="uid://bevamv2c8knnn" path="res://assets/icons/pixelitos/128/org.citra_emu.citra.png" id="10_wbaif"] +[ext_resource type="Texture2D" uid="uid://dbvjugxp84gsj" path="res://assets/icons/pixelitos/128/org.DolphinEmu.dolphin-emu.png" id="11_61sak"] +[ext_resource type="Texture2D" uid="uid://c0pbart7aj657" path="res://assets/icons/pixelitos/128/preferences-system-time.png" id="11_c3qcy"] +[ext_resource type="Texture2D" uid="uid://do6o02gxjxneh" path="res://assets/icons/pixelitos/128/net.retrodeck.retrodeck.png" id="11_g1uhn"] +[ext_resource type="Texture2D" uid="uid://blwtj4of6fb5y" path="res://assets/icons/pixelitos/128/spacefm.png" id="11_p6y0k"] +[ext_resource type="Texture2D" uid="uid://cbwhpqip43aei" path="res://res/flags/china_32.png" id="11_ri2fv"] +[ext_resource type="Texture2D" uid="uid://b763qnm02o5bd" path="res://assets/icons/pixelitos/128/system-reboot.png" id="12_3jrmi"] +[ext_resource type="Texture2D" uid="uid://dv6sym5rr1hpu" path="res://assets/icons/banner/psx.png" id="12_pp08o"] +[ext_resource type="Texture2D" uid="uid://ro1kdkjpfq3r" path="res://assets/icons/pixelitos/128/preferences-desktop-notification-bell.png" id="13_8kii4"] +[ext_resource type="Texture2D" uid="uid://dyw0ondpk6ned" path="res://assets/icons/pixelitos/128/search.png" id="14_oe3l4"] +[ext_resource type="Texture2D" uid="uid://b164ihk8riiwh" path="res://assets/graphics/space_bground.png" id="15_qdvxo"] +[ext_resource type="Texture2D" uid="uid://cgh3df7ajg2c4" path="res://assets/icons/pixelitos/128/computer.png" id="17_0kr64"] +[ext_resource type="Texture2D" uid="uid://dyumvh0ixwrbl" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0042.png" id="30_glnve"] +[ext_resource type="Texture2D" uid="uid://cn11vcrybtor4" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0047.png" id="31_j5ri1"] +[ext_resource type="Texture2D" uid="uid://cc7ohmfxafe78" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0043.png" id="33_1ghye"] +[ext_resource type="Texture2D" uid="uid://cs8lh31kh7jv1" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0048.png" id="34_fum2b"] +[ext_resource type="Texture2D" uid="uid://chd6d8tx081hm" path="res://assets/icons/pixelitos/128/org.mamedev.MAME.png" id="36_dj81i"] +[ext_resource type="Script" path="res://scripts/TabSystem.gd" id="36_wv31h"] +[ext_resource type="Texture2D" uid="uid://10pyy05xqpr4" path="res://assets/icons/pixelitos/128/ruffle.png" id="37_7hhbn"] +[ext_resource type="Texture2D" uid="uid://syrfbhy5ov58" path="res://assets/icons/pixelitos/128/steam-rom-manager.png" id="37_b5jhu"] +[ext_resource type="Texture2D" uid="uid://bkouvh1ukkuob" path="res://assets/icons/pixelitos/128/steam.png" id="38_6ixfj"] +[ext_resource type="Texture2D" uid="uid://fhxlwf7in0ke" path="res://assets/icons/pixelitos/128/net.pcsx2.PCSX2.png" id="38_44je8"] +[ext_resource type="Texture2D" uid="uid://dpi351mmxu7x6" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0797.png" id="38_prt7u"] +[ext_resource type="Texture2D" uid="uid://bum0ys5hf70g5" path="res://assets/icons/pixelitos/128/vita3k.png" id="38_vsjf2"] +[ext_resource type="Texture2D" uid="uid://ca2xg08hxnmd3" path="res://assets/icons/pixelitos/128/applications-system.png" id="38_xw5qd"] +[ext_resource type="Texture2D" uid="uid://ckyvec3wqx3t" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0798.png" id="39_5ft88"] +[ext_resource type="Texture2D" uid="uid://n4hywdifr1q4" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0763.png" id="39_m4qgd"] +[ext_resource type="Texture2D" uid="uid://4rxej78gwu6" path="res://assets/icons/pixelitos/128/org.ryujinx.Ryujinx.png" id="40_7fdvq"] +[ext_resource type="Texture2D" uid="uid://bwcc0mjxxm0w1" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0764.png" id="40_pnuor"] +[ext_resource type="Texture2D" uid="uid://dr637stsnsg01" path="res://assets/icons/pixelitos/128/primehack.png" id="41_55e56"] +[ext_resource type="Texture2D" uid="uid://lopxvipv6asb" path="res://assets/icons/pixelitos/128/info.cemu.Cemu.png" id="42_n3n7j"] +[ext_resource type="Texture2D" uid="uid://bxng1bakpvyyr" path="res://assets/icons/pixelitos/128/app.xemu.xemu.png" id="43_ifi6j"] +[ext_resource type="Texture2D" uid="uid://dhf620jyq75t1" path="res://assets/icons/pixelitos/128/es-de.png" id="44_7lpj5"] +[ext_resource type="Texture2D" uid="uid://b6vndtbu4qduo" path="res://assets/icons/pixelitos/128/preferences-desktop-launch-feedback.png" id="45_qxd26"] +[ext_resource type="Texture2D" uid="uid://3sw7gtoiuab3" path="res://assets/icons/pixelitos/128/help-browser.png" id="46_feagl"] +[ext_resource type="Texture2D" uid="uid://b0awa8venu1h8" path="res://assets/icons/pixelitos/128/cs-network.png" id="50_5d2ui"] +[ext_resource type="Texture2D" uid="uid://be3tmvgoa1wua" path="res://assets/icons/pixelitos/128/applications-development.png" id="50_tl5ty"] +[ext_resource type="Script" path="res://scripts/TabTools.gd" id="50_wqa5h"] +[ext_resource type="Texture2D" uid="uid://cyqfk3fjqqgv7" path="res://assets/icons/pixelitos/128/user-info.png" id="51_2my10"] +[ext_resource type="Texture2D" uid="uid://b4r1xk6ubwkmd" path="res://assets/icons/pixelitos/128/retroachievements_r.png" id="51_12lj4"] +[ext_resource type="Texture2D" uid="uid://33f5uahr5tqm" path="res://assets/icons/pixelitos/128/mate-system-log.png" id="52_1rasc"] +[ext_resource type="Texture2D" uid="uid://ck1ff6wn5ge3w" path="res://assets/icons/pixelitos/128/dialog-password.png" id="52_g461w"] +[ext_resource type="Texture2D" uid="uid://bgvrhhcyb3oav" path="res://assets/icons/pixelitos/128/retroachievements.png" id="53_dqol6"] +[ext_resource type="Script" path="res://scripts/TabSettings.gd" id="54_bxhvn"] +[ext_resource type="Texture2D" uid="uid://dk4567tpvqpr6" path="res://assets/icons/pixelitos/128/preferences-desktop-plasma-theme.png" id="54_dah1j"] +[ext_resource type="Texture2D" uid="uid://c5ik1giuv1ar5" path="res://assets/icons/pixelitos/128/system-lock-screen.png" id="54_f245y"] +[ext_resource type="Texture2D" uid="uid://xxfv1s6sejis" path="res://assets/icons/pixelitos/128/network-wired.png" id="55_30e7t"] +[ext_resource type="Texture2D" uid="uid://d4ee8j2kh1tmy" path="res://assets/icons/pixelitos/128/cs-themes.png" id="55_wv2p5"] +[ext_resource type="Texture2D" uid="uid://cfcgi6owxt3uu" path="res://assets/icons/pixelitos/128/preferences-system-notifications.png" id="55_x32s4"] +[ext_resource type="Texture2D" uid="uid://cblpmmuxcb52p" path="res://assets/icons/pixelitos/128/tint2conf.png" id="56_tn3pf"] +[ext_resource type="Texture2D" uid="uid://dw3tdbhmpkst7" path="res://assets/icons/pixelitos/128/preferences-desktop-theme-applications.png" id="56_ubqc2"] +[ext_resource type="Texture2D" uid="uid://d4suyd0iag1k" path="res://assets/icons/pixelitos/128/system-suspend.png" id="56_witym"] +[ext_resource type="Texture2D" uid="uid://l3bredurb11m" path="res://assets/graphics/rekku2/rekku_base.png" id="57_1n3u5"] +[ext_resource type="Texture2D" uid="uid://dxtd2lvewb4qa" path="res://assets/icons/pixelitos/128/system-switch-user.png" id="57_7b0kp"] +[ext_resource type="Texture2D" uid="uid://diu1akug7xul8" path="res://assets/icons/pixelitos/128/cs-user.png" id="58_mntxv"] +[ext_resource type="Texture2D" uid="uid://bby02mc8j6rxt" path="res://assets/icons/pixelitos/128/youtube-music.png" id="58_oismn"] +[ext_resource type="Texture2D" uid="uid://cvlncuql8igrm" path="res://assets/graphics/rekku2/rekku_eye_1.png" id="59_7lcu5"] +[ext_resource type="Texture2D" uid="uid://bdrdu4nddkqjn" path="res://assets/graphics/rekku2/rekku_eye_2.png" id="60_mbhg6"] +[ext_resource type="Texture2D" uid="uid://cb2hwhaq036mu" path="res://assets/graphics/rekku2/rekku_mouth_a.png" id="61_5vyvy"] +[ext_resource type="Texture2D" uid="uid://dl2fd66fvn1an" path="res://assets/graphics/rekku2/rekku_mouth_i.png" id="62_lji1k"] +[ext_resource type="Texture2D" uid="uid://3ktnkmuecxea" path="res://assets/graphics/rekku2/rekku_mouth_m.png" id="63_52v81"] +[ext_resource type="Texture2D" uid="uid://dcdlrjx1d5nu3" path="res://icon_retrodeck.svg" id="64_qcmnc"] +[ext_resource type="Texture2D" uid="uid://d08ngewjvxkmn" path="res://assets/graphics/rekku2/rekku_mouth_o.png" id="64_s8u0e"] +[ext_resource type="Texture2D" uid="uid://dieva7tuxjrvy" path="res://assets/graphics/rekku2/rekku_nomouth.png" id="65_kk8ba"] +[ext_resource type="Script" path="res://scripts/controller_guide.gd" id="68_ahvw4"] +[ext_resource type="AudioStream" uid="uid://dhejvg02t5o35" path="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538549__sjonas88__select-2.wav" id="71_ghxvk"] +[ext_resource type="Texture2D" uid="uid://dllymmym0335n" path="res://assets/icons/pixelitos/16/system-shutdown.png" id="87_1yqbe"] +[ext_resource type="Texture2D" uid="uid://26piw1lylfai" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0650.png" id="90_xkj8e"] +[ext_resource type="Texture2D" uid="uid://cj5p6oa4tbh3l" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0044.png" id="92_xpwgw"] +[ext_resource type="Texture2D" uid="uid://brf74puvpnwsd" path="res://assets/graphics/retrodeck.png" id="93_f7ex4"] +[ext_resource type="Texture2D" uid="uid://ewsr5bqe7gcr" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0049.png" id="93_rdk5c"] +[ext_resource type="Script" path="res://scripts/retrodeck.gd" id="94_8nlr1"] +[ext_resource type="Texture2D" uid="uid://bjw5uccsiprpo" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0045.png" id="94_ybo5b"] +[ext_resource type="Texture2D" uid="uid://da6e8m0kx265j" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0050.png" id="95_act8q"] +[ext_resource type="Texture2D" uid="uid://bfmu7t0xf5kdf" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0651.png" id="99_km4fg"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_co0k7"] +bg_color = Color(0.580392, 0.419608, 0.921569, 1) +border_width_left = 10 +border_width_top = 10 +border_width_right = 10 +border_width_bottom = 10 +border_color = Color(0.101961, 0.623529, 1, 1) +border_blend = true + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1161k"] +bg_color = Color(0.101961, 0.623529, 1, 0.376471) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8lrwm"] +bg_color = Color(0.352941, 0.858824, 0.129412, 0.556863) + +[sub_resource type="Gradient" id="Gradient_wpgfp"] +offsets = PackedFloat32Array(0, 0.631148) +colors = PackedColorArray(0.101961, 0.623529, 1, 1, 0.580392, 0.419608, 0.921569, 1) + +[sub_resource type="GradientTexture2D" id="GradientTexture2D_g8i86"] +gradient = SubResource("Gradient_wpgfp") +width = 128 +height = 128 + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_6ihey"] +texture = SubResource("GradientTexture2D_g8i86") +region_rect = Rect2(0, 0, 128, 127) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_omewi"] +bg_color = Color(0.712505, 0, 0.175592, 1) + +[sub_resource type="SpriteFrames" id="SpriteFrames_lhf2y"] +animations = [{ +"frames": [{ +"duration": 0.61, +"texture": ExtResource("5_7rjbt") +}, { +"duration": 1.0, +"texture": ExtResource("6_d43n7") +}, { +"duration": 1.0, +"texture": ExtResource("7_mo842") +}, { +"duration": 1.0, +"texture": ExtResource("8_l3t5c") +}, { +"duration": 1.0, +"texture": ExtResource("9_8eqo6") +}], +"loop": false, +"name": &"default", +"speed": 12.0 +}] + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_rf0rc"] +texture = ExtResource("4_2tuu4") +texture_margin_left = 6.0 +texture_margin_top = 6.0 +texture_margin_right = 6.0 +texture_margin_bottom = 6.0 +region_rect = Rect2(0, 8, 16, 16) +modulate_color = Color(0.65098, 0.403922, 0.819608, 1) + +[sub_resource type="SpriteFrames" id="SpriteFrames_k7pd1"] +animations = [{ +"frames": [{ +"duration": 10.0, +"texture": ExtResource("59_7lcu5") +}, { +"duration": 1.0, +"texture": ExtResource("60_mbhg6") +}], +"loop": true, +"name": &"blink", +"speed": 5.0 +}] + +[sub_resource type="SpriteFrames" id="SpriteFrames_l20mt"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": ExtResource("63_52v81") +}, { +"duration": 1.0, +"texture": ExtResource("62_lji1k") +}, { +"duration": 1.0, +"texture": ExtResource("61_5vyvy") +}, { +"duration": 1.0, +"texture": ExtResource("64_s8u0e") +}, { +"duration": 1.0, +"texture": ExtResource("65_kk8ba") +}], +"loop": true, +"name": &"speech", +"speed": 5.0 +}] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4gcyr"] +bg_color = Color(0.455, 0.455, 0.455, 0.784) +border_width_left = 10 +border_width_top = 10 +border_width_right = 10 +border_width_bottom = 10 +border_color = Color(0.580392, 0.419608, 0.921569, 1) +border_blend = true +corner_radius_top_left = 20 +corner_radius_top_right = 20 +corner_radius_bottom_right = 20 +corner_radius_bottom_left = 20 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gie3e"] +bg_color = Color(0.0509804, 0.0509804, 0.0509804, 1) +border_color = Color(0.298039, 0.298039, 0.298039, 1) + +[node name="Control" type="Control"] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme = ExtResource("1_if8nh") +script = ExtResource("1_obpq7") +metadata/bios_type = 0 +metadata/_edit_horizontal_guides_ = [-2575.0] + +[node name="Background" type="Panel" parent="."] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="SplitContainer" type="SplitContainer" parent="Background"] +unique_name_in_owner = true +layout_mode = 0 +offset_top = 1.0 +offset_right = 1287.0 +offset_bottom = 725.0 +split_offset = 1280 + +[node name="MarginContainer" type="MarginContainer" parent="Background/SplitContainer"] +layout_mode = 2 + +[node name="TabContainer" type="TabContainer" parent="Background/SplitContainer/MarginContainer"] +unique_name_in_owner = true +layout_mode = 2 +theme_override_styles/tab_selected = SubResource("StyleBoxFlat_co0k7") +tab_alignment = 1 +current_tab = 1 +script = ExtResource("3_id6l4") + +[node name="GLOBALS" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] +unique_name_in_owner = true +visible = false +layout_mode = 2 +script = ExtResource("4_2jqfc") +metadata/_tab_index = 0 + +[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS"] +layout_mode = 2 +follow_focus = true + +[node name="VBoxContainer" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="globals_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer"] +layout_mode = 2 +theme_override_constants/h_separation = 15 +theme_override_constants/v_separation = 15 +columns = 5 + +[node name="ask_to_exit_button" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/globals_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "ASK TO EXIT" +icon = ExtResource("5_ahd1x") +alignment = 1 +icon_alignment = 1 +vertical_icon_alignment = 0 +metadata/description = "Enables or disables ask to exit prompts in all supported emulators and cores.\\nNote: If you disable this, the emulators will directly exit." +metadata/rekku = "If this box is orange blame monkeyx he loves Blaclpool FC. Or long press to reset and turm them all on again. You can also edit individual options for systems in the System TAB. " + +[node name="ask_to_exit_progress" type="ProgressBar" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/globals_gridcontainer/ask_to_exit_button"] +unique_name_in_owner = true +visible = false +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_styles/fill = SubResource("StyleBoxFlat_1161k") +show_percentage = false + +[node name="border_button" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/globals_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "BORDERS" +icon = ExtResource("4_jldgc") +alignment = 1 +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="border_progress" type="ProgressBar" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/globals_gridcontainer/border_button"] +unique_name_in_owner = true +visible = false +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_styles/fill = SubResource("StyleBoxFlat_1161k") +show_percentage = false + +[node name="button_swap_button" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/globals_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "BUTTON SWAP +" +icon = ExtResource("4_caaxx") +alignment = 1 +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="button_swap_progress" type="ProgressBar" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/globals_gridcontainer/button_swap_button"] +unique_name_in_owner = true +visible = false +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_styles/fill = SubResource("StyleBoxFlat_1161k") +show_percentage = false + +[node name="mods_button" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/globals_gridcontainer"] +visible = false +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +disabled = true +text = "MODS" +icon = ExtResource("5_vehlp") +alignment = 1 +icon_alignment = 1 +vertical_icon_alignment = 0 +metadata/description = "This feature is planned for a future release." + +[node name="quick_resume_button" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/globals_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "QUICK RESUME" +icon = ExtResource("12_3jrmi") +alignment = 1 +icon_alignment = 1 +vertical_icon_alignment = 0 +metadata/description = "Testing 1,2,3 .." + +[node name="quick_rewind_button" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/globals_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "REWIND" +icon = ExtResource("11_c3qcy") +alignment = 1 +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="quick_rewind_progress" type="ProgressBar" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/globals_gridcontainer/quick_rewind_button"] +unique_name_in_owner = true +visible = false +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_styles/fill = SubResource("StyleBoxFlat_1161k") +show_percentage = false + +[node name="tate_mode_button" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/globals_gridcontainer"] +visible = false +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +disabled = true +text = "TATE MODE" +icon = ExtResource("10_jm3oh") +alignment = 1 +icon_alignment = 1 +vertical_icon_alignment = 0 +metadata/description = "This feature is planned for a future release." + +[node name="shaders_button" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/globals_gridcontainer"] +visible = false +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +disabled = true +text = "SHADERS" +icon = ExtResource("4_q6hd2") +alignment = 1 +icon_alignment = 1 +vertical_icon_alignment = 0 +metadata/description = "This feature is planned for a future release." + +[node name="widescreen_button" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/globals_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "WIDESCREEN" +icon = ExtResource("4_jldgc") +alignment = 1 +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="widescreen_progress" type="ProgressBar" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/globals_gridcontainer/widescreen_button"] +unique_name_in_owner = true +visible = false +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_styles/fill = SubResource("StyleBoxFlat_1161k") +show_percentage = false + +[node name="SYSTEMS" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] +layout_mode = 2 +script = ExtResource("36_wv31h") +metadata/_tab_index = 1 + +[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS"] +layout_mode = 2 +follow_focus = true + +[node name="VBoxContainer" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="system_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +layout_mode = 2 +theme_override_constants/h_separation = 15 +theme_override_constants/v_separation = 15 +columns = 5 + +[node name="retroarch_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "RETROARCH" +icon = ExtResource("4_xcuib") +icon_alignment = 1 +vertical_icon_alignment = 0 +metadata/rekku = "This is my favourite emulator!" + +[node name="mame_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "MAME" +icon = ExtResource("36_dj81i") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="ruffle_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "RUFFLE" +icon = ExtResource("37_7hhbn") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="melonds_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "MELONDS" +icon = ExtResource("7_4otos") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="pcsx2_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "PCSX2" +icon = ExtResource("38_44je8") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="duckstation_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "DUCKSTATION" +icon = ExtResource("6_winpq") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="ppsspp_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "PPSSPP" +icon = ExtResource("8_akxf7") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="vita3k_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "VITA3K" +icon = ExtResource("38_vsjf2") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="rpcs3_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "RPCS3" +icon = ExtResource("8_ec4gt") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="ryujinx_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "RYUJINX" +icon = ExtResource("40_7fdvq") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="dolphin_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "DOLPHIN" +icon = ExtResource("11_61sak") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="primehack_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "PRIMEHACK" +icon = ExtResource("41_55e56") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="cemu_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "CEMU" +icon = ExtResource("42_n3n7j") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="xemu_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "XEMU" +icon = ExtResource("43_ifi6j") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="esde_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "ES-DE" +icon = ExtResource("44_7lpj5") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="action_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +visible = false +layout_mode = 2 +theme_override_constants/h_separation = 25 +theme_override_constants/v_separation = 25 + +[node name="help_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/action_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +size_flags_horizontal = 3 +action_mode = 0 +text = "HELP" +icon = ExtResource("46_feagl") +expand_icon = true + +[node name="launch_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/action_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +size_flags_horizontal = 3 +action_mode = 0 +text = "LAUNCH" +icon = ExtResource("45_qxd26") +expand_icon = true + +[node name="reset_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/action_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +size_flags_horizontal = 3 +text = "RESET" +icon = ExtResource("12_3jrmi") +expand_icon = true + +[node name="reset_progress" type="ProgressBar" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/action_gridcontainer/reset_button"] +unique_name_in_owner = true +visible = false +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_styles/fill = SubResource("StyleBoxFlat_1161k") +show_percentage = false + +[node name="rpcs3_firmware_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/action_gridcontainer"] +unique_name_in_owner = true +visible = false +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +size_flags_horizontal = 3 +action_mode = 0 +text = "INSTALL FIRMWARE" +icon = ExtResource("8_ec4gt") +expand_icon = true + +[node name="vita3k_firmware_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/action_gridcontainer"] +unique_name_in_owner = true +visible = false +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +size_flags_horizontal = 3 +action_mode = 0 +text = "INSTALL FIRMWARE" +icon = ExtResource("38_vsjf2") +expand_icon = true + +[node name="retroarch_quick_resume_button" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEMS/ScrollContainer/VBoxContainer/action_gridcontainer"] +unique_name_in_owner = true +visible = false +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +size_flags_horizontal = 3 +action_mode = 0 +text = "QUICK RESUME" +icon = ExtResource("4_xcuib") +alignment = 1 +expand_icon = true + +[node name="TOOLS" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] +visible = false +layout_mode = 2 +script = ExtResource("50_wqa5h") +metadata/_tab_index = 2 + +[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS"] +layout_mode = 2 +follow_focus = true + +[node name="VBoxContainer" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/separation = 64 + +[node name="troubleshoot_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer"] +layout_mode = 2 +columns = 5 + +[node name="check_conn_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/troubleshoot_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +toggle_mode = true +text = "CHECK CONNECTION" +icon = ExtResource("50_5d2ui") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="logs_button" type="OptionButton" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/troubleshoot_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +alignment = 1 +icon_alignment = 1 +vertical_icon_alignment = 0 +selected = 0 +item_count = 3 +popup/item_0/text = "LOGS" +popup/item_0/icon = ExtResource("52_1rasc") +popup/item_0/disabled = true +popup/item_0/separator = true +popup/item_1/text = "RetroDECK Log" +popup/item_1/icon = ExtResource("11_g1uhn") +popup/item_1/id = 1 +popup/item_2/text = "Retroarch" +popup/item_2/icon = ExtResource("4_xcuib") +popup/item_2/id = 3 + +[node name="bios_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/troubleshoot_gridcontainer"] +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "BIOS STANDARD" +icon = ExtResource("50_tl5ty") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="bios_button_expert" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/troubleshoot_gridcontainer"] +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "BIOS EXPERT" +icon = ExtResource("50_tl5ty") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="backup_user_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/troubleshoot_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "BACKUP USER DATA" +icon = ExtResource("54_f245y") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="progress_bar_backup" type="ProgressBar" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/troubleshoot_gridcontainer/backup_user_button"] +unique_name_in_owner = true +visible = false +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_styles/fill = SubResource("StyleBoxFlat_8lrwm") +show_percentage = false +indeterminate = true +editor_preview_indeterminate = false + +[node name="srm_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/troubleshoot_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "STEAM ROM MANAGER" +icon = ExtResource("37_b5jhu") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="steam_sync_button" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/troubleshoot_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "STEAM SYNC" +icon = ExtResource("38_6ixfj") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="controls_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer"] +visible = false +layout_mode = 2 +columns = 5 + +[node name="controls_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/controls_gridcontainer"] +layout_mode = 2 +text = "TK_CONTROLS" + +[node name="controls_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/controls_gridcontainer"] +layout_mode = 2 + +[node name="controller_templates_container" type="HBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/controls_gridcontainer"] +layout_mode = 2 + +[node name="controller_templates" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/controls_gridcontainer/controller_templates_container"] +layout_mode = 2 +size_flags_horizontal = 3 +text = "TK_STEAMCONTEMP" + +[node name="controller_templater_install_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/controls_gridcontainer/controller_templates_container"] +layout_mode = 2 +size_flags_horizontal = 10 +size_flags_vertical = 4 +disabled = true +text = "TK_INSTALL" + +[node name="button_layout_container" type="HBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/controls_gridcontainer"] +layout_mode = 2 + +[node name="file_tools_container" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer"] +layout_mode = 2 +columns = 5 + +[node name="file_tools_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] +visible = false +layout_mode = 2 +text = "TK_FILETOOLS" + +[node name="file_tools_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] +visible = false +layout_mode = 2 + +[node name="usb_tool_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] +visible = false +layout_mode = 2 +disabled = true +text = "TK_USBTOOL" + +[node name="compress_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] +visible = false +layout_mode = 2 +disabled = true +text = "TK_COMPRESSGAMES" + +[node name="move_files_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] +visible = false +layout_mode = 2 +disabled = true +text = "TK_MOVEFILES" + +[node name="tools_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] +visible = false +layout_mode = 2 +text = "TK_GENTOOLS" + +[node name="steamgrid_install_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] +visible = false +layout_mode = 2 +disabled = true +text = "TK_GRIDINSTALL" + +[node name="fav_steam" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] +visible = false +layout_mode = 2 +disabled = true +toggle_mode = false +text = "TK_FAVSTEAM" + +[node name="scan_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] +visible = false +layout_mode = 2 +text = "TK_SCAN" + +[node name="scummvm_scan" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] +visible = false +layout_mode = 2 +disabled = true +text = "TK_SCUMMVMSCAN" + +[node name="multifile_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] +visible = false +layout_mode = 2 +disabled = true +text = "TK_MULTIFILE" + +[node name="SETTINGS" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] +visible = false +layout_mode = 2 +script = ExtResource("54_bxhvn") +metadata/_tab_index = 3 + +[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS"] +unique_name_in_owner = true +layout_mode = 2 +follow_focus = true + +[node name="VBoxContainer" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer"] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="system_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +theme_override_constants/icon_max_width = 64 +theme_override_styles/normal = SubResource("StyleBoxTexture_6ihey") +text = "SYSTEM SETTINGS" +icon = ExtResource("38_xw5qd") +expand_icon = true +metadata/description = "Click to show more options. Auto update, sound, theme etc" + +[node name="system_gridcontainer2" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +visible = false +layout_mode = 2 +columns = 4 + +[node name="sound_button" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_gridcontainer2"] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +theme_override_constants/icon_max_width = 64 +text = "SOUND EFFECTS" +icon = ExtResource("9_qwq2k") +alignment = 1 +metadata/description = "TESTTSTSTSTSTS" + +[node name="update_notification_button" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_gridcontainer2"] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +theme_override_constants/icon_max_width = 64 +text = "AUTO UPDATES" +icon = ExtResource("55_x32s4") +alignment = 1 +metadata/description = "Hardcore mode is aimed at players who want a more authentic and difficult experience, similar to playing the original game on actual hardware. It’s perfect for those who enjoy retro gaming and want to earn achievements by demonstrating mastery of the game without modern conveniences." + +[node name="font_optionbutton" type="OptionButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_gridcontainer2"] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +theme_override_constants/icon_max_width = 64 +alignment = 1 +selected = 0 +item_count = 4 +popup/item_0/text = "CHOOSE FONT" +popup/item_0/icon = ExtResource("54_dah1j") +popup/item_0/disabled = true +popup/item_0/separator = true +popup/item_1/text = "Default" +popup/item_1/icon = ExtResource("55_wv2p5") +popup/item_1/id = 1 +popup/item_2/text = "Modern" +popup/item_2/icon = ExtResource("55_wv2p5") +popup/item_2/id = 2 +popup/item_3/text = "OpenDyslexic3" +popup/item_3/icon = ExtResource("56_ubqc2") +popup/item_3/id = 2 + +[node name="locale_option" type="OptionButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_gridcontainer2"] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +alignment = 1 +selected = 0 +fit_to_longest_item = false +item_count = 7 +popup/item_0/text = "DEFAULT LANGUAGE" +popup/item_0/icon = ExtResource("5_exkn2") +popup/item_1/icon = ExtResource("6_fiylw") +popup/item_1/id = 1 +popup/item_2/icon = ExtResource("7_qgxid") +popup/item_2/id = 2 +popup/item_3/icon = ExtResource("8_lptln") +popup/item_3/id = 3 +popup/item_4/icon = ExtResource("9_dp7oa") +popup/item_4/id = 4 +popup/item_5/icon = ExtResource("10_e8mt0") +popup/item_5/id = 5 +popup/item_6/icon = ExtResource("11_ri2fv") +popup/item_6/id = 6 + +[node name="volume_effects_slider" type="HSlider" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_gridcontainer2"] +unique_name_in_owner = true +visible = false +custom_minimum_size = Vector2(0, 75) +layout_mode = 2 +size_flags_horizontal = 3 +min_value = 1.0 +max_value = 25.0 +value = 10.0 +rounded = true +tick_count = 25 + +[node name="reset_retrodeck_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_gridcontainer2"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "RESET RETRODECK" +icon = ExtResource("11_g1uhn") + +[node name="reset_retrodeck_progress" type="ProgressBar" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_gridcontainer2/reset_retrodeck_button"] +unique_name_in_owner = true +visible = false +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_styles/fill = SubResource("StyleBoxFlat_1161k") +show_percentage = false + +[node name="reset_all_emulators_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_gridcontainer2"] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "RESET ALL EMULATORS" +icon = ExtResource("45_qxd26") + +[node name="reset_all_emulators_progress" type="ProgressBar" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_gridcontainer2/reset_all_emulators_button"] +unique_name_in_owner = true +visible = false +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_styles/fill = SubResource("StyleBoxFlat_1161k") +show_percentage = false + +[node name="cheevos_collapse_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +visible = false +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +theme_override_constants/icon_max_width = 64 +text = "ACHIEVEMENTS" +icon = ExtResource("51_12lj4") +expand_icon = true +metadata/description = "Click to show to show RetroAchievements fot supported systems" + +[node name="cheevos_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +visible = false +layout_mode = 2 + +[node name="cheevos_button" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +text = "RETRO ACHIEVEMENTS" +icon = ExtResource("53_dqol6") +alignment = 1 + +[node name="cheevos_progress" type="ProgressBar" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_gridcontainer/cheevos_button"] +unique_name_in_owner = true +visible = false +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_styles/fill = SubResource("StyleBoxFlat_1161k") +show_percentage = false + +[node name="cheevos_enabled_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 + +[node name="cheevos_login_container" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_gridcontainer/cheevos_enabled_container"] +unique_name_in_owner = true +layout_mode = 2 +theme_override_constants/h_separation = 64 +columns = 2 + +[node name="cheevos_username_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_gridcontainer/cheevos_enabled_container/cheevos_login_container"] +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/icon_max_width = 64 +disabled = true +text = "RETRO ACHIEVMENTS USERNAME" +icon = ExtResource("51_2my10") + +[node name="cheevos_username" type="LineEdit" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_gridcontainer/cheevos_enabled_container/cheevos_login_container"] +unique_name_in_owner = true +custom_minimum_size = Vector2(256, 0) +layout_mode = 2 +size_flags_horizontal = 3 +placeholder_text = "username" + +[node name="cheevos_password_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_gridcontainer/cheevos_enabled_container/cheevos_login_container"] +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +size_flags_horizontal = 3 +theme_override_constants/icon_max_width = 64 +disabled = true +text = "RETRO ACHIEVMENTS PASSWORD" +icon = ExtResource("52_g461w") + +[node name="cheevos_password" type="LineEdit" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_gridcontainer/cheevos_enabled_container/cheevos_login_container"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +placeholder_text = "password" +secret = true +secret_character = "*" + +[node name="cheevos_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_gridcontainer/cheevos_enabled_container/cheevos_login_container"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 5 +horizontal_alignment = 1 +vertical_alignment = 1 +uppercase = true + +[node name="cheevos_connect_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_gridcontainer/cheevos_enabled_container/cheevos_login_container"] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +theme_override_constants/icon_max_width = 64 +text = "LOGIN" +icon = ExtResource("53_dqol6") + +[node name="cheevos_hardcore_button" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_gridcontainer/cheevos_enabled_container"] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +theme_override_constants/icon_max_width = 64 +text = "RETRO ACHIEVEMENTS HARDCORE" +icon = ExtResource("53_dqol6") +alignment = 1 +autowrap_mode = 1 +metadata/rekku = "Hardcore mode is aimed at players who want a more authentic and difficult experience, similar to playing the original game on actual hardware. It’s perfect for those who enjoy retro gaming and want to earn achievements by demonstrating mastery of the game without modern conveniences." +metadata/description = "Hardcore mode is aimed at players who want a more authentic and difficult experience, similar to playing the original game on actual hardware.\\nIt’s perfect for those who enjoy retro gaming and want to earn achievements by demonstrating mastery of the game without modern conveniences." + +[node name="cheevos_hardcore_progress" type="ProgressBar" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_gridcontainer/cheevos_enabled_container/cheevos_hardcore_button"] +unique_name_in_owner = true +visible = false +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_styles/fill = SubResource("StyleBoxFlat_1161k") +show_percentage = false + +[node name="netplay_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +visible = false +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +theme_override_constants/icon_max_width = 64 +disabled = true +text = "NETPLAY" +icon = ExtResource("55_30e7t") +expand_icon = true +metadata/description = "This feature is planned for a future release." + +[node name="netplay_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer"] +visible = false +layout_mode = 2 + +[node name="netplay" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/netplay_gridcontainer"] +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +text = "TK_NETPLAY" + +[node name="netplay_id_container" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/netplay_gridcontainer"] +layout_mode = 2 +theme_override_constants/h_separation = 64 +columns = 2 + +[node name="netplay_id_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/netplay_gridcontainer/netplay_id_container"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 5 +text = "TK_NETPLAYID" + +[node name="netplay_id" type="LineEdit" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/netplay_gridcontainer/netplay_id_container"] +custom_minimum_size = Vector2(256, 0) +layout_mode = 2 +size_flags_horizontal = 3 +text = "RetroDECK" +placeholder_text = "RetroDECK" + +[node name="netplay_address_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/netplay_gridcontainer/netplay_id_container"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 5 +text = "TK_NETPLAYADDRESS" + +[node name="netplay_address" type="LineEdit" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/netplay_gridcontainer/netplay_id_container"] +layout_mode = 2 +size_flags_horizontal = 3 +text = "127.0.0.1" +placeholder_text = "127.0.0.1" + +[node name="blank_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/netplay_gridcontainer/netplay_id_container"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 5 + +[node name="netplay_connect_disconnect_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/netplay_gridcontainer/netplay_id_container"] +layout_mode = 2 +text = "TK_NETPLAYCONNECT" + +[node name="future_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +visible = false +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +theme_override_constants/icon_max_width = 64 +text = "FUTURE FEATURES" +icon = ExtResource("56_tn3pf") +expand_icon = true +metadata/description = "This feature is planned for a future release." + +[node name="future_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +visible = false +layout_mode = 2 +columns = 4 + +[node name="multi_user_option" type="OptionButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/future_gridcontainer"] +custom_minimum_size = Vector2(0, 100) +layout_mode = 2 +disabled = true +alignment = 1 +expand_icon = true +selected = 0 +item_count = 4 +popup/item_0/text = "TK_MULTIUSR" +popup/item_0/icon = ExtResource("57_7b0kp") +popup/item_0/separator = true +popup/item_1/text = "TK_CUSTOMUSR" +popup/item_1/icon = ExtResource("58_mntxv") +popup/item_1/id = 1 +popup/item_2/text = "TK_OFF" +popup/item_2/icon = ExtResource("58_mntxv") +popup/item_2/id = 2 +popup/item_3/text = "TK_STEAMUSR" +popup/item_3/icon = ExtResource("58_mntxv") +popup/item_3/id = 3 + +[node name="saves_sync" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/future_gridcontainer"] +layout_mode = 2 +size_flags_horizontal = 3 +disabled = true +toggle_mode = false +text = "TK_SAVESSYNC" + +[node name="ftp_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/future_gridcontainer"] +layout_mode = 2 +size_flags_horizontal = 3 +disabled = true +text = "TK_FTPBTN" + +[node name="menu_music" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/future_gridcontainer"] +layout_mode = 2 +theme_override_constants/icon_max_width = 64 +disabled = true +text = "TK_MUSIC" +icon = ExtResource("58_oismn") +alignment = 1 + +[node name="easter_eggs" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/future_gridcontainer"] +layout_mode = 2 +theme_override_constants/icon_max_width = 64 +disabled = true +button_pressed = true +text = "TK_EASTEREGGS" +icon = ExtResource("56_witym") +alignment = 1 + +[node name="ABOUT" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] +visible = false +layout_mode = 2 +script = ExtResource("4_m4rto") +metadata/_tab_index = 4 + +[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/ABOUT"] +layout_mode = 2 +follow_focus = true + +[node name="about_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/ABOUT/ScrollContainer"] +layout_mode = 2 +alignment = 1 + +[node name="rd_title" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/ABOUT/ScrollContainer/about_container"] +unique_name_in_owner = true +custom_minimum_size = Vector2(300, 150) +layout_mode = 2 +text = "RetroDECK" +autowrap_mode = 2 + +[node name="logo" type="TextureRect" parent="Background/SplitContainer/MarginContainer/TabContainer/ABOUT/ScrollContainer/about_container/rd_title"] +custom_minimum_size = Vector2(128, 128) +layout_mode = 2 +offset_left = 487.0 +offset_top = -3.0 +offset_right = 615.0 +offset_bottom = 125.0 +size_flags_horizontal = 4 +size_flags_vertical = 0 +texture = ExtResource("64_qcmnc") +expand_mode = 1 +stretch_mode = 4 + +[node name="about_header" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/ABOUT/ScrollContainer/about_container"] +custom_minimum_size = Vector2(0, 40) +layout_mode = 2 +size_flags_vertical = 3 +text = "ABOUT RETRODECK" + +[node name="GridContainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/ABOUT/ScrollContainer/about_container"] +unique_name_in_owner = true +layout_mode = 2 +theme_override_constants/h_separation = 15 +theme_override_constants/v_separation = 15 +columns = 4 + +[node name="WIP" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] +unique_name_in_owner = true +visible = false +layout_mode = 2 +metadata/_tab_index = 5 + +[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP"] +layout_mode = 2 +follow_focus = true + +[node name="VBoxContainer" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="decorations_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "DECORATIONS - Borders, Widescreen" +icon = ExtResource("4_q6hd2") + +[node name="decorations_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +visible = false +layout_mode = 2 +columns = 5 + +[node name="wide_screen" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +visible = false +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_WSCREEN" +text = "TK_WSCREEN" +icon = ExtResource("4_jldgc") +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="shaders" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_SHADERS" +text = "TK_SHADERS" +icon = ExtResource("5_box56") +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="mods" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_MODS" +text = "TK_MODS" +icon = ExtResource("6_u80kq") +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="tate_mode" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_TATE" +text = "TK_TATE" +icon = ExtResource("7_i14ax") +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="borders_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_BORDERS" +text = "TK_BORDERS" +icon = ExtResource("5_uiobi") +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="hotkey_sound" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_HOTKEYSOUND" +text = "TK_HOTKEYSOUND" +icon = ExtResource("9_qwq2k") +clip_text = true +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="button_layout" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_BTNLAYOUT" +text = "TK_BTNLAYOUT" +icon = ExtResource("9_d2327") +clip_text = true +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="quick_resume" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_QRESUME" +text = "TK_QRESUME" +icon = ExtResource("11_c3qcy") +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true +metadata/description = "This is a test description set to this element" + +[node name="rewind" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_REWIND" +text = "TK_REWIND" +icon = ExtResource("12_3jrmi") +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true +metadata/description = "This is another, very long and convoluted, description, that I put too much commas in to make in LONGER and more SOPHISTICATED. And I did it twice!!!This is another, very long and convoluted, description, that I put too much commas in to make in LONGER and more SOPHISTICATED." + +[node name="quit_confirm" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +tooltip_text = "TK_CONFIRMEXIT" +text = "TK_CONFIRMEXIT" +icon = ExtResource("13_8kii4") +clip_text = true +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="cheats" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_CHEATS" +text = "TK_CHEATS" +icon = ExtResource("14_oe3l4") +clip_text = true +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="decorations_save" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +unique_name_in_owner = true +visible = false +custom_minimum_size = Vector2(125, 125) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +theme_override_styles/focus = SubResource("StyleBoxFlat_omewi") +text = "SAVE OR SELECT ALL?" +icon = ExtResource("11_p6y0k") +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="borders_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +visible = false +layout_mode = 2 +theme_override_constants/h_separation = 30 +columns = 6 + +[node name="CheckBox5" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("5_ja8to") +expand_icon = true + +[node name="CheckBox3" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("6_mvrie") +expand_icon = true + +[node name="CheckBox4" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("7_01lqn") +expand_icon = true + +[node name="CheckBox6" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("7_b8xj2") +expand_icon = true + +[node name="CheckBox" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("8_rvph4") +expand_icon = true + +[node name="CheckBox7" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("9_s3srh") +expand_icon = true + +[node name="CheckBox8" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("10_2jlmn") +expand_icon = true + +[node name="CheckBox9" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("5_4d7s7") +expand_icon = true + +[node name="CheckBox10" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("12_pp08o") +expand_icon = true + +[node name="systems_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "SYSTEMS - Emulators, Console, Computers" +icon = ExtResource("17_0kr64") + +[node name="systems_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_vertical = 3 +theme_override_constants/h_separation = 10 +theme_override_constants/v_separation = 10 +columns = 6 + +[node name="Button3" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/systems_gridcontainer"] +layout_mode = 2 +tooltip_text = "RetroARCH" +theme_override_styles/focus = ExtResource("5_rjtkn") +text = "RetroArch" +icon = ExtResource("4_xcuib") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="Button8" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/systems_gridcontainer"] +layout_mode = 2 +theme_override_styles/focus = ExtResource("5_rjtkn") +text = "Dolphin" +icon = ExtResource("11_61sak") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="Button7" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/systems_gridcontainer"] +layout_mode = 2 +tooltip_text = "CITRA" +text = "RPCS3" +icon = ExtResource("8_ec4gt") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="Button5" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/systems_gridcontainer"] +layout_mode = 2 +tooltip_text = "PSPSSPP" +theme_override_styles/focus = ExtResource("5_rjtkn") +text = "PSPSSPP" +icon = ExtResource("8_akxf7") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="Button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/systems_gridcontainer"] +layout_mode = 2 +tooltip_text = "Duckstation" +theme_override_styles/focus = ExtResource("5_rjtkn") +text = "DuckStation" +icon = ExtResource("6_winpq") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="Button2" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/systems_gridcontainer"] +layout_mode = 2 +tooltip_text = "Melon DS" +theme_override_styles/focus = ExtResource("5_rjtkn") +text = "MelonDS" +icon = ExtResource("7_4otos") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="Button9" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/systems_gridcontainer"] +visible = false +layout_mode = 2 +tooltip_text = "CITRA" +theme_override_styles/focus = ExtResource("5_rjtkn") +text = "CITRA" +icon = ExtResource("10_wbaif") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="logo_animated" type="AnimatedSprite2D" parent="Background/SplitContainer/MarginContainer"] +unique_name_in_owner = true +visible = false +position = Vector2(1374, 104) +scale = Vector2(0.28, 0.288333) +sprite_frames = SubResource("SpriteFrames_lhf2y") +frame = 4 +frame_progress = 1.0 + +[node name="side_logo" type="Control" parent="Background/SplitContainer"] +z_index = 4 +layout_mode = 2 + +[node name="rekku" type="Control" parent="Background/SplitContainer/side_logo"] +visible = false +layout_mode = 1 +anchors_preset = 7 +anchor_left = 0.5 +anchor_top = 1.0 +anchor_right = 0.5 +anchor_bottom = 1.0 +offset_left = -506.0 +offset_top = 447.0 +offset_right = -506.0 +offset_bottom = 447.0 +grow_horizontal = 2 +grow_vertical = 0 +mouse_filter = 1 +mouse_default_cursor_shape = 8 +script = ExtResource("4_nqqx3") + +[node name="speach_bubble" type="Panel" parent="Background/SplitContainer/side_logo/rekku"] +unique_name_in_owner = true +visible = false +layout_mode = 0 +offset_left = 371.0 +offset_top = -1120.0 +offset_right = 644.0 +offset_bottom = -786.0 +theme_override_styles/panel = SubResource("StyleBoxTexture_rf0rc") + +[node name="helper_text" type="Label" parent="Background/SplitContainer/side_logo/rekku/speach_bubble"] +visible = false +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = -129.5 +offset_top = -161.0 +offset_right = 129.5 +offset_bottom = 191.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("5_cprkf") + +[node name="rekku_sprite" type="Sprite2D" parent="Background/SplitContainer/side_logo/rekku"] +position = Vector2(511, -826) +scale = Vector2(0.5, 0.5) +texture = ExtResource("57_1n3u5") + +[node name="blink_anim" type="AnimatedSprite2D" parent="Background/SplitContainer/side_logo/rekku/rekku_sprite"] +position = Vector2(-72, -252) +sprite_frames = SubResource("SpriteFrames_k7pd1") +animation = &"blink" +autoplay = "blink" +frame_progress = 0.188668 + +[node name="speech_anim" type="AnimatedSprite2D" parent="Background/SplitContainer/side_logo/rekku/rekku_sprite"] +position = Vector2(-76, -198) +sprite_frames = SubResource("SpriteFrames_l20mt") +animation = &"speech" +autoplay = "speech" + +[node name="TextureRect" type="TextureRect" parent="Background/SplitContainer/side_logo"] +visible = false +layout_mode = 0 +offset_left = -82.0 +offset_top = -120.0 +offset_right = 247.0 +offset_bottom = 676.0 +texture = ExtResource("15_qdvxo") +expand_mode = 1 + +[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="Background"] +stream = ExtResource("3_xivj6") +volume_db = -11.243 + +[node name="pop_rtl" type="Label" parent="Background"] +unique_name_in_owner = true +z_index = 2 +layout_mode = 2 +offset_left = 6.0 +offset_top = 653.0 +offset_right = 1271.0 +offset_bottom = 797.0 +theme_override_styles/normal = SubResource("StyleBoxFlat_4gcyr") +vertical_alignment = 1 +autowrap_mode = 2 + +[node name="CanvasModulate" type="CanvasModulate" parent="."] +visible = false +position = Vector2(134, 151) +color = Color(0.858824, 0.890196, 1, 1) + +[node name="controller_guide" type="PanelContainer" parent="."] +layout_mode = 0 +offset_left = 6.0 +offset_top = 731.0 +offset_right = 655.0 +offset_bottom = 793.0 +script = ExtResource("68_ahvw4") + +[node name="HBoxContainer" type="HBoxContainer" parent="controller_guide"] +layout_mode = 2 +theme_override_constants/separation = 10 + +[node name="a_button" type="TextureButton" parent="controller_guide/HBoxContainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(38, 38) +layout_mode = 2 +size_flags_vertical = 4 +texture_normal = ExtResource("30_glnve") +texture_pressed = ExtResource("31_j5ri1") +stretch_mode = 0 + +[node name="Label" type="Label" parent="controller_guide/HBoxContainer"] +layout_mode = 2 +theme_override_colors/font_color = Color(0.270222, 0.270222, 0.270222, 1) +text = "CONFIRM" + +[node name="b_button" type="TextureButton" parent="controller_guide/HBoxContainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(38, 38) +layout_mode = 2 +size_flags_vertical = 4 +texture_normal = ExtResource("33_1ghye") +texture_pressed = ExtResource("34_fum2b") +stretch_mode = 0 + +[node name="Label2" type="Label" parent="controller_guide/HBoxContainer"] +layout_mode = 2 +theme_override_colors/font_color = Color(0.270588, 0.270588, 0.270588, 1) +text = "BACK" + +[node name="x_button" type="TextureButton" parent="controller_guide/HBoxContainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(38, 38) +layout_mode = 2 +size_flags_vertical = 4 +texture_normal = ExtResource("92_xpwgw") +texture_pressed = ExtResource("93_rdk5c") +stretch_mode = 0 + +[node name="Label5" type="Label" parent="controller_guide/HBoxContainer"] +layout_mode = 2 +theme_override_colors/font_color = Color(0.270588, 0.270588, 0.270588, 1) +text = "INFO" + +[node name="y_button" type="TextureButton" parent="controller_guide/HBoxContainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(38, 38) +layout_mode = 2 +size_flags_vertical = 4 +texture_normal = ExtResource("94_ybo5b") +texture_pressed = ExtResource("95_act8q") +stretch_mode = 0 + +[node name="Label6" type="Label" parent="controller_guide/HBoxContainer"] +layout_mode = 2 +theme_override_colors/font_color = Color(0.270588, 0.270588, 0.270588, 1) +text = "REKKU" + +[node name="a_button2" type="TextureButton" parent="controller_guide/HBoxContainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(38, 38) +layout_mode = 2 +size_flags_vertical = 4 +texture_normal = ExtResource("90_xkj8e") +stretch_mode = 0 + +[node name="a_button3" type="TextureButton" parent="controller_guide/HBoxContainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(38, 38) +layout_mode = 2 +size_flags_vertical = 4 +texture_normal = ExtResource("99_km4fg") +stretch_mode = 0 + +[node name="Label4" type="Label" parent="controller_guide/HBoxContainer"] +layout_mode = 2 +theme_override_colors/font_color = Color(0.270588, 0.270588, 0.270588, 1) +text = "QUIT" + +[node name="exit_button" type="TextureButton" parent="controller_guide/HBoxContainer"] +custom_minimum_size = Vector2(35, 35) +layout_mode = 2 +size_flags_vertical = 4 +texture_normal = ExtResource("87_1yqbe") +stretch_mode = 0 + +[node name="Label7" type="Label" parent="controller_guide/HBoxContainer"] +layout_mode = 2 +theme_override_colors/font_color = Color(0.270588, 0.270588, 0.270588, 1) +text = "QUIT" + +[node name="AudioStreamPlayer2D" type="AudioStreamPlayer2D" parent="."] +unique_name_in_owner = true +stream = ExtResource("71_ghxvk") +volume_db = -5.0 + +[node name="l1_box" type="Panel" parent="."] +unique_name_in_owner = true +layout_mode = 0 +offset_left = 15.0 +offset_top = 6.0 +offset_right = 75.0 +offset_bottom = 66.0 +theme_override_styles/panel = SubResource("StyleBoxFlat_gie3e") + +[node name="l1_button" type="TextureButton" parent="l1_box"] +unique_name_in_owner = true +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = -22.5 +offset_top = -22.5 +offset_right = 22.5 +offset_bottom = 22.5 +grow_horizontal = 2 +grow_vertical = 2 +texture_normal = ExtResource("38_prt7u") +texture_pressed = ExtResource("39_m4qgd") +stretch_mode = 0 + +[node name="r1_box" type="Panel" parent="."] +unique_name_in_owner = true +layout_mode = 0 +offset_left = 1199.0 +offset_top = 6.0 +offset_right = 1259.0 +offset_bottom = 66.0 +theme_override_styles/panel = SubResource("StyleBoxFlat_gie3e") + +[node name="r1_button" type="TextureButton" parent="r1_box"] +unique_name_in_owner = true +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = -22.5 +offset_top = -22.5 +offset_right = 22.5 +offset_bottom = 22.5 +grow_horizontal = 2 +grow_vertical = 2 +texture_normal = ExtResource("39_5ft88") +texture_pressed = ExtResource("40_pnuor") +stretch_mode = 0 + +[node name="Retrodeck_Thread_Check" type="Sprite2D" parent="."] +visible = false +position = Vector2(1046, 238) +scale = Vector2(0.390625, 0.398438) +texture = ExtResource("93_f7ex4") +script = ExtResource("94_8nlr1") + +[connection signal="pressed" from="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/troubleshoot_gridcontainer/bios_button" to="." method="_on_bios_button_pressed"] +[connection signal="pressed" from="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/troubleshoot_gridcontainer/bios_button_expert" to="." method="_on_bios_button_expert_pressed"] +[connection signal="item_selected" from="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_gridcontainer2/locale_option" to="." method="_on_locale_selected"] +[connection signal="pressed" from="controller_guide/HBoxContainer/exit_button" to="." method="_on_exit_button_pressed"] diff --git a/tools/configurator/popup_content_test.tscn b/tools/configurator/popup_content_test.tscn new file mode 100644 index 00000000..1086382c --- /dev/null +++ b/tools/configurator/popup_content_test.tscn @@ -0,0 +1,15 @@ +[gd_scene format=3 uid="uid://bihon3xtx45y7"] + +[node name="PopupContentTest" type="Control"] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Button" type="Button" parent="."] +layout_mode = 1 +offset_right = 12.0 +offset_bottom = 8.0 +text = "Test" diff --git a/tools/configurator/progress_file.sh b/tools/configurator/progress_file.sh new file mode 100755 index 00000000..5233bf11 --- /dev/null +++ b/tools/configurator/progress_file.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +progress_file="progress" +echo "0" > "$progress_file" + +for ((i=1; i<=100; i++)); do + echo -ne "$i" > "$progress_file" +# echo $i +# sleep 0.1 + sleep $((RANDOM / 30000)) +done + +sleep 1 + +rm "$progress_file" diff --git a/tools/configurator/project.godot b/tools/configurator/project.godot new file mode 100644 index 00000000..8ac62e8d --- /dev/null +++ b/tools/configurator/project.godot @@ -0,0 +1,131 @@ +; Engine configuration file. +; It's best edited using the editor UI and not directly, +; since the parameters that go here are not all obvious. +; +; Format: +; [section] ; section goes between [] +; param=value ; assign values to parameters + +config_version=5 + +[application] + +config/name="RetroDECKConfigurator" +config/version="0.053" +run/main_scene="res://main.tscn" +config/features=PackedStringArray("4.3", "GL Compatibility") +run/low_processor_mode=true +boot_splash/bg_color=Color(0.141176, 0.141176, 0.141176, 0) +boot_splash/show_image=false +config/icon="res://icon.svg" + +[autoload] + +class_functions="*res://scripts/class_functions.gd" +data_handler="*res://scripts/data_handler.gd" + +[display] + +window/size/viewport_width=1280 +window/size/viewport_height=800 +window/stretch/mode="canvas_items" +window/stretch/aspect="ignore" + +[filesystem] + +import/blender/enabled=false + +[gui] + +theme/custom="res://res/pixel_ui_theme/RetroDECKTheme.tres" + +[input] + +ui_accept={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194309,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194310,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":32,"physical_keycode":0,"key_label":0,"unicode":32,"location":0,"echo":false,"script":null) +, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":0,"pressure":0.0,"pressed":false,"script":null) +] +} +ui_select={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":32,"physical_keycode":0,"key_label":0,"unicode":32,"location":0,"echo":false,"script":null) +] +} +ui_cancel={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194305,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":1,"pressure":0.0,"pressed":false,"script":null) +] +} +rekku_hide={ +"deadzone": 0.5, +"events": [Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":3,"pressure":0.0,"pressed":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":true,"meta_pressed":false,"pressed":false,"keycode":72,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +] +} +info={ +"deadzone": 0.5, +"events": [Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":2,"pressure":0.0,"pressed":true,"script":null) +] +} +quit={ +"deadzone": 0.5, +"events": [Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":15,"pressure":0.0,"pressed":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":true,"meta_pressed":false,"pressed":false,"keycode":81,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +] +} +next_tab={ +"deadzone": 0.5, +"events": [Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":10,"pressure":0.0,"pressed":false,"script":null) +, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":5,"pressure":0.0,"pressed":true,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194328,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +] +} +previous_tab={ +"deadzone": 0.5, +"events": [Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":9,"pressure":0.0,"pressed":false,"script":null) +, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":4,"pressure":0.0,"pressed":true,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194326,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +] +} +back_button={ +"deadzone": 0.5, +"events": [Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":1,"pressure":0.0,"pressed":true,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194305,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +] +} +action_button={ +"deadzone": 0.5, +"events": [Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":0,"pressure":0.0,"pressed":true,"script":null) +] +} +quit1={ +"deadzone": 0.5, +"events": [Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":6,"pressure":0.0,"pressed":true,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194306,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +] +} +quit2={ +"deadzone": 0.5, +"events": [Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":7,"pressure":0.0,"pressed":true,"script":null) +, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":4,"pressure":0.0,"pressed":true,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194305,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +] +} + +[internationalization] + +locale/translation_remaps={} +locale/translations=PackedStringArray("res://translations/en_US.po") +locale/translations_pot_files=PackedStringArray("res://main.tscn", "res://scripts/TabContainer.gd") + +[rendering] + +textures/canvas_textures/default_texture_filter=0 +renderer/rendering_method="gl_compatibility" +renderer/rendering_method.mobile="gl_compatibility" +textures/vram_compression/import_etc2_astc=true +viewport/transparent_background=true diff --git a/tools/configurator/res/Rekku/Rekku-base.png.import b/tools/configurator/res/Rekku/Rekku-base.png.import new file mode 100755 index 00000000..0944a9d8 --- /dev/null +++ b/tools/configurator/res/Rekku/Rekku-base.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d25k8xm78k7sg" +path="res://.godot/imported/Rekku-base.png-ec524e22fc84c361466241e4e6648c25.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/Rekku/Rekku-base.png" +dest_files=["res://.godot/imported/Rekku-base.png-ec524e22fc84c361466241e4e6648c25.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/Rekku/Rekku-test.png.import b/tools/configurator/res/Rekku/Rekku-test.png.import new file mode 100755 index 00000000..a954faee --- /dev/null +++ b/tools/configurator/res/Rekku/Rekku-test.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dodf3rp1jsch0" +path="res://.godot/imported/Rekku-test.png-377c1078b888c6a899d74f4e1c0b30d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/Rekku/Rekku-test.png" +dest_files=["res://.godot/imported/Rekku-test.png-377c1078b888c6a899d74f4e1c0b30d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/Rekku/Rekku-test.xcf b/tools/configurator/res/Rekku/Rekku-test.xcf new file mode 100755 index 00000000..bfcaf24a Binary files /dev/null and b/tools/configurator/res/Rekku/Rekku-test.xcf differ diff --git a/tools/configurator/res/Rekku/base.png b/tools/configurator/res/Rekku/base.png new file mode 100755 index 00000000..f7754333 Binary files /dev/null and b/tools/configurator/res/Rekku/base.png differ diff --git a/tools/configurator/res/Rekku/base.png.import b/tools/configurator/res/Rekku/base.png.import new file mode 100644 index 00000000..3d03af7a --- /dev/null +++ b/tools/configurator/res/Rekku/base.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cor8ep0fkqm08" +path="res://.godot/imported/base.png-fa04a04461c99132fb42530f9f422101.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/Rekku/base.png" +dest_files=["res://.godot/imported/base.png-fa04a04461c99132fb42530f9f422101.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/Rekku/blink1.png b/tools/configurator/res/Rekku/blink1.png new file mode 100755 index 00000000..aeb62a49 Binary files /dev/null and b/tools/configurator/res/Rekku/blink1.png differ diff --git a/tools/configurator/res/Rekku/blink1.png.import b/tools/configurator/res/Rekku/blink1.png.import new file mode 100644 index 00000000..5521b6f4 --- /dev/null +++ b/tools/configurator/res/Rekku/blink1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv7nckloqhn5m" +path="res://.godot/imported/blink1.png-2ff53dd2db061012dbd5bd7f4ee9f7de.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/Rekku/blink1.png" +dest_files=["res://.godot/imported/blink1.png-2ff53dd2db061012dbd5bd7f4ee9f7de.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/Rekku/blink2.png b/tools/configurator/res/Rekku/blink2.png new file mode 100755 index 00000000..d0ec9845 Binary files /dev/null and b/tools/configurator/res/Rekku/blink2.png differ diff --git a/tools/configurator/res/Rekku/blink2.png.import b/tools/configurator/res/Rekku/blink2.png.import new file mode 100644 index 00000000..1afbcb9a --- /dev/null +++ b/tools/configurator/res/Rekku/blink2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by0oj188x350g" +path="res://.godot/imported/blink2.png-acc625fdb199f690a4a62f9989660ae9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/Rekku/blink2.png" +dest_files=["res://.godot/imported/blink2.png-acc625fdb199f690a4a62f9989660ae9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/Rekku/eyes-open.png b/tools/configurator/res/Rekku/eyes-open.png new file mode 100755 index 00000000..c18dca22 Binary files /dev/null and b/tools/configurator/res/Rekku/eyes-open.png differ diff --git a/tools/configurator/res/Rekku/eyes-open.png.import b/tools/configurator/res/Rekku/eyes-open.png.import new file mode 100644 index 00000000..afed68d4 --- /dev/null +++ b/tools/configurator/res/Rekku/eyes-open.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cavtn1rljc5oe" +path="res://.godot/imported/eyes-open.png-66d49c486d52265b50e5d0fe3abb8fad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/Rekku/eyes-open.png" +dest_files=["res://.godot/imported/eyes-open.png-66d49c486d52265b50e5d0fe3abb8fad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/Rekku/mouth-A.png b/tools/configurator/res/Rekku/mouth-A.png new file mode 100755 index 00000000..74d34837 Binary files /dev/null and b/tools/configurator/res/Rekku/mouth-A.png differ diff --git a/tools/configurator/res/Rekku/mouth-A.png.import b/tools/configurator/res/Rekku/mouth-A.png.import new file mode 100644 index 00000000..6f00d6a4 --- /dev/null +++ b/tools/configurator/res/Rekku/mouth-A.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ciwghjy0ahxk6" +path="res://.godot/imported/mouth-A.png-f35914bd03120177c7c482df466645b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/Rekku/mouth-A.png" +dest_files=["res://.godot/imported/mouth-A.png-f35914bd03120177c7c482df466645b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/Rekku/mouth-O.png b/tools/configurator/res/Rekku/mouth-O.png new file mode 100755 index 00000000..2719d972 Binary files /dev/null and b/tools/configurator/res/Rekku/mouth-O.png differ diff --git a/tools/configurator/res/Rekku/mouth-O.png.import b/tools/configurator/res/Rekku/mouth-O.png.import new file mode 100644 index 00000000..93095507 --- /dev/null +++ b/tools/configurator/res/Rekku/mouth-O.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6gl8sltbak7v" +path="res://.godot/imported/mouth-O.png-68905b4fc98491fe877be590173085e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/Rekku/mouth-O.png" +dest_files=["res://.godot/imported/mouth-O.png-68905b4fc98491fe877be590173085e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/Rekku/mouth-base.png b/tools/configurator/res/Rekku/mouth-base.png new file mode 100755 index 00000000..b8f4ea94 Binary files /dev/null and b/tools/configurator/res/Rekku/mouth-base.png differ diff --git a/tools/configurator/res/Rekku/mouth-base.png.import b/tools/configurator/res/Rekku/mouth-base.png.import new file mode 100644 index 00000000..fb73cdbb --- /dev/null +++ b/tools/configurator/res/Rekku/mouth-base.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kx8eypf4ffvu" +path="res://.godot/imported/mouth-base.png-bc1292aecbfbb8349d7c907692d65222.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/Rekku/mouth-base.png" +dest_files=["res://.godot/imported/mouth-base.png-bc1292aecbfbb8349d7c907692d65222.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/configurator.mp3 b/tools/configurator/res/configurator.mp3 new file mode 100755 index 00000000..c84feab8 Binary files /dev/null and b/tools/configurator/res/configurator.mp3 differ diff --git a/tools/configurator/res/configurator.mp3.import b/tools/configurator/res/configurator.mp3.import new file mode 100644 index 00000000..06f8bb62 --- /dev/null +++ b/tools/configurator/res/configurator.mp3.import @@ -0,0 +1,19 @@ +[remap] + +importer="mp3" +type="AudioStreamMP3" +uid="uid://dig4pco500pyt" +path="res://.godot/imported/configurator.mp3-bf5a215ea0dc180d97009d0d9ee0165c.mp3str" + +[deps] + +source_file="res://res/configurator.mp3" +dest_files=["res://.godot/imported/configurator.mp3-bf5a215ea0dc180d97009d0d9ee0165c.mp3str"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/tools/configurator/res/flags/afghanistan_32.png b/tools/configurator/res/flags/afghanistan_32.png new file mode 100644 index 00000000..cc5b6ad3 Binary files /dev/null and b/tools/configurator/res/flags/afghanistan_32.png differ diff --git a/tools/configurator/res/flags/afghanistan_32.png.import b/tools/configurator/res/flags/afghanistan_32.png.import new file mode 100644 index 00000000..34699c37 --- /dev/null +++ b/tools/configurator/res/flags/afghanistan_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vux4rv0elpwg" +path="res://.godot/imported/afghanistan_32.png-58a84762f21db2c34f863ad3c34f5280.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/afghanistan_32.png" +dest_files=["res://.godot/imported/afghanistan_32.png-58a84762f21db2c34f863ad3c34f5280.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/albania_32.png b/tools/configurator/res/flags/albania_32.png new file mode 100644 index 00000000..94c688f6 Binary files /dev/null and b/tools/configurator/res/flags/albania_32.png differ diff --git a/tools/configurator/res/flags/albania_32.png.import b/tools/configurator/res/flags/albania_32.png.import new file mode 100644 index 00000000..18465edd --- /dev/null +++ b/tools/configurator/res/flags/albania_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://srdppupxs06l" +path="res://.godot/imported/albania_32.png-51c07292d1f87d87637793dbbd792219.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/albania_32.png" +dest_files=["res://.godot/imported/albania_32.png-51c07292d1f87d87637793dbbd792219.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/algeria_32.png b/tools/configurator/res/flags/algeria_32.png new file mode 100644 index 00000000..41481b2c Binary files /dev/null and b/tools/configurator/res/flags/algeria_32.png differ diff --git a/tools/configurator/res/flags/algeria_32.png.import b/tools/configurator/res/flags/algeria_32.png.import new file mode 100644 index 00000000..fd973138 --- /dev/null +++ b/tools/configurator/res/flags/algeria_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cda3dhanokt4h" +path="res://.godot/imported/algeria_32.png-e0ce42d5df4370d9beb6f875d3bc98f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/algeria_32.png" +dest_files=["res://.godot/imported/algeria_32.png-e0ce42d5df4370d9beb6f875d3bc98f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/andorra_32.png b/tools/configurator/res/flags/andorra_32.png new file mode 100644 index 00000000..3e20db60 Binary files /dev/null and b/tools/configurator/res/flags/andorra_32.png differ diff --git a/tools/configurator/res/flags/andorra_32.png.import b/tools/configurator/res/flags/andorra_32.png.import new file mode 100644 index 00000000..39e28905 --- /dev/null +++ b/tools/configurator/res/flags/andorra_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm8dqr3nu3y6x" +path="res://.godot/imported/andorra_32.png-72c1c6a031652b68670bf6f3e4ca589d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/andorra_32.png" +dest_files=["res://.godot/imported/andorra_32.png-72c1c6a031652b68670bf6f3e4ca589d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/andorra_la_vella_32.png b/tools/configurator/res/flags/andorra_la_vella_32.png new file mode 100644 index 00000000..f6a45ee6 Binary files /dev/null and b/tools/configurator/res/flags/andorra_la_vella_32.png differ diff --git a/tools/configurator/res/flags/andorra_la_vella_32.png.import b/tools/configurator/res/flags/andorra_la_vella_32.png.import new file mode 100644 index 00000000..378cc5df --- /dev/null +++ b/tools/configurator/res/flags/andorra_la_vella_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bms561fenihwm" +path="res://.godot/imported/andorra_la_vella_32.png-24b4d5b2d6bb85841457235cb3062347.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/andorra_la_vella_32.png" +dest_files=["res://.godot/imported/andorra_la_vella_32.png-24b4d5b2d6bb85841457235cb3062347.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/angola_32.png b/tools/configurator/res/flags/angola_32.png new file mode 100644 index 00000000..95c1f079 Binary files /dev/null and b/tools/configurator/res/flags/angola_32.png differ diff --git a/tools/configurator/res/flags/angola_32.png.import b/tools/configurator/res/flags/angola_32.png.import new file mode 100644 index 00000000..3f8d04f7 --- /dev/null +++ b/tools/configurator/res/flags/angola_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs0xfn77783up" +path="res://.godot/imported/angola_32.png-e05b0b666b0014cb3ee05223811a6dea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/angola_32.png" +dest_files=["res://.godot/imported/angola_32.png-e05b0b666b0014cb3ee05223811a6dea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/antarctica_32.png b/tools/configurator/res/flags/antarctica_32.png new file mode 100644 index 00000000..eccc9499 Binary files /dev/null and b/tools/configurator/res/flags/antarctica_32.png differ diff --git a/tools/configurator/res/flags/antarctica_32.png.import b/tools/configurator/res/flags/antarctica_32.png.import new file mode 100644 index 00000000..7ae9f9e6 --- /dev/null +++ b/tools/configurator/res/flags/antarctica_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vwvmbt22cgim" +path="res://.godot/imported/antarctica_32.png-c4db612ad30d285f80c7aa1ae8a44968.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/antarctica_32.png" +dest_files=["res://.godot/imported/antarctica_32.png-c4db612ad30d285f80c7aa1ae8a44968.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/antarctica_british_ensign_32.png b/tools/configurator/res/flags/antarctica_british_ensign_32.png new file mode 100644 index 00000000..d38948e7 Binary files /dev/null and b/tools/configurator/res/flags/antarctica_british_ensign_32.png differ diff --git a/tools/configurator/res/flags/antarctica_british_ensign_32.png.import b/tools/configurator/res/flags/antarctica_british_ensign_32.png.import new file mode 100644 index 00000000..0fa143c2 --- /dev/null +++ b/tools/configurator/res/flags/antarctica_british_ensign_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0b74ndbkrt3i" +path="res://.godot/imported/antarctica_british_ensign_32.png-b3231df1aa65e9143ec208695aa1b7da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/antarctica_british_ensign_32.png" +dest_files=["res://.godot/imported/antarctica_british_ensign_32.png-b3231df1aa65e9143ec208695aa1b7da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/antarctica_magallanes_32.png b/tools/configurator/res/flags/antarctica_magallanes_32.png new file mode 100644 index 00000000..e4ed5d14 Binary files /dev/null and b/tools/configurator/res/flags/antarctica_magallanes_32.png differ diff --git a/tools/configurator/res/flags/antarctica_magallanes_32.png.import b/tools/configurator/res/flags/antarctica_magallanes_32.png.import new file mode 100644 index 00000000..260ddbcc --- /dev/null +++ b/tools/configurator/res/flags/antarctica_magallanes_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cm3iic71mnrn" +path="res://.godot/imported/antarctica_magallanes_32.png-fd4122f33ef6d329580a3ecd467612ed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/antarctica_magallanes_32.png" +dest_files=["res://.godot/imported/antarctica_magallanes_32.png-fd4122f33ef6d329580a3ecd467612ed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/antarctica_treaty_32.png b/tools/configurator/res/flags/antarctica_treaty_32.png new file mode 100644 index 00000000..20cbe533 Binary files /dev/null and b/tools/configurator/res/flags/antarctica_treaty_32.png differ diff --git a/tools/configurator/res/flags/antarctica_treaty_32.png.import b/tools/configurator/res/flags/antarctica_treaty_32.png.import new file mode 100644 index 00000000..6b37d647 --- /dev/null +++ b/tools/configurator/res/flags/antarctica_treaty_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0isqk6tfqonx" +path="res://.godot/imported/antarctica_treaty_32.png-eb203480f465c4e527c72624aaa29875.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/antarctica_treaty_32.png" +dest_files=["res://.godot/imported/antarctica_treaty_32.png-eb203480f465c4e527c72624aaa29875.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/armenia_32.png b/tools/configurator/res/flags/armenia_32.png new file mode 100644 index 00000000..31a77fa9 Binary files /dev/null and b/tools/configurator/res/flags/armenia_32.png differ diff --git a/tools/configurator/res/flags/armenia_32.png.import b/tools/configurator/res/flags/armenia_32.png.import new file mode 100644 index 00000000..935b42da --- /dev/null +++ b/tools/configurator/res/flags/armenia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c350r3fn13y7m" +path="res://.godot/imported/armenia_32.png-f2d5c666abf6b0f64987e1310d869b82.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/armenia_32.png" +dest_files=["res://.godot/imported/armenia_32.png-f2d5c666abf6b0f64987e1310d869b82.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/australia_32.png b/tools/configurator/res/flags/australia_32.png new file mode 100644 index 00000000..882b2063 Binary files /dev/null and b/tools/configurator/res/flags/australia_32.png differ diff --git a/tools/configurator/res/flags/australia_32.png.import b/tools/configurator/res/flags/australia_32.png.import new file mode 100644 index 00000000..ab3587e9 --- /dev/null +++ b/tools/configurator/res/flags/australia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5g0iv6xhtkva" +path="res://.godot/imported/australia_32.png-a4a534c161665b547de0cf0fae8eab58.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/australia_32.png" +dest_files=["res://.godot/imported/australia_32.png-a4a534c161665b547de0cf0fae8eab58.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/australia_christmas_island_32.png b/tools/configurator/res/flags/australia_christmas_island_32.png new file mode 100644 index 00000000..e131f8a7 Binary files /dev/null and b/tools/configurator/res/flags/australia_christmas_island_32.png differ diff --git a/tools/configurator/res/flags/australia_christmas_island_32.png.import b/tools/configurator/res/flags/australia_christmas_island_32.png.import new file mode 100644 index 00000000..0bb21eed --- /dev/null +++ b/tools/configurator/res/flags/australia_christmas_island_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k6tnrwafidyu" +path="res://.godot/imported/australia_christmas_island_32.png-780ae3a1fb7585e974e6d649143f77b4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/australia_christmas_island_32.png" +dest_files=["res://.godot/imported/australia_christmas_island_32.png-780ae3a1fb7585e974e6d649143f77b4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/australia_cocos_keeling_32.png b/tools/configurator/res/flags/australia_cocos_keeling_32.png new file mode 100644 index 00000000..559ce336 Binary files /dev/null and b/tools/configurator/res/flags/australia_cocos_keeling_32.png differ diff --git a/tools/configurator/res/flags/australia_cocos_keeling_32.png.import b/tools/configurator/res/flags/australia_cocos_keeling_32.png.import new file mode 100644 index 00000000..229b93c8 --- /dev/null +++ b/tools/configurator/res/flags/australia_cocos_keeling_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://di5ajxrpbavnc" +path="res://.godot/imported/australia_cocos_keeling_32.png-7d63165b185b7ed68f3f0e11c4f7df93.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/australia_cocos_keeling_32.png" +dest_files=["res://.godot/imported/australia_cocos_keeling_32.png-7d63165b185b7ed68f3f0e11c4f7df93.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/australia_new_south_wales_32.png b/tools/configurator/res/flags/australia_new_south_wales_32.png new file mode 100644 index 00000000..aaacfdf9 Binary files /dev/null and b/tools/configurator/res/flags/australia_new_south_wales_32.png differ diff --git a/tools/configurator/res/flags/australia_new_south_wales_32.png.import b/tools/configurator/res/flags/australia_new_south_wales_32.png.import new file mode 100644 index 00000000..51507d7c --- /dev/null +++ b/tools/configurator/res/flags/australia_new_south_wales_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6ycueh16jj8u" +path="res://.godot/imported/australia_new_south_wales_32.png-75a8b05b8a4e260f48a2c1923d1e7017.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/australia_new_south_wales_32.png" +dest_files=["res://.godot/imported/australia_new_south_wales_32.png-75a8b05b8a4e260f48a2c1923d1e7017.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/australia_norfolk_island_32.png b/tools/configurator/res/flags/australia_norfolk_island_32.png new file mode 100644 index 00000000..9beedd19 Binary files /dev/null and b/tools/configurator/res/flags/australia_norfolk_island_32.png differ diff --git a/tools/configurator/res/flags/australia_norfolk_island_32.png.import b/tools/configurator/res/flags/australia_norfolk_island_32.png.import new file mode 100644 index 00000000..55b958d9 --- /dev/null +++ b/tools/configurator/res/flags/australia_norfolk_island_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6oktyuyh7wpi" +path="res://.godot/imported/australia_norfolk_island_32.png-0e98ee9e6f4ff6c31cdeca64050ce264.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/australia_norfolk_island_32.png" +dest_files=["res://.godot/imported/australia_norfolk_island_32.png-0e98ee9e6f4ff6c31cdeca64050ce264.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/australia_northern_australia_32.png b/tools/configurator/res/flags/australia_northern_australia_32.png new file mode 100644 index 00000000..2e855bda Binary files /dev/null and b/tools/configurator/res/flags/australia_northern_australia_32.png differ diff --git a/tools/configurator/res/flags/australia_northern_australia_32.png.import b/tools/configurator/res/flags/australia_northern_australia_32.png.import new file mode 100644 index 00000000..61eafcec --- /dev/null +++ b/tools/configurator/res/flags/australia_northern_australia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duyvopitqo4cw" +path="res://.godot/imported/australia_northern_australia_32.png-ecdb4f081e1502f3011085eb2e90f9e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/australia_northern_australia_32.png" +dest_files=["res://.godot/imported/australia_northern_australia_32.png-ecdb4f081e1502f3011085eb2e90f9e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/australia_queensland_32.png b/tools/configurator/res/flags/australia_queensland_32.png new file mode 100644 index 00000000..e9552e12 Binary files /dev/null and b/tools/configurator/res/flags/australia_queensland_32.png differ diff --git a/tools/configurator/res/flags/australia_queensland_32.png.import b/tools/configurator/res/flags/australia_queensland_32.png.import new file mode 100644 index 00000000..111fd6b2 --- /dev/null +++ b/tools/configurator/res/flags/australia_queensland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh7rmhvc8jlx4" +path="res://.godot/imported/australia_queensland_32.png-a89d5f514f00942c9fb99a437ff87f0d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/australia_queensland_32.png" +dest_files=["res://.godot/imported/australia_queensland_32.png-a89d5f514f00942c9fb99a437ff87f0d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/australia_south_australia_32.png b/tools/configurator/res/flags/australia_south_australia_32.png new file mode 100644 index 00000000..57cb959e Binary files /dev/null and b/tools/configurator/res/flags/australia_south_australia_32.png differ diff --git a/tools/configurator/res/flags/australia_south_australia_32.png.import b/tools/configurator/res/flags/australia_south_australia_32.png.import new file mode 100644 index 00000000..3866ee49 --- /dev/null +++ b/tools/configurator/res/flags/australia_south_australia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb3lpqxnybd3k" +path="res://.godot/imported/australia_south_australia_32.png-2d0787ca1c8e5f21ca70ea070d028899.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/australia_south_australia_32.png" +dest_files=["res://.godot/imported/australia_south_australia_32.png-2d0787ca1c8e5f21ca70ea070d028899.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/australia_tasmania_32.png b/tools/configurator/res/flags/australia_tasmania_32.png new file mode 100644 index 00000000..3b07c4ca Binary files /dev/null and b/tools/configurator/res/flags/australia_tasmania_32.png differ diff --git a/tools/configurator/res/flags/australia_tasmania_32.png.import b/tools/configurator/res/flags/australia_tasmania_32.png.import new file mode 100644 index 00000000..851b5543 --- /dev/null +++ b/tools/configurator/res/flags/australia_tasmania_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvci6877xpgc8" +path="res://.godot/imported/australia_tasmania_32.png-5ad9a419fc16015eb292991b19fe9880.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/australia_tasmania_32.png" +dest_files=["res://.godot/imported/australia_tasmania_32.png-5ad9a419fc16015eb292991b19fe9880.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/australia_victoria_32.png b/tools/configurator/res/flags/australia_victoria_32.png new file mode 100644 index 00000000..3691a4f3 Binary files /dev/null and b/tools/configurator/res/flags/australia_victoria_32.png differ diff --git a/tools/configurator/res/flags/australia_victoria_32.png.import b/tools/configurator/res/flags/australia_victoria_32.png.import new file mode 100644 index 00000000..03b9f682 --- /dev/null +++ b/tools/configurator/res/flags/australia_victoria_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cscdt5rv34ycj" +path="res://.godot/imported/australia_victoria_32.png-7dcc1bfb3de2540d6dc625bc22fe1050.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/australia_victoria_32.png" +dest_files=["res://.godot/imported/australia_victoria_32.png-7dcc1bfb3de2540d6dc625bc22fe1050.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/australia_western_australia_32.png b/tools/configurator/res/flags/australia_western_australia_32.png new file mode 100644 index 00000000..fc78fc16 Binary files /dev/null and b/tools/configurator/res/flags/australia_western_australia_32.png differ diff --git a/tools/configurator/res/flags/australia_western_australia_32.png.import b/tools/configurator/res/flags/australia_western_australia_32.png.import new file mode 100644 index 00000000..4fa7aa51 --- /dev/null +++ b/tools/configurator/res/flags/australia_western_australia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdp54v8lghjmd" +path="res://.godot/imported/australia_western_australia_32.png-3a4b7d01c1f01fbc2812e89a8e353bcb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/australia_western_australia_32.png" +dest_files=["res://.godot/imported/australia_western_australia_32.png-3a4b7d01c1f01fbc2812e89a8e353bcb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/austria_32.png b/tools/configurator/res/flags/austria_32.png new file mode 100644 index 00000000..934fa839 Binary files /dev/null and b/tools/configurator/res/flags/austria_32.png differ diff --git a/tools/configurator/res/flags/austria_32.png.import b/tools/configurator/res/flags/austria_32.png.import new file mode 100644 index 00000000..b7e3b875 --- /dev/null +++ b/tools/configurator/res/flags/austria_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bv1fakmg7isqc" +path="res://.godot/imported/austria_32.png-4634542247984513641e9ae4d7b80454.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/austria_32.png" +dest_files=["res://.godot/imported/austria_32.png-4634542247984513641e9ae4d7b80454.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/austria_burgenland_32.png b/tools/configurator/res/flags/austria_burgenland_32.png new file mode 100644 index 00000000..39ce68d5 Binary files /dev/null and b/tools/configurator/res/flags/austria_burgenland_32.png differ diff --git a/tools/configurator/res/flags/austria_burgenland_32.png.import b/tools/configurator/res/flags/austria_burgenland_32.png.import new file mode 100644 index 00000000..da691c6c --- /dev/null +++ b/tools/configurator/res/flags/austria_burgenland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh7l83b0ra2kh" +path="res://.godot/imported/austria_burgenland_32.png-3a38ca6b85b56feea72f25996c5782de.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/austria_burgenland_32.png" +dest_files=["res://.godot/imported/austria_burgenland_32.png-3a38ca6b85b56feea72f25996c5782de.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/austria_carinthia_32.png b/tools/configurator/res/flags/austria_carinthia_32.png new file mode 100644 index 00000000..6a92330f Binary files /dev/null and b/tools/configurator/res/flags/austria_carinthia_32.png differ diff --git a/tools/configurator/res/flags/austria_carinthia_32.png.import b/tools/configurator/res/flags/austria_carinthia_32.png.import new file mode 100644 index 00000000..24aa005c --- /dev/null +++ b/tools/configurator/res/flags/austria_carinthia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch71d726ef6la" +path="res://.godot/imported/austria_carinthia_32.png-7dfb8a5951ff43367c7f4f06ff80c6e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/austria_carinthia_32.png" +dest_files=["res://.godot/imported/austria_carinthia_32.png-7dfb8a5951ff43367c7f4f06ff80c6e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/austria_lower_austria_32.png b/tools/configurator/res/flags/austria_lower_austria_32.png new file mode 100644 index 00000000..64eddb77 Binary files /dev/null and b/tools/configurator/res/flags/austria_lower_austria_32.png differ diff --git a/tools/configurator/res/flags/austria_lower_austria_32.png.import b/tools/configurator/res/flags/austria_lower_austria_32.png.import new file mode 100644 index 00000000..be53cc38 --- /dev/null +++ b/tools/configurator/res/flags/austria_lower_austria_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlqvdueh2b3qt" +path="res://.godot/imported/austria_lower_austria_32.png-64ecbe9f4fae5681b3f6b8b8aea66319.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/austria_lower_austria_32.png" +dest_files=["res://.godot/imported/austria_lower_austria_32.png-64ecbe9f4fae5681b3f6b8b8aea66319.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/austria_salzburg_vienna_vorarlberg_32.png b/tools/configurator/res/flags/austria_salzburg_vienna_vorarlberg_32.png new file mode 100644 index 00000000..18f2c69b Binary files /dev/null and b/tools/configurator/res/flags/austria_salzburg_vienna_vorarlberg_32.png differ diff --git a/tools/configurator/res/flags/austria_salzburg_vienna_vorarlberg_32.png.import b/tools/configurator/res/flags/austria_salzburg_vienna_vorarlberg_32.png.import new file mode 100644 index 00000000..ef465478 --- /dev/null +++ b/tools/configurator/res/flags/austria_salzburg_vienna_vorarlberg_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c11w7db1itjjw" +path="res://.godot/imported/austria_salzburg_vienna_vorarlberg_32.png-4d743e22878bd440cebe4759c1e37693.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/austria_salzburg_vienna_vorarlberg_32.png" +dest_files=["res://.godot/imported/austria_salzburg_vienna_vorarlberg_32.png-4d743e22878bd440cebe4759c1e37693.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/austria_styria_32.png b/tools/configurator/res/flags/austria_styria_32.png new file mode 100644 index 00000000..d90bf9a2 Binary files /dev/null and b/tools/configurator/res/flags/austria_styria_32.png differ diff --git a/tools/configurator/res/flags/austria_styria_32.png.import b/tools/configurator/res/flags/austria_styria_32.png.import new file mode 100644 index 00000000..0a021daf --- /dev/null +++ b/tools/configurator/res/flags/austria_styria_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by8cgidgudh0g" +path="res://.godot/imported/austria_styria_32.png-73b6db299ee85603b036f5350d4cde5f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/austria_styria_32.png" +dest_files=["res://.godot/imported/austria_styria_32.png-73b6db299ee85603b036f5350d4cde5f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/austria_tirol_32.png b/tools/configurator/res/flags/austria_tirol_32.png new file mode 100644 index 00000000..ea085b17 Binary files /dev/null and b/tools/configurator/res/flags/austria_tirol_32.png differ diff --git a/tools/configurator/res/flags/austria_tirol_32.png.import b/tools/configurator/res/flags/austria_tirol_32.png.import new file mode 100644 index 00000000..941f3a8b --- /dev/null +++ b/tools/configurator/res/flags/austria_tirol_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqonnrrsyuu7r" +path="res://.godot/imported/austria_tirol_32.png-55fd8789540c51968af89c932b35f84c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/austria_tirol_32.png" +dest_files=["res://.godot/imported/austria_tirol_32.png-55fd8789540c51968af89c932b35f84c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/austria_tirol_upper_austria_32.png b/tools/configurator/res/flags/austria_tirol_upper_austria_32.png new file mode 100644 index 00000000..945a6d74 Binary files /dev/null and b/tools/configurator/res/flags/austria_tirol_upper_austria_32.png differ diff --git a/tools/configurator/res/flags/austria_tirol_upper_austria_32.png.import b/tools/configurator/res/flags/austria_tirol_upper_austria_32.png.import new file mode 100644 index 00000000..1e6594e4 --- /dev/null +++ b/tools/configurator/res/flags/austria_tirol_upper_austria_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kb2gags82tny" +path="res://.godot/imported/austria_tirol_upper_austria_32.png-4197a4f51b3425539e4529157bb51fd0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/austria_tirol_upper_austria_32.png" +dest_files=["res://.godot/imported/austria_tirol_upper_austria_32.png-4197a4f51b3425539e4529157bb51fd0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/austria_vorarlberg_32.png b/tools/configurator/res/flags/austria_vorarlberg_32.png new file mode 100644 index 00000000..12b85c21 Binary files /dev/null and b/tools/configurator/res/flags/austria_vorarlberg_32.png differ diff --git a/tools/configurator/res/flags/austria_vorarlberg_32.png.import b/tools/configurator/res/flags/austria_vorarlberg_32.png.import new file mode 100644 index 00000000..2ad1ec9d --- /dev/null +++ b/tools/configurator/res/flags/austria_vorarlberg_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chpcbt741qx7n" +path="res://.godot/imported/austria_vorarlberg_32.png-640265d4f8ac97596ea474e0c8a0de50.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/austria_vorarlberg_32.png" +dest_files=["res://.godot/imported/austria_vorarlberg_32.png-640265d4f8ac97596ea474e0c8a0de50.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/azerbaijan_32.png b/tools/configurator/res/flags/azerbaijan_32.png new file mode 100644 index 00000000..2e361153 Binary files /dev/null and b/tools/configurator/res/flags/azerbaijan_32.png differ diff --git a/tools/configurator/res/flags/azerbaijan_32.png.import b/tools/configurator/res/flags/azerbaijan_32.png.import new file mode 100644 index 00000000..5027c4f5 --- /dev/null +++ b/tools/configurator/res/flags/azerbaijan_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1s3aw77u43kg" +path="res://.godot/imported/azerbaijan_32.png-eb037ae639faf5ddfadb1e179adb8287.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/azerbaijan_32.png" +dest_files=["res://.godot/imported/azerbaijan_32.png-eb037ae639faf5ddfadb1e179adb8287.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/azerbaijan_artsakh_32.png b/tools/configurator/res/flags/azerbaijan_artsakh_32.png new file mode 100644 index 00000000..4fe8eb6f Binary files /dev/null and b/tools/configurator/res/flags/azerbaijan_artsakh_32.png differ diff --git a/tools/configurator/res/flags/azerbaijan_artsakh_32.png.import b/tools/configurator/res/flags/azerbaijan_artsakh_32.png.import new file mode 100644 index 00000000..a5048925 --- /dev/null +++ b/tools/configurator/res/flags/azerbaijan_artsakh_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wyn55pnftw8s" +path="res://.godot/imported/azerbaijan_artsakh_32.png-b2380edbacadacc5f686c5e50788a72a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/azerbaijan_artsakh_32.png" +dest_files=["res://.godot/imported/azerbaijan_artsakh_32.png-b2380edbacadacc5f686c5e50788a72a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/bahrain_32.png b/tools/configurator/res/flags/bahrain_32.png new file mode 100644 index 00000000..2875f8a6 Binary files /dev/null and b/tools/configurator/res/flags/bahrain_32.png differ diff --git a/tools/configurator/res/flags/bahrain_32.png.import b/tools/configurator/res/flags/bahrain_32.png.import new file mode 100644 index 00000000..428c0582 --- /dev/null +++ b/tools/configurator/res/flags/bahrain_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dygm47fguwr3l" +path="res://.godot/imported/bahrain_32.png-1445c121161a7f7099675abe9cb9d211.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/bahrain_32.png" +dest_files=["res://.godot/imported/bahrain_32.png-1445c121161a7f7099675abe9cb9d211.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/bangladesh_32.png b/tools/configurator/res/flags/bangladesh_32.png new file mode 100644 index 00000000..0a8ff8c7 Binary files /dev/null and b/tools/configurator/res/flags/bangladesh_32.png differ diff --git a/tools/configurator/res/flags/bangladesh_32.png.import b/tools/configurator/res/flags/bangladesh_32.png.import new file mode 100644 index 00000000..2431eb02 --- /dev/null +++ b/tools/configurator/res/flags/bangladesh_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qqd5y6bdoygm" +path="res://.godot/imported/bangladesh_32.png-2c11ac4cf70b5df6ad592472c0c5cc21.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/bangladesh_32.png" +dest_files=["res://.godot/imported/bangladesh_32.png-2c11ac4cf70b5df6ad592472c0c5cc21.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belarus_32.png b/tools/configurator/res/flags/belarus_32.png new file mode 100644 index 00000000..cda512cc Binary files /dev/null and b/tools/configurator/res/flags/belarus_32.png differ diff --git a/tools/configurator/res/flags/belarus_32.png.import b/tools/configurator/res/flags/belarus_32.png.import new file mode 100644 index 00000000..7bec059c --- /dev/null +++ b/tools/configurator/res/flags/belarus_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bet7f028pnuas" +path="res://.godot/imported/belarus_32.png-44e018216e0a3b438a54eb108cdee1e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belarus_32.png" +dest_files=["res://.godot/imported/belarus_32.png-44e018216e0a3b438a54eb108cdee1e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belarus_brest_voblasts_32.png b/tools/configurator/res/flags/belarus_brest_voblasts_32.png new file mode 100644 index 00000000..cf5bbe43 Binary files /dev/null and b/tools/configurator/res/flags/belarus_brest_voblasts_32.png differ diff --git a/tools/configurator/res/flags/belarus_brest_voblasts_32.png.import b/tools/configurator/res/flags/belarus_brest_voblasts_32.png.import new file mode 100644 index 00000000..bc8a1ecf --- /dev/null +++ b/tools/configurator/res/flags/belarus_brest_voblasts_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h1baw0jrddxe" +path="res://.godot/imported/belarus_brest_voblasts_32.png-e8f633bb199bd396ceb661a330da31db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belarus_brest_voblasts_32.png" +dest_files=["res://.godot/imported/belarus_brest_voblasts_32.png-e8f633bb199bd396ceb661a330da31db.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belarus_homyel_voblasts_32.png b/tools/configurator/res/flags/belarus_homyel_voblasts_32.png new file mode 100644 index 00000000..85d869eb Binary files /dev/null and b/tools/configurator/res/flags/belarus_homyel_voblasts_32.png differ diff --git a/tools/configurator/res/flags/belarus_homyel_voblasts_32.png.import b/tools/configurator/res/flags/belarus_homyel_voblasts_32.png.import new file mode 100644 index 00000000..0a77ea98 --- /dev/null +++ b/tools/configurator/res/flags/belarus_homyel_voblasts_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cow0fkhkay3wb" +path="res://.godot/imported/belarus_homyel_voblasts_32.png-6b62d81e470b3d29662d68e01a376578.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belarus_homyel_voblasts_32.png" +dest_files=["res://.godot/imported/belarus_homyel_voblasts_32.png-6b62d81e470b3d29662d68e01a376578.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belarus_hrodna_voblasts_32.png b/tools/configurator/res/flags/belarus_hrodna_voblasts_32.png new file mode 100644 index 00000000..135cc95a Binary files /dev/null and b/tools/configurator/res/flags/belarus_hrodna_voblasts_32.png differ diff --git a/tools/configurator/res/flags/belarus_hrodna_voblasts_32.png.import b/tools/configurator/res/flags/belarus_hrodna_voblasts_32.png.import new file mode 100644 index 00000000..8bc035c5 --- /dev/null +++ b/tools/configurator/res/flags/belarus_hrodna_voblasts_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvao7uny1wg21" +path="res://.godot/imported/belarus_hrodna_voblasts_32.png-1999e7d45e974d279c962994a03a7140.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belarus_hrodna_voblasts_32.png" +dest_files=["res://.godot/imported/belarus_hrodna_voblasts_32.png-1999e7d45e974d279c962994a03a7140.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belarus_mahilyow_voblasts_32.png b/tools/configurator/res/flags/belarus_mahilyow_voblasts_32.png new file mode 100644 index 00000000..281b4872 Binary files /dev/null and b/tools/configurator/res/flags/belarus_mahilyow_voblasts_32.png differ diff --git a/tools/configurator/res/flags/belarus_mahilyow_voblasts_32.png.import b/tools/configurator/res/flags/belarus_mahilyow_voblasts_32.png.import new file mode 100644 index 00000000..45204b41 --- /dev/null +++ b/tools/configurator/res/flags/belarus_mahilyow_voblasts_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djddgx5rt1ymr" +path="res://.godot/imported/belarus_mahilyow_voblasts_32.png-3d1bb8900a98773da3a2d349dbd83beb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belarus_mahilyow_voblasts_32.png" +dest_files=["res://.godot/imported/belarus_mahilyow_voblasts_32.png-3d1bb8900a98773da3a2d349dbd83beb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belarus_minsk_32.png b/tools/configurator/res/flags/belarus_minsk_32.png new file mode 100644 index 00000000..4425708a Binary files /dev/null and b/tools/configurator/res/flags/belarus_minsk_32.png differ diff --git a/tools/configurator/res/flags/belarus_minsk_32.png.import b/tools/configurator/res/flags/belarus_minsk_32.png.import new file mode 100644 index 00000000..4f9ac8e8 --- /dev/null +++ b/tools/configurator/res/flags/belarus_minsk_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcspv73xdnm6x" +path="res://.godot/imported/belarus_minsk_32.png-25440324ca58ad50ca6ae049db8c09db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belarus_minsk_32.png" +dest_files=["res://.godot/imported/belarus_minsk_32.png-25440324ca58ad50ca6ae049db8c09db.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belarus_minsk_voblasts_32.png b/tools/configurator/res/flags/belarus_minsk_voblasts_32.png new file mode 100644 index 00000000..27d23e5d Binary files /dev/null and b/tools/configurator/res/flags/belarus_minsk_voblasts_32.png differ diff --git a/tools/configurator/res/flags/belarus_minsk_voblasts_32.png.import b/tools/configurator/res/flags/belarus_minsk_voblasts_32.png.import new file mode 100644 index 00000000..4ee0e6d2 --- /dev/null +++ b/tools/configurator/res/flags/belarus_minsk_voblasts_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://56vx2ybi2stp" +path="res://.godot/imported/belarus_minsk_voblasts_32.png-d0b5a1f98508e2d0399392a0bd91dc57.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belarus_minsk_voblasts_32.png" +dest_files=["res://.godot/imported/belarus_minsk_voblasts_32.png-d0b5a1f98508e2d0399392a0bd91dc57.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belarus_vitsebsk_voblasts_32.png b/tools/configurator/res/flags/belarus_vitsebsk_voblasts_32.png new file mode 100644 index 00000000..cf6bce86 Binary files /dev/null and b/tools/configurator/res/flags/belarus_vitsebsk_voblasts_32.png differ diff --git a/tools/configurator/res/flags/belarus_vitsebsk_voblasts_32.png.import b/tools/configurator/res/flags/belarus_vitsebsk_voblasts_32.png.import new file mode 100644 index 00000000..45d9ded8 --- /dev/null +++ b/tools/configurator/res/flags/belarus_vitsebsk_voblasts_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fk21y6bqyx2x" +path="res://.godot/imported/belarus_vitsebsk_voblasts_32.png-4245d92a8a4742a8dfdb50927feb1dae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belarus_vitsebsk_voblasts_32.png" +dest_files=["res://.godot/imported/belarus_vitsebsk_voblasts_32.png-4245d92a8a4742a8dfdb50927feb1dae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belgium_32.png b/tools/configurator/res/flags/belgium_32.png new file mode 100644 index 00000000..84b2d286 Binary files /dev/null and b/tools/configurator/res/flags/belgium_32.png differ diff --git a/tools/configurator/res/flags/belgium_32.png.import b/tools/configurator/res/flags/belgium_32.png.import new file mode 100644 index 00000000..cf7d3258 --- /dev/null +++ b/tools/configurator/res/flags/belgium_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkukhfm40n1rj" +path="res://.godot/imported/belgium_32.png-7797deea83d73b656114472dbe433dbe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belgium_32.png" +dest_files=["res://.godot/imported/belgium_32.png-7797deea83d73b656114472dbe433dbe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belgium_antwerp_32.png b/tools/configurator/res/flags/belgium_antwerp_32.png new file mode 100644 index 00000000..e69ca944 Binary files /dev/null and b/tools/configurator/res/flags/belgium_antwerp_32.png differ diff --git a/tools/configurator/res/flags/belgium_antwerp_32.png.import b/tools/configurator/res/flags/belgium_antwerp_32.png.import new file mode 100644 index 00000000..64310dff --- /dev/null +++ b/tools/configurator/res/flags/belgium_antwerp_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbg7av08n8dis" +path="res://.godot/imported/belgium_antwerp_32.png-41af1d8f66fe9579220866dceb544b23.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belgium_antwerp_32.png" +dest_files=["res://.godot/imported/belgium_antwerp_32.png-41af1d8f66fe9579220866dceb544b23.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belgium_brussels_32.png b/tools/configurator/res/flags/belgium_brussels_32.png new file mode 100644 index 00000000..d8ba16f7 Binary files /dev/null and b/tools/configurator/res/flags/belgium_brussels_32.png differ diff --git a/tools/configurator/res/flags/belgium_brussels_32.png.import b/tools/configurator/res/flags/belgium_brussels_32.png.import new file mode 100644 index 00000000..49b652eb --- /dev/null +++ b/tools/configurator/res/flags/belgium_brussels_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1dawfdhcs801" +path="res://.godot/imported/belgium_brussels_32.png-320b6fe29593c10bee22f1fb3356536a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belgium_brussels_32.png" +dest_files=["res://.godot/imported/belgium_brussels_32.png-320b6fe29593c10bee22f1fb3356536a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belgium_east_flanders_32.png b/tools/configurator/res/flags/belgium_east_flanders_32.png new file mode 100644 index 00000000..5f17ff20 Binary files /dev/null and b/tools/configurator/res/flags/belgium_east_flanders_32.png differ diff --git a/tools/configurator/res/flags/belgium_east_flanders_32.png.import b/tools/configurator/res/flags/belgium_east_flanders_32.png.import new file mode 100644 index 00000000..1a954488 --- /dev/null +++ b/tools/configurator/res/flags/belgium_east_flanders_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwwsujt55brm1" +path="res://.godot/imported/belgium_east_flanders_32.png-f30354be9a8aa5b9d0e67d67bbf340d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belgium_east_flanders_32.png" +dest_files=["res://.godot/imported/belgium_east_flanders_32.png-f30354be9a8aa5b9d0e67d67bbf340d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belgium_flanders_32.png b/tools/configurator/res/flags/belgium_flanders_32.png new file mode 100644 index 00000000..149dbb31 Binary files /dev/null and b/tools/configurator/res/flags/belgium_flanders_32.png differ diff --git a/tools/configurator/res/flags/belgium_flanders_32.png.import b/tools/configurator/res/flags/belgium_flanders_32.png.import new file mode 100644 index 00000000..fdf6140a --- /dev/null +++ b/tools/configurator/res/flags/belgium_flanders_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr41onjdgob67" +path="res://.godot/imported/belgium_flanders_32.png-aa41a0b2eeb307822ab4fab0e6f2dd8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belgium_flanders_32.png" +dest_files=["res://.godot/imported/belgium_flanders_32.png-aa41a0b2eeb307822ab4fab0e6f2dd8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belgium_flemish_brabant_32.png b/tools/configurator/res/flags/belgium_flemish_brabant_32.png new file mode 100644 index 00000000..66e8356a Binary files /dev/null and b/tools/configurator/res/flags/belgium_flemish_brabant_32.png differ diff --git a/tools/configurator/res/flags/belgium_flemish_brabant_32.png.import b/tools/configurator/res/flags/belgium_flemish_brabant_32.png.import new file mode 100644 index 00000000..9e6efdb4 --- /dev/null +++ b/tools/configurator/res/flags/belgium_flemish_brabant_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2hmsisssx6ta" +path="res://.godot/imported/belgium_flemish_brabant_32.png-bc078aa6831623c2f60a6ef645b1fd0e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belgium_flemish_brabant_32.png" +dest_files=["res://.godot/imported/belgium_flemish_brabant_32.png-bc078aa6831623c2f60a6ef645b1fd0e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belgium_hainaut_32.png b/tools/configurator/res/flags/belgium_hainaut_32.png new file mode 100644 index 00000000..7007261b Binary files /dev/null and b/tools/configurator/res/flags/belgium_hainaut_32.png differ diff --git a/tools/configurator/res/flags/belgium_hainaut_32.png.import b/tools/configurator/res/flags/belgium_hainaut_32.png.import new file mode 100644 index 00000000..712ff866 --- /dev/null +++ b/tools/configurator/res/flags/belgium_hainaut_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4u0qpwutcod4" +path="res://.godot/imported/belgium_hainaut_32.png-06b1bb3a256aa9a233eb691ada0e3d30.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belgium_hainaut_32.png" +dest_files=["res://.godot/imported/belgium_hainaut_32.png-06b1bb3a256aa9a233eb691ada0e3d30.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belgium_liege_32.png b/tools/configurator/res/flags/belgium_liege_32.png new file mode 100644 index 00000000..ebdebfac Binary files /dev/null and b/tools/configurator/res/flags/belgium_liege_32.png differ diff --git a/tools/configurator/res/flags/belgium_liege_32.png.import b/tools/configurator/res/flags/belgium_liege_32.png.import new file mode 100644 index 00000000..b4488ee9 --- /dev/null +++ b/tools/configurator/res/flags/belgium_liege_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c47vdi77lc2x2" +path="res://.godot/imported/belgium_liege_32.png-2b3f62ade5f5da92d9064960d548dcd1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belgium_liege_32.png" +dest_files=["res://.godot/imported/belgium_liege_32.png-2b3f62ade5f5da92d9064960d548dcd1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belgium_limburg_32.png b/tools/configurator/res/flags/belgium_limburg_32.png new file mode 100644 index 00000000..f84d6c56 Binary files /dev/null and b/tools/configurator/res/flags/belgium_limburg_32.png differ diff --git a/tools/configurator/res/flags/belgium_limburg_32.png.import b/tools/configurator/res/flags/belgium_limburg_32.png.import new file mode 100644 index 00000000..120ea03d --- /dev/null +++ b/tools/configurator/res/flags/belgium_limburg_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btd0c6li5r2ef" +path="res://.godot/imported/belgium_limburg_32.png-20a4062fdca705b5f15a5d8ec152d73a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belgium_limburg_32.png" +dest_files=["res://.godot/imported/belgium_limburg_32.png-20a4062fdca705b5f15a5d8ec152d73a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belgium_luxembourg_32.png b/tools/configurator/res/flags/belgium_luxembourg_32.png new file mode 100644 index 00000000..e44eb5b1 Binary files /dev/null and b/tools/configurator/res/flags/belgium_luxembourg_32.png differ diff --git a/tools/configurator/res/flags/belgium_luxembourg_32.png.import b/tools/configurator/res/flags/belgium_luxembourg_32.png.import new file mode 100644 index 00000000..3a9ef75a --- /dev/null +++ b/tools/configurator/res/flags/belgium_luxembourg_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj6xrx7crxilu" +path="res://.godot/imported/belgium_luxembourg_32.png-bdc85d746b14e4767a90d2935f686971.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belgium_luxembourg_32.png" +dest_files=["res://.godot/imported/belgium_luxembourg_32.png-bdc85d746b14e4767a90d2935f686971.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belgium_namur_32.png b/tools/configurator/res/flags/belgium_namur_32.png new file mode 100644 index 00000000..07443e12 Binary files /dev/null and b/tools/configurator/res/flags/belgium_namur_32.png differ diff --git a/tools/configurator/res/flags/belgium_namur_32.png.import b/tools/configurator/res/flags/belgium_namur_32.png.import new file mode 100644 index 00000000..3eb283ac --- /dev/null +++ b/tools/configurator/res/flags/belgium_namur_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csnniy8svfu0m" +path="res://.godot/imported/belgium_namur_32.png-36f1614505191090c7a0ec85f9c14bfc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belgium_namur_32.png" +dest_files=["res://.godot/imported/belgium_namur_32.png-36f1614505191090c7a0ec85f9c14bfc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belgium_wallonia_32.png b/tools/configurator/res/flags/belgium_wallonia_32.png new file mode 100644 index 00000000..2a66fc19 Binary files /dev/null and b/tools/configurator/res/flags/belgium_wallonia_32.png differ diff --git a/tools/configurator/res/flags/belgium_wallonia_32.png.import b/tools/configurator/res/flags/belgium_wallonia_32.png.import new file mode 100644 index 00000000..afc19781 --- /dev/null +++ b/tools/configurator/res/flags/belgium_wallonia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2cd24vojqmws" +path="res://.godot/imported/belgium_wallonia_32.png-7e70b889625b36689d44733ee2b01e96.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belgium_wallonia_32.png" +dest_files=["res://.godot/imported/belgium_wallonia_32.png-7e70b889625b36689d44733ee2b01e96.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belgium_walloon_brabant_32.png b/tools/configurator/res/flags/belgium_walloon_brabant_32.png new file mode 100644 index 00000000..c7f49134 Binary files /dev/null and b/tools/configurator/res/flags/belgium_walloon_brabant_32.png differ diff --git a/tools/configurator/res/flags/belgium_walloon_brabant_32.png.import b/tools/configurator/res/flags/belgium_walloon_brabant_32.png.import new file mode 100644 index 00000000..eb1b62ce --- /dev/null +++ b/tools/configurator/res/flags/belgium_walloon_brabant_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cngjijk6docfg" +path="res://.godot/imported/belgium_walloon_brabant_32.png-08df768f3a8aff52dc75fdd4ad9e9291.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belgium_walloon_brabant_32.png" +dest_files=["res://.godot/imported/belgium_walloon_brabant_32.png-08df768f3a8aff52dc75fdd4ad9e9291.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/belgium_west_flanders_32.png b/tools/configurator/res/flags/belgium_west_flanders_32.png new file mode 100644 index 00000000..3c412aa5 Binary files /dev/null and b/tools/configurator/res/flags/belgium_west_flanders_32.png differ diff --git a/tools/configurator/res/flags/belgium_west_flanders_32.png.import b/tools/configurator/res/flags/belgium_west_flanders_32.png.import new file mode 100644 index 00000000..e334af7a --- /dev/null +++ b/tools/configurator/res/flags/belgium_west_flanders_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2vvswwsomgcg" +path="res://.godot/imported/belgium_west_flanders_32.png-58862c8d50cc903c780195f055b1b1a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/belgium_west_flanders_32.png" +dest_files=["res://.godot/imported/belgium_west_flanders_32.png-58862c8d50cc903c780195f055b1b1a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/benin_32.png b/tools/configurator/res/flags/benin_32.png new file mode 100644 index 00000000..fc71b1a5 Binary files /dev/null and b/tools/configurator/res/flags/benin_32.png differ diff --git a/tools/configurator/res/flags/benin_32.png.import b/tools/configurator/res/flags/benin_32.png.import new file mode 100644 index 00000000..22e9cebf --- /dev/null +++ b/tools/configurator/res/flags/benin_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c55weoev3lpki" +path="res://.godot/imported/benin_32.png-078ac5b2b869023ebde294919209d421.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/benin_32.png" +dest_files=["res://.godot/imported/benin_32.png-078ac5b2b869023ebde294919209d421.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/bhutan_32.png b/tools/configurator/res/flags/bhutan_32.png new file mode 100644 index 00000000..0471ae79 Binary files /dev/null and b/tools/configurator/res/flags/bhutan_32.png differ diff --git a/tools/configurator/res/flags/bhutan_32.png.import b/tools/configurator/res/flags/bhutan_32.png.import new file mode 100644 index 00000000..34485a58 --- /dev/null +++ b/tools/configurator/res/flags/bhutan_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cymnky1vpld5t" +path="res://.godot/imported/bhutan_32.png-db1e761257f633ed1c126291028112c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/bhutan_32.png" +dest_files=["res://.godot/imported/bhutan_32.png-db1e761257f633ed1c126291028112c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/bolivia_32.png b/tools/configurator/res/flags/bolivia_32.png new file mode 100644 index 00000000..3fcd6930 Binary files /dev/null and b/tools/configurator/res/flags/bolivia_32.png differ diff --git a/tools/configurator/res/flags/bolivia_32.png.import b/tools/configurator/res/flags/bolivia_32.png.import new file mode 100644 index 00000000..1c8d43d9 --- /dev/null +++ b/tools/configurator/res/flags/bolivia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnju3n0xn5r8v" +path="res://.godot/imported/bolivia_32.png-56383970c7aafc2c33d3f6f814920570.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/bolivia_32.png" +dest_files=["res://.godot/imported/bolivia_32.png-56383970c7aafc2c33d3f6f814920570.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/bolivia_beni_32.png b/tools/configurator/res/flags/bolivia_beni_32.png new file mode 100644 index 00000000..206c8e3e Binary files /dev/null and b/tools/configurator/res/flags/bolivia_beni_32.png differ diff --git a/tools/configurator/res/flags/bolivia_beni_32.png.import b/tools/configurator/res/flags/bolivia_beni_32.png.import new file mode 100644 index 00000000..8c2efdb5 --- /dev/null +++ b/tools/configurator/res/flags/bolivia_beni_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckcyjegk4u2uy" +path="res://.godot/imported/bolivia_beni_32.png-c8e06bc088238ddfc71111d318bb18cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/bolivia_beni_32.png" +dest_files=["res://.godot/imported/bolivia_beni_32.png-c8e06bc088238ddfc71111d318bb18cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/bolivia_chuquisaca_32.png b/tools/configurator/res/flags/bolivia_chuquisaca_32.png new file mode 100644 index 00000000..735927b9 Binary files /dev/null and b/tools/configurator/res/flags/bolivia_chuquisaca_32.png differ diff --git a/tools/configurator/res/flags/bolivia_chuquisaca_32.png.import b/tools/configurator/res/flags/bolivia_chuquisaca_32.png.import new file mode 100644 index 00000000..1f004552 --- /dev/null +++ b/tools/configurator/res/flags/bolivia_chuquisaca_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g7gp3230eiim" +path="res://.godot/imported/bolivia_chuquisaca_32.png-27fc8b645c0c45ade996a6aaf76b1dea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/bolivia_chuquisaca_32.png" +dest_files=["res://.godot/imported/bolivia_chuquisaca_32.png-27fc8b645c0c45ade996a6aaf76b1dea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/bolivia_cochabamba_32.png b/tools/configurator/res/flags/bolivia_cochabamba_32.png new file mode 100644 index 00000000..4b72f3df Binary files /dev/null and b/tools/configurator/res/flags/bolivia_cochabamba_32.png differ diff --git a/tools/configurator/res/flags/bolivia_cochabamba_32.png.import b/tools/configurator/res/flags/bolivia_cochabamba_32.png.import new file mode 100644 index 00000000..b4afb92b --- /dev/null +++ b/tools/configurator/res/flags/bolivia_cochabamba_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhsavgujee75e" +path="res://.godot/imported/bolivia_cochabamba_32.png-00386b17befcb5035dd0b0394078e5ee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/bolivia_cochabamba_32.png" +dest_files=["res://.godot/imported/bolivia_cochabamba_32.png-00386b17befcb5035dd0b0394078e5ee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/bolivia_la_paz_32.png b/tools/configurator/res/flags/bolivia_la_paz_32.png new file mode 100644 index 00000000..f611826c Binary files /dev/null and b/tools/configurator/res/flags/bolivia_la_paz_32.png differ diff --git a/tools/configurator/res/flags/bolivia_la_paz_32.png.import b/tools/configurator/res/flags/bolivia_la_paz_32.png.import new file mode 100644 index 00000000..6616c884 --- /dev/null +++ b/tools/configurator/res/flags/bolivia_la_paz_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgu71mdo1ova8" +path="res://.godot/imported/bolivia_la_paz_32.png-8249a890b826bfd32fa1ff714e2f27e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/bolivia_la_paz_32.png" +dest_files=["res://.godot/imported/bolivia_la_paz_32.png-8249a890b826bfd32fa1ff714e2f27e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/bolivia_oruro_32.png b/tools/configurator/res/flags/bolivia_oruro_32.png new file mode 100644 index 00000000..46854bff Binary files /dev/null and b/tools/configurator/res/flags/bolivia_oruro_32.png differ diff --git a/tools/configurator/res/flags/bolivia_oruro_32.png.import b/tools/configurator/res/flags/bolivia_oruro_32.png.import new file mode 100644 index 00000000..36099e54 --- /dev/null +++ b/tools/configurator/res/flags/bolivia_oruro_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://71bv5ycle2wi" +path="res://.godot/imported/bolivia_oruro_32.png-2be95f4def052466a8a6d7f7ab8a79f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/bolivia_oruro_32.png" +dest_files=["res://.godot/imported/bolivia_oruro_32.png-2be95f4def052466a8a6d7f7ab8a79f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/bolivia_pando_32.png b/tools/configurator/res/flags/bolivia_pando_32.png new file mode 100644 index 00000000..6c4eb25a Binary files /dev/null and b/tools/configurator/res/flags/bolivia_pando_32.png differ diff --git a/tools/configurator/res/flags/bolivia_pando_32.png.import b/tools/configurator/res/flags/bolivia_pando_32.png.import new file mode 100644 index 00000000..8a1b12bc --- /dev/null +++ b/tools/configurator/res/flags/bolivia_pando_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcsb45usw8yo0" +path="res://.godot/imported/bolivia_pando_32.png-f2b61757182c009ce829a2c6068754f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/bolivia_pando_32.png" +dest_files=["res://.godot/imported/bolivia_pando_32.png-f2b61757182c009ce829a2c6068754f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/bolivia_potosi_32.png b/tools/configurator/res/flags/bolivia_potosi_32.png new file mode 100644 index 00000000..109b104c Binary files /dev/null and b/tools/configurator/res/flags/bolivia_potosi_32.png differ diff --git a/tools/configurator/res/flags/bolivia_potosi_32.png.import b/tools/configurator/res/flags/bolivia_potosi_32.png.import new file mode 100644 index 00000000..6c6a41aa --- /dev/null +++ b/tools/configurator/res/flags/bolivia_potosi_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cns8577k75c7g" +path="res://.godot/imported/bolivia_potosi_32.png-71f940e9a76edc39531accc2c05cf240.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/bolivia_potosi_32.png" +dest_files=["res://.godot/imported/bolivia_potosi_32.png-71f940e9a76edc39531accc2c05cf240.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/bolivia_santa_cruz_32.png b/tools/configurator/res/flags/bolivia_santa_cruz_32.png new file mode 100644 index 00000000..800f6360 Binary files /dev/null and b/tools/configurator/res/flags/bolivia_santa_cruz_32.png differ diff --git a/tools/configurator/res/flags/bolivia_santa_cruz_32.png.import b/tools/configurator/res/flags/bolivia_santa_cruz_32.png.import new file mode 100644 index 00000000..4b5a7356 --- /dev/null +++ b/tools/configurator/res/flags/bolivia_santa_cruz_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bm774nbt2bmlb" +path="res://.godot/imported/bolivia_santa_cruz_32.png-90bbaff9165aaa2125f71deceb312f34.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/bolivia_santa_cruz_32.png" +dest_files=["res://.godot/imported/bolivia_santa_cruz_32.png-90bbaff9165aaa2125f71deceb312f34.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/bolivia_tarija_32.png b/tools/configurator/res/flags/bolivia_tarija_32.png new file mode 100644 index 00000000..9e8d4411 Binary files /dev/null and b/tools/configurator/res/flags/bolivia_tarija_32.png differ diff --git a/tools/configurator/res/flags/bolivia_tarija_32.png.import b/tools/configurator/res/flags/bolivia_tarija_32.png.import new file mode 100644 index 00000000..8febe703 --- /dev/null +++ b/tools/configurator/res/flags/bolivia_tarija_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://174jgrkiud3" +path="res://.godot/imported/bolivia_tarija_32.png-5ce771427d687cb367ab7bc6262b770e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/bolivia_tarija_32.png" +dest_files=["res://.godot/imported/bolivia_tarija_32.png-5ce771427d687cb367ab7bc6262b770e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/bosnia_herzegovina_32.png b/tools/configurator/res/flags/bosnia_herzegovina_32.png new file mode 100644 index 00000000..2f9b4d6b Binary files /dev/null and b/tools/configurator/res/flags/bosnia_herzegovina_32.png differ diff --git a/tools/configurator/res/flags/bosnia_herzegovina_32.png.import b/tools/configurator/res/flags/bosnia_herzegovina_32.png.import new file mode 100644 index 00000000..7be07cf5 --- /dev/null +++ b/tools/configurator/res/flags/bosnia_herzegovina_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk1qu0av63bbw" +path="res://.godot/imported/bosnia_herzegovina_32.png-36c1833915f6d7cc74a6b9171cdbf4e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/bosnia_herzegovina_32.png" +dest_files=["res://.godot/imported/bosnia_herzegovina_32.png-36c1833915f6d7cc74a6b9171cdbf4e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/botswana_32.png b/tools/configurator/res/flags/botswana_32.png new file mode 100644 index 00000000..64315b12 Binary files /dev/null and b/tools/configurator/res/flags/botswana_32.png differ diff --git a/tools/configurator/res/flags/botswana_32.png.import b/tools/configurator/res/flags/botswana_32.png.import new file mode 100644 index 00000000..55df9a9a --- /dev/null +++ b/tools/configurator/res/flags/botswana_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfu0344lp5qke" +path="res://.godot/imported/botswana_32.png-0a6bf92cb4983b1dc698afe2b7fb999b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/botswana_32.png" +dest_files=["res://.godot/imported/botswana_32.png-0a6bf92cb4983b1dc698afe2b7fb999b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_32.png b/tools/configurator/res/flags/brazil_32.png new file mode 100644 index 00000000..c20f0150 Binary files /dev/null and b/tools/configurator/res/flags/brazil_32.png differ diff --git a/tools/configurator/res/flags/brazil_32.png.import b/tools/configurator/res/flags/brazil_32.png.import new file mode 100644 index 00000000..31716c92 --- /dev/null +++ b/tools/configurator/res/flags/brazil_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0x5vh45mawc" +path="res://.godot/imported/brazil_32.png-87f31552e7746f046c132fcf25487aaa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_32.png" +dest_files=["res://.godot/imported/brazil_32.png-87f31552e7746f046c132fcf25487aaa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_acre_32.png b/tools/configurator/res/flags/brazil_acre_32.png new file mode 100644 index 00000000..e54937d6 Binary files /dev/null and b/tools/configurator/res/flags/brazil_acre_32.png differ diff --git a/tools/configurator/res/flags/brazil_acre_32.png.import b/tools/configurator/res/flags/brazil_acre_32.png.import new file mode 100644 index 00000000..14986ad1 --- /dev/null +++ b/tools/configurator/res/flags/brazil_acre_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lbhrq3egr0qg" +path="res://.godot/imported/brazil_acre_32.png-21e2dc6a699291ebca9316cfb4b26523.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_acre_32.png" +dest_files=["res://.godot/imported/brazil_acre_32.png-21e2dc6a699291ebca9316cfb4b26523.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_alagoas_32.png b/tools/configurator/res/flags/brazil_alagoas_32.png new file mode 100644 index 00000000..29796300 Binary files /dev/null and b/tools/configurator/res/flags/brazil_alagoas_32.png differ diff --git a/tools/configurator/res/flags/brazil_alagoas_32.png.import b/tools/configurator/res/flags/brazil_alagoas_32.png.import new file mode 100644 index 00000000..52f40c61 --- /dev/null +++ b/tools/configurator/res/flags/brazil_alagoas_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pugiei3k8xrb" +path="res://.godot/imported/brazil_alagoas_32.png-24542548855f4f66bb064ea278c26d08.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_alagoas_32.png" +dest_files=["res://.godot/imported/brazil_alagoas_32.png-24542548855f4f66bb064ea278c26d08.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_amapa_32.png b/tools/configurator/res/flags/brazil_amapa_32.png new file mode 100644 index 00000000..ca892c98 Binary files /dev/null and b/tools/configurator/res/flags/brazil_amapa_32.png differ diff --git a/tools/configurator/res/flags/brazil_amapa_32.png.import b/tools/configurator/res/flags/brazil_amapa_32.png.import new file mode 100644 index 00000000..e42f34dd --- /dev/null +++ b/tools/configurator/res/flags/brazil_amapa_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df2d6yufq0ce2" +path="res://.godot/imported/brazil_amapa_32.png-ecaafb9495afd76b51463d7d14de6791.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_amapa_32.png" +dest_files=["res://.godot/imported/brazil_amapa_32.png-ecaafb9495afd76b51463d7d14de6791.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_amazonas_32.png b/tools/configurator/res/flags/brazil_amazonas_32.png new file mode 100644 index 00000000..83b6dc93 Binary files /dev/null and b/tools/configurator/res/flags/brazil_amazonas_32.png differ diff --git a/tools/configurator/res/flags/brazil_amazonas_32.png.import b/tools/configurator/res/flags/brazil_amazonas_32.png.import new file mode 100644 index 00000000..56f246a9 --- /dev/null +++ b/tools/configurator/res/flags/brazil_amazonas_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx6ydbk4rpfm0" +path="res://.godot/imported/brazil_amazonas_32.png-417f54f1963b739e9d2cfc95c81dade0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_amazonas_32.png" +dest_files=["res://.godot/imported/brazil_amazonas_32.png-417f54f1963b739e9d2cfc95c81dade0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_bahia_32.png b/tools/configurator/res/flags/brazil_bahia_32.png new file mode 100644 index 00000000..27b1206e Binary files /dev/null and b/tools/configurator/res/flags/brazil_bahia_32.png differ diff --git a/tools/configurator/res/flags/brazil_bahia_32.png.import b/tools/configurator/res/flags/brazil_bahia_32.png.import new file mode 100644 index 00000000..538b2e5e --- /dev/null +++ b/tools/configurator/res/flags/brazil_bahia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3pi3hlhdfwv6" +path="res://.godot/imported/brazil_bahia_32.png-1f5de737f08515728d8cf450fe786df0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_bahia_32.png" +dest_files=["res://.godot/imported/brazil_bahia_32.png-1f5de737f08515728d8cf450fe786df0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_ceara_32.png b/tools/configurator/res/flags/brazil_ceara_32.png new file mode 100644 index 00000000..65b38013 Binary files /dev/null and b/tools/configurator/res/flags/brazil_ceara_32.png differ diff --git a/tools/configurator/res/flags/brazil_ceara_32.png.import b/tools/configurator/res/flags/brazil_ceara_32.png.import new file mode 100644 index 00000000..56e93129 --- /dev/null +++ b/tools/configurator/res/flags/brazil_ceara_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du3qa7k2hgurh" +path="res://.godot/imported/brazil_ceara_32.png-cbf1fd56771ec563af70b5ea1f2ffd7f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_ceara_32.png" +dest_files=["res://.godot/imported/brazil_ceara_32.png-cbf1fd56771ec563af70b5ea1f2ffd7f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_distrito_federal_32.png b/tools/configurator/res/flags/brazil_distrito_federal_32.png new file mode 100644 index 00000000..875aa914 Binary files /dev/null and b/tools/configurator/res/flags/brazil_distrito_federal_32.png differ diff --git a/tools/configurator/res/flags/brazil_distrito_federal_32.png.import b/tools/configurator/res/flags/brazil_distrito_federal_32.png.import new file mode 100644 index 00000000..0b477c58 --- /dev/null +++ b/tools/configurator/res/flags/brazil_distrito_federal_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btgrbiwhooeyk" +path="res://.godot/imported/brazil_distrito_federal_32.png-5eeaca190d199977e9314a39e6a4c889.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_distrito_federal_32.png" +dest_files=["res://.godot/imported/brazil_distrito_federal_32.png-5eeaca190d199977e9314a39e6a4c889.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_espirito_santo_32.png b/tools/configurator/res/flags/brazil_espirito_santo_32.png new file mode 100644 index 00000000..da1c52b9 Binary files /dev/null and b/tools/configurator/res/flags/brazil_espirito_santo_32.png differ diff --git a/tools/configurator/res/flags/brazil_espirito_santo_32.png.import b/tools/configurator/res/flags/brazil_espirito_santo_32.png.import new file mode 100644 index 00000000..6aac2d1d --- /dev/null +++ b/tools/configurator/res/flags/brazil_espirito_santo_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnwpxlisnxntl" +path="res://.godot/imported/brazil_espirito_santo_32.png-969aa5169a06ebd4ab544d559ce2d684.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_espirito_santo_32.png" +dest_files=["res://.godot/imported/brazil_espirito_santo_32.png-969aa5169a06ebd4ab544d559ce2d684.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_goias_32.png b/tools/configurator/res/flags/brazil_goias_32.png new file mode 100644 index 00000000..49a54f00 Binary files /dev/null and b/tools/configurator/res/flags/brazil_goias_32.png differ diff --git a/tools/configurator/res/flags/brazil_goias_32.png.import b/tools/configurator/res/flags/brazil_goias_32.png.import new file mode 100644 index 00000000..ca121364 --- /dev/null +++ b/tools/configurator/res/flags/brazil_goias_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8iuqo0mfdsfl" +path="res://.godot/imported/brazil_goias_32.png-baa8833ad720a9c13d07a12fa7a07755.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_goias_32.png" +dest_files=["res://.godot/imported/brazil_goias_32.png-baa8833ad720a9c13d07a12fa7a07755.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_maranha_32.png b/tools/configurator/res/flags/brazil_maranha_32.png new file mode 100644 index 00000000..eed86440 Binary files /dev/null and b/tools/configurator/res/flags/brazil_maranha_32.png differ diff --git a/tools/configurator/res/flags/brazil_maranha_32.png.import b/tools/configurator/res/flags/brazil_maranha_32.png.import new file mode 100644 index 00000000..fa1fcfbc --- /dev/null +++ b/tools/configurator/res/flags/brazil_maranha_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqhl2t8p1c8w0" +path="res://.godot/imported/brazil_maranha_32.png-ff8e6a98dd3b86a078c9d08fe18ec757.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_maranha_32.png" +dest_files=["res://.godot/imported/brazil_maranha_32.png-ff8e6a98dd3b86a078c9d08fe18ec757.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_mato_grosso_32.png b/tools/configurator/res/flags/brazil_mato_grosso_32.png new file mode 100644 index 00000000..5feb6f15 Binary files /dev/null and b/tools/configurator/res/flags/brazil_mato_grosso_32.png differ diff --git a/tools/configurator/res/flags/brazil_mato_grosso_32.png.import b/tools/configurator/res/flags/brazil_mato_grosso_32.png.import new file mode 100644 index 00000000..45e9a350 --- /dev/null +++ b/tools/configurator/res/flags/brazil_mato_grosso_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4o7xkjvmoyt8" +path="res://.godot/imported/brazil_mato_grosso_32.png-6ed373432507206dc2f9eaaaad2f65f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_mato_grosso_32.png" +dest_files=["res://.godot/imported/brazil_mato_grosso_32.png-6ed373432507206dc2f9eaaaad2f65f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_mato_grosso_do_sul_32.png b/tools/configurator/res/flags/brazil_mato_grosso_do_sul_32.png new file mode 100644 index 00000000..03a4e869 Binary files /dev/null and b/tools/configurator/res/flags/brazil_mato_grosso_do_sul_32.png differ diff --git a/tools/configurator/res/flags/brazil_mato_grosso_do_sul_32.png.import b/tools/configurator/res/flags/brazil_mato_grosso_do_sul_32.png.import new file mode 100644 index 00000000..2d3cd06d --- /dev/null +++ b/tools/configurator/res/flags/brazil_mato_grosso_do_sul_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://77hj8lhaouja" +path="res://.godot/imported/brazil_mato_grosso_do_sul_32.png-803a6870ef7f22ce7bb9c08a5d53d728.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_mato_grosso_do_sul_32.png" +dest_files=["res://.godot/imported/brazil_mato_grosso_do_sul_32.png-803a6870ef7f22ce7bb9c08a5d53d728.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_minas_gerais_32.png b/tools/configurator/res/flags/brazil_minas_gerais_32.png new file mode 100644 index 00000000..2b84b7ce Binary files /dev/null and b/tools/configurator/res/flags/brazil_minas_gerais_32.png differ diff --git a/tools/configurator/res/flags/brazil_minas_gerais_32.png.import b/tools/configurator/res/flags/brazil_minas_gerais_32.png.import new file mode 100644 index 00000000..84c1f5e8 --- /dev/null +++ b/tools/configurator/res/flags/brazil_minas_gerais_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmh1o16b3y2k8" +path="res://.godot/imported/brazil_minas_gerais_32.png-b6d0aea25be8ef075444c94648cff8ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_minas_gerais_32.png" +dest_files=["res://.godot/imported/brazil_minas_gerais_32.png-b6d0aea25be8ef075444c94648cff8ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_para_32.png b/tools/configurator/res/flags/brazil_para_32.png new file mode 100644 index 00000000..4a4a9209 Binary files /dev/null and b/tools/configurator/res/flags/brazil_para_32.png differ diff --git a/tools/configurator/res/flags/brazil_para_32.png.import b/tools/configurator/res/flags/brazil_para_32.png.import new file mode 100644 index 00000000..712a8a48 --- /dev/null +++ b/tools/configurator/res/flags/brazil_para_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ocptj7xsjd05" +path="res://.godot/imported/brazil_para_32.png-82659c9fbca72594092a4e883c9519fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_para_32.png" +dest_files=["res://.godot/imported/brazil_para_32.png-82659c9fbca72594092a4e883c9519fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_paraiba_32.png b/tools/configurator/res/flags/brazil_paraiba_32.png new file mode 100644 index 00000000..a2b30597 Binary files /dev/null and b/tools/configurator/res/flags/brazil_paraiba_32.png differ diff --git a/tools/configurator/res/flags/brazil_paraiba_32.png.import b/tools/configurator/res/flags/brazil_paraiba_32.png.import new file mode 100644 index 00000000..bf5a08ee --- /dev/null +++ b/tools/configurator/res/flags/brazil_paraiba_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnoadbwp3kdng" +path="res://.godot/imported/brazil_paraiba_32.png-ee018ca4ae6f0c17777a6291f43642c9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_paraiba_32.png" +dest_files=["res://.godot/imported/brazil_paraiba_32.png-ee018ca4ae6f0c17777a6291f43642c9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_parana_32.png b/tools/configurator/res/flags/brazil_parana_32.png new file mode 100644 index 00000000..6a8cc0b9 Binary files /dev/null and b/tools/configurator/res/flags/brazil_parana_32.png differ diff --git a/tools/configurator/res/flags/brazil_parana_32.png.import b/tools/configurator/res/flags/brazil_parana_32.png.import new file mode 100644 index 00000000..eeaeae10 --- /dev/null +++ b/tools/configurator/res/flags/brazil_parana_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyyn3ksicqq8x" +path="res://.godot/imported/brazil_parana_32.png-6273bce145d5aeae851a06dacd47e8cf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_parana_32.png" +dest_files=["res://.godot/imported/brazil_parana_32.png-6273bce145d5aeae851a06dacd47e8cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_pernambuco_32.png b/tools/configurator/res/flags/brazil_pernambuco_32.png new file mode 100644 index 00000000..1f9ecfed Binary files /dev/null and b/tools/configurator/res/flags/brazil_pernambuco_32.png differ diff --git a/tools/configurator/res/flags/brazil_pernambuco_32.png.import b/tools/configurator/res/flags/brazil_pernambuco_32.png.import new file mode 100644 index 00000000..a79ae7cc --- /dev/null +++ b/tools/configurator/res/flags/brazil_pernambuco_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k786ewfi8lu8" +path="res://.godot/imported/brazil_pernambuco_32.png-a11f9a5265008921c8d5fa990d8f75d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_pernambuco_32.png" +dest_files=["res://.godot/imported/brazil_pernambuco_32.png-a11f9a5265008921c8d5fa990d8f75d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_piaui_32.png b/tools/configurator/res/flags/brazil_piaui_32.png new file mode 100644 index 00000000..09af1d79 Binary files /dev/null and b/tools/configurator/res/flags/brazil_piaui_32.png differ diff --git a/tools/configurator/res/flags/brazil_piaui_32.png.import b/tools/configurator/res/flags/brazil_piaui_32.png.import new file mode 100644 index 00000000..dbfa90aa --- /dev/null +++ b/tools/configurator/res/flags/brazil_piaui_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qwbnrv0vj4x1" +path="res://.godot/imported/brazil_piaui_32.png-026bd485e5f96e8e7c1716727c0f8e54.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_piaui_32.png" +dest_files=["res://.godot/imported/brazil_piaui_32.png-026bd485e5f96e8e7c1716727c0f8e54.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_rio_de_janeiro_32.png b/tools/configurator/res/flags/brazil_rio_de_janeiro_32.png new file mode 100644 index 00000000..c4f76d26 Binary files /dev/null and b/tools/configurator/res/flags/brazil_rio_de_janeiro_32.png differ diff --git a/tools/configurator/res/flags/brazil_rio_de_janeiro_32.png.import b/tools/configurator/res/flags/brazil_rio_de_janeiro_32.png.import new file mode 100644 index 00000000..06d8ecd5 --- /dev/null +++ b/tools/configurator/res/flags/brazil_rio_de_janeiro_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfunuxmo30ail" +path="res://.godot/imported/brazil_rio_de_janeiro_32.png-3005dc18d823818ac0077148ebe9ac6b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_rio_de_janeiro_32.png" +dest_files=["res://.godot/imported/brazil_rio_de_janeiro_32.png-3005dc18d823818ac0077148ebe9ac6b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_rio_grande_32.png b/tools/configurator/res/flags/brazil_rio_grande_32.png new file mode 100644 index 00000000..84707487 Binary files /dev/null and b/tools/configurator/res/flags/brazil_rio_grande_32.png differ diff --git a/tools/configurator/res/flags/brazil_rio_grande_32.png.import b/tools/configurator/res/flags/brazil_rio_grande_32.png.import new file mode 100644 index 00000000..267a5339 --- /dev/null +++ b/tools/configurator/res/flags/brazil_rio_grande_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5xjxrd4oa5sp" +path="res://.godot/imported/brazil_rio_grande_32.png-4a46349ea752e505e5fd849315638734.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_rio_grande_32.png" +dest_files=["res://.godot/imported/brazil_rio_grande_32.png-4a46349ea752e505e5fd849315638734.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_rio_grande_do_sul_32.png b/tools/configurator/res/flags/brazil_rio_grande_do_sul_32.png new file mode 100644 index 00000000..e60f1a68 Binary files /dev/null and b/tools/configurator/res/flags/brazil_rio_grande_do_sul_32.png differ diff --git a/tools/configurator/res/flags/brazil_rio_grande_do_sul_32.png.import b/tools/configurator/res/flags/brazil_rio_grande_do_sul_32.png.import new file mode 100644 index 00000000..6614abdc --- /dev/null +++ b/tools/configurator/res/flags/brazil_rio_grande_do_sul_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx2pqj004b8pq" +path="res://.godot/imported/brazil_rio_grande_do_sul_32.png-95fdfcec298d03c24cf63d404911a304.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_rio_grande_do_sul_32.png" +dest_files=["res://.godot/imported/brazil_rio_grande_do_sul_32.png-95fdfcec298d03c24cf63d404911a304.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_rondonia_32.png b/tools/configurator/res/flags/brazil_rondonia_32.png new file mode 100644 index 00000000..6f1336d3 Binary files /dev/null and b/tools/configurator/res/flags/brazil_rondonia_32.png differ diff --git a/tools/configurator/res/flags/brazil_rondonia_32.png.import b/tools/configurator/res/flags/brazil_rondonia_32.png.import new file mode 100644 index 00000000..e63a29f0 --- /dev/null +++ b/tools/configurator/res/flags/brazil_rondonia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qgnh78gomb40" +path="res://.godot/imported/brazil_rondonia_32.png-ed6445f053b2a8a11ecf89a20de12453.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_rondonia_32.png" +dest_files=["res://.godot/imported/brazil_rondonia_32.png-ed6445f053b2a8a11ecf89a20de12453.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_roraima_32.png b/tools/configurator/res/flags/brazil_roraima_32.png new file mode 100644 index 00000000..e51ec8a4 Binary files /dev/null and b/tools/configurator/res/flags/brazil_roraima_32.png differ diff --git a/tools/configurator/res/flags/brazil_roraima_32.png.import b/tools/configurator/res/flags/brazil_roraima_32.png.import new file mode 100644 index 00000000..bad41216 --- /dev/null +++ b/tools/configurator/res/flags/brazil_roraima_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b88yhydyfnhd8" +path="res://.godot/imported/brazil_roraima_32.png-a6fe3b400c6b0eef0cab067388cb2252.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_roraima_32.png" +dest_files=["res://.godot/imported/brazil_roraima_32.png-a6fe3b400c6b0eef0cab067388cb2252.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_santa_catarina_32.png b/tools/configurator/res/flags/brazil_santa_catarina_32.png new file mode 100644 index 00000000..34f8b4af Binary files /dev/null and b/tools/configurator/res/flags/brazil_santa_catarina_32.png differ diff --git a/tools/configurator/res/flags/brazil_santa_catarina_32.png.import b/tools/configurator/res/flags/brazil_santa_catarina_32.png.import new file mode 100644 index 00000000..6097bad5 --- /dev/null +++ b/tools/configurator/res/flags/brazil_santa_catarina_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ir7i351atrxp" +path="res://.godot/imported/brazil_santa_catarina_32.png-a9b36a78108235c4140572830d01f409.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_santa_catarina_32.png" +dest_files=["res://.godot/imported/brazil_santa_catarina_32.png-a9b36a78108235c4140572830d01f409.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_sao_paulo_32.png b/tools/configurator/res/flags/brazil_sao_paulo_32.png new file mode 100644 index 00000000..dcace060 Binary files /dev/null and b/tools/configurator/res/flags/brazil_sao_paulo_32.png differ diff --git a/tools/configurator/res/flags/brazil_sao_paulo_32.png.import b/tools/configurator/res/flags/brazil_sao_paulo_32.png.import new file mode 100644 index 00000000..5a252977 --- /dev/null +++ b/tools/configurator/res/flags/brazil_sao_paulo_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcysh2hjpqbmc" +path="res://.godot/imported/brazil_sao_paulo_32.png-5bde67c01c174c431dcc8fc2d16bcdd8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_sao_paulo_32.png" +dest_files=["res://.godot/imported/brazil_sao_paulo_32.png-5bde67c01c174c431dcc8fc2d16bcdd8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_sergipe_32.png b/tools/configurator/res/flags/brazil_sergipe_32.png new file mode 100644 index 00000000..84ef1059 Binary files /dev/null and b/tools/configurator/res/flags/brazil_sergipe_32.png differ diff --git a/tools/configurator/res/flags/brazil_sergipe_32.png.import b/tools/configurator/res/flags/brazil_sergipe_32.png.import new file mode 100644 index 00000000..14ff1038 --- /dev/null +++ b/tools/configurator/res/flags/brazil_sergipe_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6ouuvtk2wgj1" +path="res://.godot/imported/brazil_sergipe_32.png-f8d770eba3977423b89b3d0e2d952c13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_sergipe_32.png" +dest_files=["res://.godot/imported/brazil_sergipe_32.png-f8d770eba3977423b89b3d0e2d952c13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brazil_tocantins_32.png b/tools/configurator/res/flags/brazil_tocantins_32.png new file mode 100644 index 00000000..486e59ae Binary files /dev/null and b/tools/configurator/res/flags/brazil_tocantins_32.png differ diff --git a/tools/configurator/res/flags/brazil_tocantins_32.png.import b/tools/configurator/res/flags/brazil_tocantins_32.png.import new file mode 100644 index 00000000..c14ce805 --- /dev/null +++ b/tools/configurator/res/flags/brazil_tocantins_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cthrm1275tsmk" +path="res://.godot/imported/brazil_tocantins_32.png-88c8cf3ad166a1f22a0dd28be3e81677.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brazil_tocantins_32.png" +dest_files=["res://.godot/imported/brazil_tocantins_32.png-88c8cf3ad166a1f22a0dd28be3e81677.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/brunei_32.png b/tools/configurator/res/flags/brunei_32.png new file mode 100644 index 00000000..6fc4da1a Binary files /dev/null and b/tools/configurator/res/flags/brunei_32.png differ diff --git a/tools/configurator/res/flags/brunei_32.png.import b/tools/configurator/res/flags/brunei_32.png.import new file mode 100644 index 00000000..c41782c9 --- /dev/null +++ b/tools/configurator/res/flags/brunei_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djonrsyspblux" +path="res://.godot/imported/brunei_32.png-0bd8178714c7722dea5de6953967c9bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/brunei_32.png" +dest_files=["res://.godot/imported/brunei_32.png-0bd8178714c7722dea5de6953967c9bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/bulgaria_32.png b/tools/configurator/res/flags/bulgaria_32.png new file mode 100644 index 00000000..e20c8639 Binary files /dev/null and b/tools/configurator/res/flags/bulgaria_32.png differ diff --git a/tools/configurator/res/flags/bulgaria_32.png.import b/tools/configurator/res/flags/bulgaria_32.png.import new file mode 100644 index 00000000..0f38cf12 --- /dev/null +++ b/tools/configurator/res/flags/bulgaria_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqkxbrgsp18uc" +path="res://.godot/imported/bulgaria_32.png-a833acd6a467b3807fa6782711aa0970.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/bulgaria_32.png" +dest_files=["res://.godot/imported/bulgaria_32.png-a833acd6a467b3807fa6782711aa0970.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/burkina_faso_32.png b/tools/configurator/res/flags/burkina_faso_32.png new file mode 100644 index 00000000..fd1a455e Binary files /dev/null and b/tools/configurator/res/flags/burkina_faso_32.png differ diff --git a/tools/configurator/res/flags/burkina_faso_32.png.import b/tools/configurator/res/flags/burkina_faso_32.png.import new file mode 100644 index 00000000..180006a8 --- /dev/null +++ b/tools/configurator/res/flags/burkina_faso_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwie2soo3bg8k" +path="res://.godot/imported/burkina_faso_32.png-076840fe76394d149a5fabf66824e456.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/burkina_faso_32.png" +dest_files=["res://.godot/imported/burkina_faso_32.png-076840fe76394d149a5fabf66824e456.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/burundi_32.png b/tools/configurator/res/flags/burundi_32.png new file mode 100644 index 00000000..3d3eade7 Binary files /dev/null and b/tools/configurator/res/flags/burundi_32.png differ diff --git a/tools/configurator/res/flags/burundi_32.png.import b/tools/configurator/res/flags/burundi_32.png.import new file mode 100644 index 00000000..9658380a --- /dev/null +++ b/tools/configurator/res/flags/burundi_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clkw0o2423alm" +path="res://.godot/imported/burundi_32.png-fed7c6d4981b9b8aa2d72bfa68e9dfdd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/burundi_32.png" +dest_files=["res://.godot/imported/burundi_32.png-fed7c6d4981b9b8aa2d72bfa68e9dfdd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/cambodia_32.png b/tools/configurator/res/flags/cambodia_32.png new file mode 100644 index 00000000..300cae55 Binary files /dev/null and b/tools/configurator/res/flags/cambodia_32.png differ diff --git a/tools/configurator/res/flags/cambodia_32.png.import b/tools/configurator/res/flags/cambodia_32.png.import new file mode 100644 index 00000000..f9c5fb5d --- /dev/null +++ b/tools/configurator/res/flags/cambodia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bseb4tq3petsn" +path="res://.godot/imported/cambodia_32.png-797e42fa967c6287e1ce40a9ab36c7c6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/cambodia_32.png" +dest_files=["res://.godot/imported/cambodia_32.png-797e42fa967c6287e1ce40a9ab36c7c6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/cameroon_32.png b/tools/configurator/res/flags/cameroon_32.png new file mode 100644 index 00000000..99158abc Binary files /dev/null and b/tools/configurator/res/flags/cameroon_32.png differ diff --git a/tools/configurator/res/flags/cameroon_32.png.import b/tools/configurator/res/flags/cameroon_32.png.import new file mode 100644 index 00000000..189cc12c --- /dev/null +++ b/tools/configurator/res/flags/cameroon_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nj060cjf5bhs" +path="res://.godot/imported/cameroon_32.png-09bcb34974c302f0ae82446ce4ae20be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/cameroon_32.png" +dest_files=["res://.godot/imported/cameroon_32.png-09bcb34974c302f0ae82446ce4ae20be.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/cape_verde_32.png b/tools/configurator/res/flags/cape_verde_32.png new file mode 100644 index 00000000..4d77006a Binary files /dev/null and b/tools/configurator/res/flags/cape_verde_32.png differ diff --git a/tools/configurator/res/flags/cape_verde_32.png.import b/tools/configurator/res/flags/cape_verde_32.png.import new file mode 100644 index 00000000..0fd75314 --- /dev/null +++ b/tools/configurator/res/flags/cape_verde_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvt0bdhis4whf" +path="res://.godot/imported/cape_verde_32.png-00f526ab3cf65fce0206036573923630.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/cape_verde_32.png" +dest_files=["res://.godot/imported/cape_verde_32.png-00f526ab3cf65fce0206036573923630.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/central_african_republic_32.png b/tools/configurator/res/flags/central_african_republic_32.png new file mode 100644 index 00000000..76c7e655 Binary files /dev/null and b/tools/configurator/res/flags/central_african_republic_32.png differ diff --git a/tools/configurator/res/flags/central_african_republic_32.png.import b/tools/configurator/res/flags/central_african_republic_32.png.import new file mode 100644 index 00000000..96acecd1 --- /dev/null +++ b/tools/configurator/res/flags/central_african_republic_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de5a5lsn012k4" +path="res://.godot/imported/central_african_republic_32.png-4912690d1e955fdf0fd31d561e19cf13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/central_african_republic_32.png" +dest_files=["res://.godot/imported/central_african_republic_32.png-4912690d1e955fdf0fd31d561e19cf13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/chad_32.png b/tools/configurator/res/flags/chad_32.png new file mode 100644 index 00000000..d8a64956 Binary files /dev/null and b/tools/configurator/res/flags/chad_32.png differ diff --git a/tools/configurator/res/flags/chad_32.png.import b/tools/configurator/res/flags/chad_32.png.import new file mode 100644 index 00000000..f4823a70 --- /dev/null +++ b/tools/configurator/res/flags/chad_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bga3vvwlxebp" +path="res://.godot/imported/chad_32.png-d45d0be9a69510ee8c753e325fa20d17.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/chad_32.png" +dest_files=["res://.godot/imported/chad_32.png-d45d0be9a69510ee8c753e325fa20d17.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/chile_32.png b/tools/configurator/res/flags/chile_32.png new file mode 100644 index 00000000..dff7c510 Binary files /dev/null and b/tools/configurator/res/flags/chile_32.png differ diff --git a/tools/configurator/res/flags/chile_32.png.import b/tools/configurator/res/flags/chile_32.png.import new file mode 100644 index 00000000..3c474a3d --- /dev/null +++ b/tools/configurator/res/flags/chile_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bum8pwyxscn0o" +path="res://.godot/imported/chile_32.png-e2fbfd67fdbcf364bc1fd3e131ba3299.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/chile_32.png" +dest_files=["res://.godot/imported/chile_32.png-e2fbfd67fdbcf364bc1fd3e131ba3299.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/chile_arica_parinacota_32.png b/tools/configurator/res/flags/chile_arica_parinacota_32.png new file mode 100644 index 00000000..c2956359 Binary files /dev/null and b/tools/configurator/res/flags/chile_arica_parinacota_32.png differ diff --git a/tools/configurator/res/flags/chile_arica_parinacota_32.png.import b/tools/configurator/res/flags/chile_arica_parinacota_32.png.import new file mode 100644 index 00000000..dd7d6063 --- /dev/null +++ b/tools/configurator/res/flags/chile_arica_parinacota_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q4qh46lcn670" +path="res://.godot/imported/chile_arica_parinacota_32.png-cf4bb965f96a1f7bc282f8b525c0135a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/chile_arica_parinacota_32.png" +dest_files=["res://.godot/imported/chile_arica_parinacota_32.png-cf4bb965f96a1f7bc282f8b525c0135a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/chile_atacama_32.png b/tools/configurator/res/flags/chile_atacama_32.png new file mode 100644 index 00000000..e364d38e Binary files /dev/null and b/tools/configurator/res/flags/chile_atacama_32.png differ diff --git a/tools/configurator/res/flags/chile_atacama_32.png.import b/tools/configurator/res/flags/chile_atacama_32.png.import new file mode 100644 index 00000000..a51779ef --- /dev/null +++ b/tools/configurator/res/flags/chile_atacama_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca64y8fua8m2q" +path="res://.godot/imported/chile_atacama_32.png-e1ec014f476568e537137727950cb8b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/chile_atacama_32.png" +dest_files=["res://.godot/imported/chile_atacama_32.png-e1ec014f476568e537137727950cb8b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/chile_aysen_32.png b/tools/configurator/res/flags/chile_aysen_32.png new file mode 100644 index 00000000..f2611035 Binary files /dev/null and b/tools/configurator/res/flags/chile_aysen_32.png differ diff --git a/tools/configurator/res/flags/chile_aysen_32.png.import b/tools/configurator/res/flags/chile_aysen_32.png.import new file mode 100644 index 00000000..342c69d9 --- /dev/null +++ b/tools/configurator/res/flags/chile_aysen_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://neywa8co7a24" +path="res://.godot/imported/chile_aysen_32.png-a0e525fba4697438d29f20041751e054.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/chile_aysen_32.png" +dest_files=["res://.godot/imported/chile_aysen_32.png-a0e525fba4697438d29f20041751e054.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/chile_biobio_32.png b/tools/configurator/res/flags/chile_biobio_32.png new file mode 100644 index 00000000..82f964b9 Binary files /dev/null and b/tools/configurator/res/flags/chile_biobio_32.png differ diff --git a/tools/configurator/res/flags/chile_biobio_32.png.import b/tools/configurator/res/flags/chile_biobio_32.png.import new file mode 100644 index 00000000..2f6f0644 --- /dev/null +++ b/tools/configurator/res/flags/chile_biobio_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhu5efncra1lb" +path="res://.godot/imported/chile_biobio_32.png-8b7af450a924b737b8ca862f6390d78a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/chile_biobio_32.png" +dest_files=["res://.godot/imported/chile_biobio_32.png-8b7af450a924b737b8ca862f6390d78a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/chile_la_araucania_32.png b/tools/configurator/res/flags/chile_la_araucania_32.png new file mode 100644 index 00000000..e9fb2fcf Binary files /dev/null and b/tools/configurator/res/flags/chile_la_araucania_32.png differ diff --git a/tools/configurator/res/flags/chile_la_araucania_32.png.import b/tools/configurator/res/flags/chile_la_araucania_32.png.import new file mode 100644 index 00000000..ba280106 --- /dev/null +++ b/tools/configurator/res/flags/chile_la_araucania_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bd3oput546opl" +path="res://.godot/imported/chile_la_araucania_32.png-4514f1c287e829e9212e80ec6e701829.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/chile_la_araucania_32.png" +dest_files=["res://.godot/imported/chile_la_araucania_32.png-4514f1c287e829e9212e80ec6e701829.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/chile_los_rios_32.png b/tools/configurator/res/flags/chile_los_rios_32.png new file mode 100644 index 00000000..d33ed63c Binary files /dev/null and b/tools/configurator/res/flags/chile_los_rios_32.png differ diff --git a/tools/configurator/res/flags/chile_los_rios_32.png.import b/tools/configurator/res/flags/chile_los_rios_32.png.import new file mode 100644 index 00000000..ded33ce5 --- /dev/null +++ b/tools/configurator/res/flags/chile_los_rios_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6xn5hhxktj5y" +path="res://.godot/imported/chile_los_rios_32.png-c50dca74b72c7439a27cbb3a24220673.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/chile_los_rios_32.png" +dest_files=["res://.godot/imported/chile_los_rios_32.png-c50dca74b72c7439a27cbb3a24220673.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/chile_maule_32.png b/tools/configurator/res/flags/chile_maule_32.png new file mode 100644 index 00000000..a1488777 Binary files /dev/null and b/tools/configurator/res/flags/chile_maule_32.png differ diff --git a/tools/configurator/res/flags/chile_maule_32.png.import b/tools/configurator/res/flags/chile_maule_32.png.import new file mode 100644 index 00000000..aff08423 --- /dev/null +++ b/tools/configurator/res/flags/chile_maule_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsdjmwh5mo7oc" +path="res://.godot/imported/chile_maule_32.png-21c718a345ae206e4e42c775420aea71.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/chile_maule_32.png" +dest_files=["res://.godot/imported/chile_maule_32.png-21c718a345ae206e4e42c775420aea71.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/chile_nuble_32.png b/tools/configurator/res/flags/chile_nuble_32.png new file mode 100644 index 00000000..7319942a Binary files /dev/null and b/tools/configurator/res/flags/chile_nuble_32.png differ diff --git a/tools/configurator/res/flags/chile_nuble_32.png.import b/tools/configurator/res/flags/chile_nuble_32.png.import new file mode 100644 index 00000000..9301fe27 --- /dev/null +++ b/tools/configurator/res/flags/chile_nuble_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s8awru8rx7a1" +path="res://.godot/imported/chile_nuble_32.png-555fcfa245571601069d22ed0fc2e71f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/chile_nuble_32.png" +dest_files=["res://.godot/imported/chile_nuble_32.png-555fcfa245571601069d22ed0fc2e71f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/chile_tarapaca_32.png b/tools/configurator/res/flags/chile_tarapaca_32.png new file mode 100644 index 00000000..34897c3c Binary files /dev/null and b/tools/configurator/res/flags/chile_tarapaca_32.png differ diff --git a/tools/configurator/res/flags/chile_tarapaca_32.png.import b/tools/configurator/res/flags/chile_tarapaca_32.png.import new file mode 100644 index 00000000..e74ea39e --- /dev/null +++ b/tools/configurator/res/flags/chile_tarapaca_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gtjnng62srk8" +path="res://.godot/imported/chile_tarapaca_32.png-437d2b3f76cf4c854583c082f08e1c6f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/chile_tarapaca_32.png" +dest_files=["res://.godot/imported/chile_tarapaca_32.png-437d2b3f76cf4c854583c082f08e1c6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/chile_valparaiso_32.png b/tools/configurator/res/flags/chile_valparaiso_32.png new file mode 100644 index 00000000..d1d6af94 Binary files /dev/null and b/tools/configurator/res/flags/chile_valparaiso_32.png differ diff --git a/tools/configurator/res/flags/chile_valparaiso_32.png.import b/tools/configurator/res/flags/chile_valparaiso_32.png.import new file mode 100644 index 00000000..bb2c51ea --- /dev/null +++ b/tools/configurator/res/flags/chile_valparaiso_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqncqqa43sudv" +path="res://.godot/imported/chile_valparaiso_32.png-fe545c4a633613a42f4b0b1f1668e224.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/chile_valparaiso_32.png" +dest_files=["res://.godot/imported/chile_valparaiso_32.png-fe545c4a633613a42f4b0b1f1668e224.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/china_32.png b/tools/configurator/res/flags/china_32.png new file mode 100644 index 00000000..571b2fcd Binary files /dev/null and b/tools/configurator/res/flags/china_32.png differ diff --git a/tools/configurator/res/flags/china_32.png.import b/tools/configurator/res/flags/china_32.png.import new file mode 100644 index 00000000..b179d6c8 --- /dev/null +++ b/tools/configurator/res/flags/china_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbwhpqip43aei" +path="res://.godot/imported/china_32.png-191c982e959efc6916931327e158e299.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/china_32.png" +dest_files=["res://.godot/imported/china_32.png-191c982e959efc6916931327e158e299.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/china_hong_kong_32.png b/tools/configurator/res/flags/china_hong_kong_32.png new file mode 100644 index 00000000..217d1e0f Binary files /dev/null and b/tools/configurator/res/flags/china_hong_kong_32.png differ diff --git a/tools/configurator/res/flags/china_hong_kong_32.png.import b/tools/configurator/res/flags/china_hong_kong_32.png.import new file mode 100644 index 00000000..c58c56b5 --- /dev/null +++ b/tools/configurator/res/flags/china_hong_kong_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dklckr7tk4p3x" +path="res://.godot/imported/china_hong_kong_32.png-42c48a562088cd25ca2e22fe1bf5c522.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/china_hong_kong_32.png" +dest_files=["res://.godot/imported/china_hong_kong_32.png-42c48a562088cd25ca2e22fe1bf5c522.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/china_kinmen_32.png b/tools/configurator/res/flags/china_kinmen_32.png new file mode 100644 index 00000000..9e8e2c2b Binary files /dev/null and b/tools/configurator/res/flags/china_kinmen_32.png differ diff --git a/tools/configurator/res/flags/china_kinmen_32.png.import b/tools/configurator/res/flags/china_kinmen_32.png.import new file mode 100644 index 00000000..8747c7a9 --- /dev/null +++ b/tools/configurator/res/flags/china_kinmen_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cffpdwib05fj0" +path="res://.godot/imported/china_kinmen_32.png-fdea2068e59b2b1e87183cee5a45f6d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/china_kinmen_32.png" +dest_files=["res://.godot/imported/china_kinmen_32.png-fdea2068e59b2b1e87183cee5a45f6d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/china_lienchiang_32.png b/tools/configurator/res/flags/china_lienchiang_32.png new file mode 100644 index 00000000..d0577e77 Binary files /dev/null and b/tools/configurator/res/flags/china_lienchiang_32.png differ diff --git a/tools/configurator/res/flags/china_lienchiang_32.png.import b/tools/configurator/res/flags/china_lienchiang_32.png.import new file mode 100644 index 00000000..602ea7b0 --- /dev/null +++ b/tools/configurator/res/flags/china_lienchiang_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sw0jus6qdenq" +path="res://.godot/imported/china_lienchiang_32.png-d78f148bedf7d00b8eef3b39b210a0e4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/china_lienchiang_32.png" +dest_files=["res://.godot/imported/china_lienchiang_32.png-d78f148bedf7d00b8eef3b39b210a0e4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/china_macau_32.png b/tools/configurator/res/flags/china_macau_32.png new file mode 100644 index 00000000..97474d93 Binary files /dev/null and b/tools/configurator/res/flags/china_macau_32.png differ diff --git a/tools/configurator/res/flags/china_macau_32.png.import b/tools/configurator/res/flags/china_macau_32.png.import new file mode 100644 index 00000000..1d94e734 --- /dev/null +++ b/tools/configurator/res/flags/china_macau_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt5mqqmslb7qp" +path="res://.godot/imported/china_macau_32.png-9d99e4d391808985e76d59fa78bd186b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/china_macau_32.png" +dest_files=["res://.godot/imported/china_macau_32.png-9d99e4d391808985e76d59fa78bd186b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/china_taiwan_32.png b/tools/configurator/res/flags/china_taiwan_32.png new file mode 100644 index 00000000..1cc8b1be Binary files /dev/null and b/tools/configurator/res/flags/china_taiwan_32.png differ diff --git a/tools/configurator/res/flags/china_taiwan_32.png.import b/tools/configurator/res/flags/china_taiwan_32.png.import new file mode 100644 index 00000000..1b8eb98c --- /dev/null +++ b/tools/configurator/res/flags/china_taiwan_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bobslrxm3lljc" +path="res://.godot/imported/china_taiwan_32.png-8c9d91f5e2f8ef07f86d04d4427f0b53.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/china_taiwan_32.png" +dest_files=["res://.godot/imported/china_taiwan_32.png-8c9d91f5e2f8ef07f86d04d4427f0b53.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/china_tibet_32.png b/tools/configurator/res/flags/china_tibet_32.png new file mode 100644 index 00000000..b3f65286 Binary files /dev/null and b/tools/configurator/res/flags/china_tibet_32.png differ diff --git a/tools/configurator/res/flags/china_tibet_32.png.import b/tools/configurator/res/flags/china_tibet_32.png.import new file mode 100644 index 00000000..467a7b98 --- /dev/null +++ b/tools/configurator/res/flags/china_tibet_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7qbigeo66djj" +path="res://.godot/imported/china_tibet_32.png-31dc453cccebc0bcc9755a785af18e0c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/china_tibet_32.png" +dest_files=["res://.godot/imported/china_tibet_32.png-31dc453cccebc0bcc9755a785af18e0c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_32.png b/tools/configurator/res/flags/croatia_32.png new file mode 100644 index 00000000..74657ae9 Binary files /dev/null and b/tools/configurator/res/flags/croatia_32.png differ diff --git a/tools/configurator/res/flags/croatia_32.png.import b/tools/configurator/res/flags/croatia_32.png.import new file mode 100644 index 00000000..0d5d27b2 --- /dev/null +++ b/tools/configurator/res/flags/croatia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcue4e2j6ata" +path="res://.godot/imported/croatia_32.png-7c2feca9e20f02615440ae985717513f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_32.png" +dest_files=["res://.godot/imported/croatia_32.png-7c2feca9e20f02615440ae985717513f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_bjelovar_bilogora_32.png b/tools/configurator/res/flags/croatia_bjelovar_bilogora_32.png new file mode 100644 index 00000000..af9ad1be Binary files /dev/null and b/tools/configurator/res/flags/croatia_bjelovar_bilogora_32.png differ diff --git a/tools/configurator/res/flags/croatia_bjelovar_bilogora_32.png.import b/tools/configurator/res/flags/croatia_bjelovar_bilogora_32.png.import new file mode 100644 index 00000000..2ed331a4 --- /dev/null +++ b/tools/configurator/res/flags/croatia_bjelovar_bilogora_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1y5rqdum78bl" +path="res://.godot/imported/croatia_bjelovar_bilogora_32.png-e204134b1088ed2a137546a169deb63e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_bjelovar_bilogora_32.png" +dest_files=["res://.godot/imported/croatia_bjelovar_bilogora_32.png-e204134b1088ed2a137546a169deb63e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_brod_posavina_32.png b/tools/configurator/res/flags/croatia_brod_posavina_32.png new file mode 100644 index 00000000..4ab06152 Binary files /dev/null and b/tools/configurator/res/flags/croatia_brod_posavina_32.png differ diff --git a/tools/configurator/res/flags/croatia_brod_posavina_32.png.import b/tools/configurator/res/flags/croatia_brod_posavina_32.png.import new file mode 100644 index 00000000..03f63052 --- /dev/null +++ b/tools/configurator/res/flags/croatia_brod_posavina_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqjxwr0os0wlu" +path="res://.godot/imported/croatia_brod_posavina_32.png-82a5a25922cd24f9ee097e25a3f0dfb1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_brod_posavina_32.png" +dest_files=["res://.godot/imported/croatia_brod_posavina_32.png-82a5a25922cd24f9ee097e25a3f0dfb1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_dubrovnik_neretva_32.png b/tools/configurator/res/flags/croatia_dubrovnik_neretva_32.png new file mode 100644 index 00000000..c495dc1e Binary files /dev/null and b/tools/configurator/res/flags/croatia_dubrovnik_neretva_32.png differ diff --git a/tools/configurator/res/flags/croatia_dubrovnik_neretva_32.png.import b/tools/configurator/res/flags/croatia_dubrovnik_neretva_32.png.import new file mode 100644 index 00000000..8187585b --- /dev/null +++ b/tools/configurator/res/flags/croatia_dubrovnik_neretva_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bd5w5r4rj7vb6" +path="res://.godot/imported/croatia_dubrovnik_neretva_32.png-15cbcf570c21bbcc21ddf8c6c89c0f4a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_dubrovnik_neretva_32.png" +dest_files=["res://.godot/imported/croatia_dubrovnik_neretva_32.png-15cbcf570c21bbcc21ddf8c6c89c0f4a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_istria_32.png b/tools/configurator/res/flags/croatia_istria_32.png new file mode 100644 index 00000000..1adcf39c Binary files /dev/null and b/tools/configurator/res/flags/croatia_istria_32.png differ diff --git a/tools/configurator/res/flags/croatia_istria_32.png.import b/tools/configurator/res/flags/croatia_istria_32.png.import new file mode 100644 index 00000000..3674ebe2 --- /dev/null +++ b/tools/configurator/res/flags/croatia_istria_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsl6i8oi3qoho" +path="res://.godot/imported/croatia_istria_32.png-8e4d3c3d21dc203a1fd591b28207eb85.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_istria_32.png" +dest_files=["res://.godot/imported/croatia_istria_32.png-8e4d3c3d21dc203a1fd591b28207eb85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_karlovac_32.png b/tools/configurator/res/flags/croatia_karlovac_32.png new file mode 100644 index 00000000..4868564c Binary files /dev/null and b/tools/configurator/res/flags/croatia_karlovac_32.png differ diff --git a/tools/configurator/res/flags/croatia_karlovac_32.png.import b/tools/configurator/res/flags/croatia_karlovac_32.png.import new file mode 100644 index 00000000..7b25b68c --- /dev/null +++ b/tools/configurator/res/flags/croatia_karlovac_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd58fkuk5f70m" +path="res://.godot/imported/croatia_karlovac_32.png-ad2644b4e9beffa8156af26271993c90.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_karlovac_32.png" +dest_files=["res://.godot/imported/croatia_karlovac_32.png-ad2644b4e9beffa8156af26271993c90.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_koprivnica_krizevci_32.png b/tools/configurator/res/flags/croatia_koprivnica_krizevci_32.png new file mode 100644 index 00000000..342dd230 Binary files /dev/null and b/tools/configurator/res/flags/croatia_koprivnica_krizevci_32.png differ diff --git a/tools/configurator/res/flags/croatia_koprivnica_krizevci_32.png.import b/tools/configurator/res/flags/croatia_koprivnica_krizevci_32.png.import new file mode 100644 index 00000000..2ec72c43 --- /dev/null +++ b/tools/configurator/res/flags/croatia_koprivnica_krizevci_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4old1l58eth6" +path="res://.godot/imported/croatia_koprivnica_krizevci_32.png-3e2742b6697c392739214a305adc73cf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_koprivnica_krizevci_32.png" +dest_files=["res://.godot/imported/croatia_koprivnica_krizevci_32.png-3e2742b6697c392739214a305adc73cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_krapina_zagorje_32.png b/tools/configurator/res/flags/croatia_krapina_zagorje_32.png new file mode 100644 index 00000000..2c7a15fd Binary files /dev/null and b/tools/configurator/res/flags/croatia_krapina_zagorje_32.png differ diff --git a/tools/configurator/res/flags/croatia_krapina_zagorje_32.png.import b/tools/configurator/res/flags/croatia_krapina_zagorje_32.png.import new file mode 100644 index 00000000..52e06717 --- /dev/null +++ b/tools/configurator/res/flags/croatia_krapina_zagorje_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tli6nimcab3e" +path="res://.godot/imported/croatia_krapina_zagorje_32.png-cb81544ba07b7701021b0e099a08c989.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_krapina_zagorje_32.png" +dest_files=["res://.godot/imported/croatia_krapina_zagorje_32.png-cb81544ba07b7701021b0e099a08c989.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_lika_senj_32.png b/tools/configurator/res/flags/croatia_lika_senj_32.png new file mode 100644 index 00000000..08764e99 Binary files /dev/null and b/tools/configurator/res/flags/croatia_lika_senj_32.png differ diff --git a/tools/configurator/res/flags/croatia_lika_senj_32.png.import b/tools/configurator/res/flags/croatia_lika_senj_32.png.import new file mode 100644 index 00000000..373eaa42 --- /dev/null +++ b/tools/configurator/res/flags/croatia_lika_senj_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://co6vx3atufpkj" +path="res://.godot/imported/croatia_lika_senj_32.png-6d4be9a63e7c200ae146f54977cdcdae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_lika_senj_32.png" +dest_files=["res://.godot/imported/croatia_lika_senj_32.png-6d4be9a63e7c200ae146f54977cdcdae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_medimuje_32.png b/tools/configurator/res/flags/croatia_medimuje_32.png new file mode 100644 index 00000000..d68998cb Binary files /dev/null and b/tools/configurator/res/flags/croatia_medimuje_32.png differ diff --git a/tools/configurator/res/flags/croatia_medimuje_32.png.import b/tools/configurator/res/flags/croatia_medimuje_32.png.import new file mode 100644 index 00000000..e7310643 --- /dev/null +++ b/tools/configurator/res/flags/croatia_medimuje_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kus5s1t08ivs" +path="res://.godot/imported/croatia_medimuje_32.png-7511957d2bd96fa8ed7e0a0566d1b114.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_medimuje_32.png" +dest_files=["res://.godot/imported/croatia_medimuje_32.png-7511957d2bd96fa8ed7e0a0566d1b114.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_osijek_baranja_32.png b/tools/configurator/res/flags/croatia_osijek_baranja_32.png new file mode 100644 index 00000000..9ece3521 Binary files /dev/null and b/tools/configurator/res/flags/croatia_osijek_baranja_32.png differ diff --git a/tools/configurator/res/flags/croatia_osijek_baranja_32.png.import b/tools/configurator/res/flags/croatia_osijek_baranja_32.png.import new file mode 100644 index 00000000..be5dcc6a --- /dev/null +++ b/tools/configurator/res/flags/croatia_osijek_baranja_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vsmfv602s31m" +path="res://.godot/imported/croatia_osijek_baranja_32.png-0199113b7aeae70af069943750c3abb7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_osijek_baranja_32.png" +dest_files=["res://.godot/imported/croatia_osijek_baranja_32.png-0199113b7aeae70af069943750c3abb7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_pozega_slavonia_32.png b/tools/configurator/res/flags/croatia_pozega_slavonia_32.png new file mode 100644 index 00000000..4a5c2ed6 Binary files /dev/null and b/tools/configurator/res/flags/croatia_pozega_slavonia_32.png differ diff --git a/tools/configurator/res/flags/croatia_pozega_slavonia_32.png.import b/tools/configurator/res/flags/croatia_pozega_slavonia_32.png.import new file mode 100644 index 00000000..c53823bf --- /dev/null +++ b/tools/configurator/res/flags/croatia_pozega_slavonia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0gegfy3d8bht" +path="res://.godot/imported/croatia_pozega_slavonia_32.png-74944e3e002efc93fb0b022700b08c4a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_pozega_slavonia_32.png" +dest_files=["res://.godot/imported/croatia_pozega_slavonia_32.png-74944e3e002efc93fb0b022700b08c4a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_primorje_gorskikotar_32.png b/tools/configurator/res/flags/croatia_primorje_gorskikotar_32.png new file mode 100644 index 00000000..db4c1932 Binary files /dev/null and b/tools/configurator/res/flags/croatia_primorje_gorskikotar_32.png differ diff --git a/tools/configurator/res/flags/croatia_primorje_gorskikotar_32.png.import b/tools/configurator/res/flags/croatia_primorje_gorskikotar_32.png.import new file mode 100644 index 00000000..9875311d --- /dev/null +++ b/tools/configurator/res/flags/croatia_primorje_gorskikotar_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0jbpb3e0eu0w" +path="res://.godot/imported/croatia_primorje_gorskikotar_32.png-61b91fd99c8d378f9678776756a91c29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_primorje_gorskikotar_32.png" +dest_files=["res://.godot/imported/croatia_primorje_gorskikotar_32.png-61b91fd99c8d378f9678776756a91c29.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_sibenik_knin_32.png b/tools/configurator/res/flags/croatia_sibenik_knin_32.png new file mode 100644 index 00000000..9eb20acb Binary files /dev/null and b/tools/configurator/res/flags/croatia_sibenik_knin_32.png differ diff --git a/tools/configurator/res/flags/croatia_sibenik_knin_32.png.import b/tools/configurator/res/flags/croatia_sibenik_knin_32.png.import new file mode 100644 index 00000000..3ee2298a --- /dev/null +++ b/tools/configurator/res/flags/croatia_sibenik_knin_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyf6ism4ngl53" +path="res://.godot/imported/croatia_sibenik_knin_32.png-9a9d09e5b2195de79e412119874e2395.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_sibenik_knin_32.png" +dest_files=["res://.godot/imported/croatia_sibenik_knin_32.png-9a9d09e5b2195de79e412119874e2395.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_sisak_moslavina_32.png b/tools/configurator/res/flags/croatia_sisak_moslavina_32.png new file mode 100644 index 00000000..375f1782 Binary files /dev/null and b/tools/configurator/res/flags/croatia_sisak_moslavina_32.png differ diff --git a/tools/configurator/res/flags/croatia_sisak_moslavina_32.png.import b/tools/configurator/res/flags/croatia_sisak_moslavina_32.png.import new file mode 100644 index 00000000..1ea6f80b --- /dev/null +++ b/tools/configurator/res/flags/croatia_sisak_moslavina_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj62o2o3ja8gm" +path="res://.godot/imported/croatia_sisak_moslavina_32.png-a250bff465d3e748154ce44dd84dea0c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_sisak_moslavina_32.png" +dest_files=["res://.godot/imported/croatia_sisak_moslavina_32.png-a250bff465d3e748154ce44dd84dea0c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_split_dalmatia_32.png b/tools/configurator/res/flags/croatia_split_dalmatia_32.png new file mode 100644 index 00000000..cfee51a3 Binary files /dev/null and b/tools/configurator/res/flags/croatia_split_dalmatia_32.png differ diff --git a/tools/configurator/res/flags/croatia_split_dalmatia_32.png.import b/tools/configurator/res/flags/croatia_split_dalmatia_32.png.import new file mode 100644 index 00000000..ea47f68d --- /dev/null +++ b/tools/configurator/res/flags/croatia_split_dalmatia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2tduc8108fxv" +path="res://.godot/imported/croatia_split_dalmatia_32.png-331590e5744c6dc39c732aa69aa5d59e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_split_dalmatia_32.png" +dest_files=["res://.godot/imported/croatia_split_dalmatia_32.png-331590e5744c6dc39c732aa69aa5d59e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_varazdin_32.png b/tools/configurator/res/flags/croatia_varazdin_32.png new file mode 100644 index 00000000..116d4c8d Binary files /dev/null and b/tools/configurator/res/flags/croatia_varazdin_32.png differ diff --git a/tools/configurator/res/flags/croatia_varazdin_32.png.import b/tools/configurator/res/flags/croatia_varazdin_32.png.import new file mode 100644 index 00000000..708c803e --- /dev/null +++ b/tools/configurator/res/flags/croatia_varazdin_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duh6v3mplne1m" +path="res://.godot/imported/croatia_varazdin_32.png-822d8c262b487325bc29752aaa8e2c41.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_varazdin_32.png" +dest_files=["res://.godot/imported/croatia_varazdin_32.png-822d8c262b487325bc29752aaa8e2c41.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_virovitica_podravina_32.png b/tools/configurator/res/flags/croatia_virovitica_podravina_32.png new file mode 100644 index 00000000..ad908a3f Binary files /dev/null and b/tools/configurator/res/flags/croatia_virovitica_podravina_32.png differ diff --git a/tools/configurator/res/flags/croatia_virovitica_podravina_32.png.import b/tools/configurator/res/flags/croatia_virovitica_podravina_32.png.import new file mode 100644 index 00000000..1cb2a12e --- /dev/null +++ b/tools/configurator/res/flags/croatia_virovitica_podravina_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ioxd5ajqlfba" +path="res://.godot/imported/croatia_virovitica_podravina_32.png-ae314aa10a57b0710fd412734212ae88.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_virovitica_podravina_32.png" +dest_files=["res://.godot/imported/croatia_virovitica_podravina_32.png-ae314aa10a57b0710fd412734212ae88.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_vukovar_srijem_32.png b/tools/configurator/res/flags/croatia_vukovar_srijem_32.png new file mode 100644 index 00000000..2ed2547f Binary files /dev/null and b/tools/configurator/res/flags/croatia_vukovar_srijem_32.png differ diff --git a/tools/configurator/res/flags/croatia_vukovar_srijem_32.png.import b/tools/configurator/res/flags/croatia_vukovar_srijem_32.png.import new file mode 100644 index 00000000..b67aa906 --- /dev/null +++ b/tools/configurator/res/flags/croatia_vukovar_srijem_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmx0uckxskf2a" +path="res://.godot/imported/croatia_vukovar_srijem_32.png-095e805e599c904c1b487b6e43331faf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_vukovar_srijem_32.png" +dest_files=["res://.godot/imported/croatia_vukovar_srijem_32.png-095e805e599c904c1b487b6e43331faf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_zadar_32.png b/tools/configurator/res/flags/croatia_zadar_32.png new file mode 100644 index 00000000..7eac775a Binary files /dev/null and b/tools/configurator/res/flags/croatia_zadar_32.png differ diff --git a/tools/configurator/res/flags/croatia_zadar_32.png.import b/tools/configurator/res/flags/croatia_zadar_32.png.import new file mode 100644 index 00000000..f1de90e2 --- /dev/null +++ b/tools/configurator/res/flags/croatia_zadar_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqq3553pro8e" +path="res://.godot/imported/croatia_zadar_32.png-74ed85f6789396435b73c9f5f06fa38a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_zadar_32.png" +dest_files=["res://.godot/imported/croatia_zadar_32.png-74ed85f6789396435b73c9f5f06fa38a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_zagreb_32.png b/tools/configurator/res/flags/croatia_zagreb_32.png new file mode 100644 index 00000000..b34a8237 Binary files /dev/null and b/tools/configurator/res/flags/croatia_zagreb_32.png differ diff --git a/tools/configurator/res/flags/croatia_zagreb_32.png.import b/tools/configurator/res/flags/croatia_zagreb_32.png.import new file mode 100644 index 00000000..61474359 --- /dev/null +++ b/tools/configurator/res/flags/croatia_zagreb_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do0ye24p62ks0" +path="res://.godot/imported/croatia_zagreb_32.png-4049dfab7a3678f63f8213ddf9bdb11b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_zagreb_32.png" +dest_files=["res://.godot/imported/croatia_zagreb_32.png-4049dfab7a3678f63f8213ddf9bdb11b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/croatia_zagreb_city_32.png b/tools/configurator/res/flags/croatia_zagreb_city_32.png new file mode 100644 index 00000000..8d05b8e3 Binary files /dev/null and b/tools/configurator/res/flags/croatia_zagreb_city_32.png differ diff --git a/tools/configurator/res/flags/croatia_zagreb_city_32.png.import b/tools/configurator/res/flags/croatia_zagreb_city_32.png.import new file mode 100644 index 00000000..c475fb95 --- /dev/null +++ b/tools/configurator/res/flags/croatia_zagreb_city_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxywqkei6i1xs" +path="res://.godot/imported/croatia_zagreb_city_32.png-40dcb0cb20b320ab3a7ef7f2c83f87f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/croatia_zagreb_city_32.png" +dest_files=["res://.godot/imported/croatia_zagreb_city_32.png-40dcb0cb20b320ab3a7ef7f2c83f87f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/cyprus_32.png b/tools/configurator/res/flags/cyprus_32.png new file mode 100644 index 00000000..7234bce3 Binary files /dev/null and b/tools/configurator/res/flags/cyprus_32.png differ diff --git a/tools/configurator/res/flags/cyprus_32.png.import b/tools/configurator/res/flags/cyprus_32.png.import new file mode 100644 index 00000000..ce4e8fd2 --- /dev/null +++ b/tools/configurator/res/flags/cyprus_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmbq4fkpxv6vg" +path="res://.godot/imported/cyprus_32.png-a87881c5aa49e3149b8c5500df486c37.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/cyprus_32.png" +dest_files=["res://.godot/imported/cyprus_32.png-a87881c5aa49e3149b8c5500df486c37.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/czech_32.png b/tools/configurator/res/flags/czech_32.png new file mode 100644 index 00000000..c5f94976 Binary files /dev/null and b/tools/configurator/res/flags/czech_32.png differ diff --git a/tools/configurator/res/flags/czech_32.png.import b/tools/configurator/res/flags/czech_32.png.import new file mode 100644 index 00000000..29c2a0ea --- /dev/null +++ b/tools/configurator/res/flags/czech_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmfmies560b2t" +path="res://.godot/imported/czech_32.png-a23e9af7aa9b8e8165bfb05f67992ddf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/czech_32.png" +dest_files=["res://.godot/imported/czech_32.png-a23e9af7aa9b8e8165bfb05f67992ddf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/czech_central_bohemian_32.png b/tools/configurator/res/flags/czech_central_bohemian_32.png new file mode 100644 index 00000000..d47d6adf Binary files /dev/null and b/tools/configurator/res/flags/czech_central_bohemian_32.png differ diff --git a/tools/configurator/res/flags/czech_central_bohemian_32.png.import b/tools/configurator/res/flags/czech_central_bohemian_32.png.import new file mode 100644 index 00000000..c56b26d1 --- /dev/null +++ b/tools/configurator/res/flags/czech_central_bohemian_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cisdrt2gjrocv" +path="res://.godot/imported/czech_central_bohemian_32.png-51aaafc52b60ba4e25955f6e97de7330.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/czech_central_bohemian_32.png" +dest_files=["res://.godot/imported/czech_central_bohemian_32.png-51aaafc52b60ba4e25955f6e97de7330.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/czech_hradec_kralove_32.png b/tools/configurator/res/flags/czech_hradec_kralove_32.png new file mode 100644 index 00000000..9ab244d1 Binary files /dev/null and b/tools/configurator/res/flags/czech_hradec_kralove_32.png differ diff --git a/tools/configurator/res/flags/czech_hradec_kralove_32.png.import b/tools/configurator/res/flags/czech_hradec_kralove_32.png.import new file mode 100644 index 00000000..15658ff2 --- /dev/null +++ b/tools/configurator/res/flags/czech_hradec_kralove_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfagre4xtjd6l" +path="res://.godot/imported/czech_hradec_kralove_32.png-ba8cef93d9a3cb0e60ff772f02dc19aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/czech_hradec_kralove_32.png" +dest_files=["res://.godot/imported/czech_hradec_kralove_32.png-ba8cef93d9a3cb0e60ff772f02dc19aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/czech_karlovy_vary_32.png b/tools/configurator/res/flags/czech_karlovy_vary_32.png new file mode 100644 index 00000000..56cc21a4 Binary files /dev/null and b/tools/configurator/res/flags/czech_karlovy_vary_32.png differ diff --git a/tools/configurator/res/flags/czech_karlovy_vary_32.png.import b/tools/configurator/res/flags/czech_karlovy_vary_32.png.import new file mode 100644 index 00000000..f1bd1aa6 --- /dev/null +++ b/tools/configurator/res/flags/czech_karlovy_vary_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ox5o63s0tmuh" +path="res://.godot/imported/czech_karlovy_vary_32.png-d76e8a639647d4f50a7a09681c16b457.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/czech_karlovy_vary_32.png" +dest_files=["res://.godot/imported/czech_karlovy_vary_32.png-d76e8a639647d4f50a7a09681c16b457.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/czech_liberec_32.png b/tools/configurator/res/flags/czech_liberec_32.png new file mode 100644 index 00000000..d23ee806 Binary files /dev/null and b/tools/configurator/res/flags/czech_liberec_32.png differ diff --git a/tools/configurator/res/flags/czech_liberec_32.png.import b/tools/configurator/res/flags/czech_liberec_32.png.import new file mode 100644 index 00000000..4062d4fd --- /dev/null +++ b/tools/configurator/res/flags/czech_liberec_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6ideb31eky3b" +path="res://.godot/imported/czech_liberec_32.png-22b123d7dac59be38c9fe583a54c87aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/czech_liberec_32.png" +dest_files=["res://.godot/imported/czech_liberec_32.png-22b123d7dac59be38c9fe583a54c87aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/czech_moravian_silesian_32.png b/tools/configurator/res/flags/czech_moravian_silesian_32.png new file mode 100644 index 00000000..d8541018 Binary files /dev/null and b/tools/configurator/res/flags/czech_moravian_silesian_32.png differ diff --git a/tools/configurator/res/flags/czech_moravian_silesian_32.png.import b/tools/configurator/res/flags/czech_moravian_silesian_32.png.import new file mode 100644 index 00000000..260caf54 --- /dev/null +++ b/tools/configurator/res/flags/czech_moravian_silesian_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crf2l524iwcus" +path="res://.godot/imported/czech_moravian_silesian_32.png-3e0431d54efa474f29f31fe53a961aab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/czech_moravian_silesian_32.png" +dest_files=["res://.godot/imported/czech_moravian_silesian_32.png-3e0431d54efa474f29f31fe53a961aab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/czech_olomouc_32.png b/tools/configurator/res/flags/czech_olomouc_32.png new file mode 100644 index 00000000..e5bbdd49 Binary files /dev/null and b/tools/configurator/res/flags/czech_olomouc_32.png differ diff --git a/tools/configurator/res/flags/czech_olomouc_32.png.import b/tools/configurator/res/flags/czech_olomouc_32.png.import new file mode 100644 index 00000000..da3b097c --- /dev/null +++ b/tools/configurator/res/flags/czech_olomouc_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bldxhidw3ew0v" +path="res://.godot/imported/czech_olomouc_32.png-8cf7a92cf69a4831414e01d072d4f508.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/czech_olomouc_32.png" +dest_files=["res://.godot/imported/czech_olomouc_32.png-8cf7a92cf69a4831414e01d072d4f508.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/czech_pardubic_32.png b/tools/configurator/res/flags/czech_pardubic_32.png new file mode 100644 index 00000000..87630a99 Binary files /dev/null and b/tools/configurator/res/flags/czech_pardubic_32.png differ diff --git a/tools/configurator/res/flags/czech_pardubic_32.png.import b/tools/configurator/res/flags/czech_pardubic_32.png.import new file mode 100644 index 00000000..c35f02d7 --- /dev/null +++ b/tools/configurator/res/flags/czech_pardubic_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdjtafaxo06g0" +path="res://.godot/imported/czech_pardubic_32.png-e968de523e05cd90963978308774321b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/czech_pardubic_32.png" +dest_files=["res://.godot/imported/czech_pardubic_32.png-e968de523e05cd90963978308774321b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/czech_plzen_32.png b/tools/configurator/res/flags/czech_plzen_32.png new file mode 100644 index 00000000..77433592 Binary files /dev/null and b/tools/configurator/res/flags/czech_plzen_32.png differ diff --git a/tools/configurator/res/flags/czech_plzen_32.png.import b/tools/configurator/res/flags/czech_plzen_32.png.import new file mode 100644 index 00000000..2a7d633a --- /dev/null +++ b/tools/configurator/res/flags/czech_plzen_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgssmuncyhr61" +path="res://.godot/imported/czech_plzen_32.png-e3ec5afc90d1bc93a15648ed22bdf6b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/czech_plzen_32.png" +dest_files=["res://.godot/imported/czech_plzen_32.png-e3ec5afc90d1bc93a15648ed22bdf6b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/czech_prague_32.png b/tools/configurator/res/flags/czech_prague_32.png new file mode 100644 index 00000000..598d1f14 Binary files /dev/null and b/tools/configurator/res/flags/czech_prague_32.png differ diff --git a/tools/configurator/res/flags/czech_prague_32.png.import b/tools/configurator/res/flags/czech_prague_32.png.import new file mode 100644 index 00000000..968c5098 --- /dev/null +++ b/tools/configurator/res/flags/czech_prague_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg06ybygd2prh" +path="res://.godot/imported/czech_prague_32.png-fdaf8eec1c90e26704f8673c9704ce30.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/czech_prague_32.png" +dest_files=["res://.godot/imported/czech_prague_32.png-fdaf8eec1c90e26704f8673c9704ce30.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/czech_south_bohemian_32.png b/tools/configurator/res/flags/czech_south_bohemian_32.png new file mode 100644 index 00000000..745c6463 Binary files /dev/null and b/tools/configurator/res/flags/czech_south_bohemian_32.png differ diff --git a/tools/configurator/res/flags/czech_south_bohemian_32.png.import b/tools/configurator/res/flags/czech_south_bohemian_32.png.import new file mode 100644 index 00000000..6968e2e2 --- /dev/null +++ b/tools/configurator/res/flags/czech_south_bohemian_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j2j26fpklwch" +path="res://.godot/imported/czech_south_bohemian_32.png-8d96fe1186bbad066e0fb8d96774a31a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/czech_south_bohemian_32.png" +dest_files=["res://.godot/imported/czech_south_bohemian_32.png-8d96fe1186bbad066e0fb8d96774a31a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/czech_south_moravian_32.png b/tools/configurator/res/flags/czech_south_moravian_32.png new file mode 100644 index 00000000..2546e623 Binary files /dev/null and b/tools/configurator/res/flags/czech_south_moravian_32.png differ diff --git a/tools/configurator/res/flags/czech_south_moravian_32.png.import b/tools/configurator/res/flags/czech_south_moravian_32.png.import new file mode 100644 index 00000000..ffea87da --- /dev/null +++ b/tools/configurator/res/flags/czech_south_moravian_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du7v1wy7xr7vs" +path="res://.godot/imported/czech_south_moravian_32.png-e2b216b0407d675f78dd3a25e8e184e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/czech_south_moravian_32.png" +dest_files=["res://.godot/imported/czech_south_moravian_32.png-e2b216b0407d675f78dd3a25e8e184e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/czech_usti_nad_labem_32.png b/tools/configurator/res/flags/czech_usti_nad_labem_32.png new file mode 100644 index 00000000..be20e397 Binary files /dev/null and b/tools/configurator/res/flags/czech_usti_nad_labem_32.png differ diff --git a/tools/configurator/res/flags/czech_usti_nad_labem_32.png.import b/tools/configurator/res/flags/czech_usti_nad_labem_32.png.import new file mode 100644 index 00000000..5b503a7f --- /dev/null +++ b/tools/configurator/res/flags/czech_usti_nad_labem_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtjy61yefhvkr" +path="res://.godot/imported/czech_usti_nad_labem_32.png-be80314e6f26e2d1a813c0fa3a8882da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/czech_usti_nad_labem_32.png" +dest_files=["res://.godot/imported/czech_usti_nad_labem_32.png-be80314e6f26e2d1a813c0fa3a8882da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/czech_vysocina_32.png b/tools/configurator/res/flags/czech_vysocina_32.png new file mode 100644 index 00000000..169d3f71 Binary files /dev/null and b/tools/configurator/res/flags/czech_vysocina_32.png differ diff --git a/tools/configurator/res/flags/czech_vysocina_32.png.import b/tools/configurator/res/flags/czech_vysocina_32.png.import new file mode 100644 index 00000000..528de3c6 --- /dev/null +++ b/tools/configurator/res/flags/czech_vysocina_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c608abgb6223p" +path="res://.godot/imported/czech_vysocina_32.png-a53465f11ba7ec8f8d7020460d6c26e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/czech_vysocina_32.png" +dest_files=["res://.godot/imported/czech_vysocina_32.png-a53465f11ba7ec8f8d7020460d6c26e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/czech_zlin_32.png b/tools/configurator/res/flags/czech_zlin_32.png new file mode 100644 index 00000000..aa227021 Binary files /dev/null and b/tools/configurator/res/flags/czech_zlin_32.png differ diff --git a/tools/configurator/res/flags/czech_zlin_32.png.import b/tools/configurator/res/flags/czech_zlin_32.png.import new file mode 100644 index 00000000..fc65ebaf --- /dev/null +++ b/tools/configurator/res/flags/czech_zlin_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjn64k447d5lg" +path="res://.godot/imported/czech_zlin_32.png-52fbd588dabdee22aa9b048580c0262b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/czech_zlin_32.png" +dest_files=["res://.godot/imported/czech_zlin_32.png-52fbd588dabdee22aa9b048580c0262b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/denmark_32.png b/tools/configurator/res/flags/denmark_32.png new file mode 100644 index 00000000..20972656 Binary files /dev/null and b/tools/configurator/res/flags/denmark_32.png differ diff --git a/tools/configurator/res/flags/denmark_32.png.import b/tools/configurator/res/flags/denmark_32.png.import new file mode 100644 index 00000000..04d1dd54 --- /dev/null +++ b/tools/configurator/res/flags/denmark_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p1eljdr2g3i6" +path="res://.godot/imported/denmark_32.png-8f3fa2ab6a04d740a960e2caaafa3c99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/denmark_32.png" +dest_files=["res://.godot/imported/denmark_32.png-8f3fa2ab6a04d740a960e2caaafa3c99.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/east_timor_32.png b/tools/configurator/res/flags/east_timor_32.png new file mode 100644 index 00000000..d36bea47 Binary files /dev/null and b/tools/configurator/res/flags/east_timor_32.png differ diff --git a/tools/configurator/res/flags/east_timor_32.png.import b/tools/configurator/res/flags/east_timor_32.png.import new file mode 100644 index 00000000..d0636d22 --- /dev/null +++ b/tools/configurator/res/flags/east_timor_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3hb7xs0mcx08" +path="res://.godot/imported/east_timor_32.png-f8fd1705b03d579ec837d448f3c3ddf7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/east_timor_32.png" +dest_files=["res://.godot/imported/east_timor_32.png-f8fd1705b03d579ec837d448f3c3ddf7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/estonia_32.png b/tools/configurator/res/flags/estonia_32.png new file mode 100644 index 00000000..d430a5ea Binary files /dev/null and b/tools/configurator/res/flags/estonia_32.png differ diff --git a/tools/configurator/res/flags/estonia_32.png.import b/tools/configurator/res/flags/estonia_32.png.import new file mode 100644 index 00000000..760611f3 --- /dev/null +++ b/tools/configurator/res/flags/estonia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crex5jxww0yty" +path="res://.godot/imported/estonia_32.png-02f7df77dbffc6a9c625e2dd0b32dd06.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/estonia_32.png" +dest_files=["res://.godot/imported/estonia_32.png-02f7df77dbffc6a9c625e2dd0b32dd06.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/estonia_harju_32.png b/tools/configurator/res/flags/estonia_harju_32.png new file mode 100644 index 00000000..8590c257 Binary files /dev/null and b/tools/configurator/res/flags/estonia_harju_32.png differ diff --git a/tools/configurator/res/flags/estonia_harju_32.png.import b/tools/configurator/res/flags/estonia_harju_32.png.import new file mode 100644 index 00000000..1c00765c --- /dev/null +++ b/tools/configurator/res/flags/estonia_harju_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfwuk0givnssm" +path="res://.godot/imported/estonia_harju_32.png-7ebbb240a09ad91ce77670be6c293caa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/estonia_harju_32.png" +dest_files=["res://.godot/imported/estonia_harju_32.png-7ebbb240a09ad91ce77670be6c293caa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/estonia_hiiu_32.png b/tools/configurator/res/flags/estonia_hiiu_32.png new file mode 100644 index 00000000..1ecbc443 Binary files /dev/null and b/tools/configurator/res/flags/estonia_hiiu_32.png differ diff --git a/tools/configurator/res/flags/estonia_hiiu_32.png.import b/tools/configurator/res/flags/estonia_hiiu_32.png.import new file mode 100644 index 00000000..05b94e35 --- /dev/null +++ b/tools/configurator/res/flags/estonia_hiiu_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cicdn8b0x8yqr" +path="res://.godot/imported/estonia_hiiu_32.png-82540bca9531a4050f15e4cf2081df5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/estonia_hiiu_32.png" +dest_files=["res://.godot/imported/estonia_hiiu_32.png-82540bca9531a4050f15e4cf2081df5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/estonia_ida_viru_32.png b/tools/configurator/res/flags/estonia_ida_viru_32.png new file mode 100644 index 00000000..c00c6a76 Binary files /dev/null and b/tools/configurator/res/flags/estonia_ida_viru_32.png differ diff --git a/tools/configurator/res/flags/estonia_ida_viru_32.png.import b/tools/configurator/res/flags/estonia_ida_viru_32.png.import new file mode 100644 index 00000000..bac88df4 --- /dev/null +++ b/tools/configurator/res/flags/estonia_ida_viru_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bema0x8fu1r06" +path="res://.godot/imported/estonia_ida_viru_32.png-2d4bd02991d21a67a2ed7de8daa3d1f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/estonia_ida_viru_32.png" +dest_files=["res://.godot/imported/estonia_ida_viru_32.png-2d4bd02991d21a67a2ed7de8daa3d1f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/estonia_jarva_32.png b/tools/configurator/res/flags/estonia_jarva_32.png new file mode 100644 index 00000000..7d441a89 Binary files /dev/null and b/tools/configurator/res/flags/estonia_jarva_32.png differ diff --git a/tools/configurator/res/flags/estonia_jarva_32.png.import b/tools/configurator/res/flags/estonia_jarva_32.png.import new file mode 100644 index 00000000..15653326 --- /dev/null +++ b/tools/configurator/res/flags/estonia_jarva_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o52jvbrx3b0i" +path="res://.godot/imported/estonia_jarva_32.png-495641c6c743b806245c3aa8fd34069b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/estonia_jarva_32.png" +dest_files=["res://.godot/imported/estonia_jarva_32.png-495641c6c743b806245c3aa8fd34069b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/estonia_jogeva_32.png b/tools/configurator/res/flags/estonia_jogeva_32.png new file mode 100644 index 00000000..a925aa83 Binary files /dev/null and b/tools/configurator/res/flags/estonia_jogeva_32.png differ diff --git a/tools/configurator/res/flags/estonia_jogeva_32.png.import b/tools/configurator/res/flags/estonia_jogeva_32.png.import new file mode 100644 index 00000000..09b5767a --- /dev/null +++ b/tools/configurator/res/flags/estonia_jogeva_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dydkpxjhsummq" +path="res://.godot/imported/estonia_jogeva_32.png-aaad41054dc443ea2694bff615f42507.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/estonia_jogeva_32.png" +dest_files=["res://.godot/imported/estonia_jogeva_32.png-aaad41054dc443ea2694bff615f42507.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/estonia_laane_32.png b/tools/configurator/res/flags/estonia_laane_32.png new file mode 100644 index 00000000..6f803685 Binary files /dev/null and b/tools/configurator/res/flags/estonia_laane_32.png differ diff --git a/tools/configurator/res/flags/estonia_laane_32.png.import b/tools/configurator/res/flags/estonia_laane_32.png.import new file mode 100644 index 00000000..95e776f2 --- /dev/null +++ b/tools/configurator/res/flags/estonia_laane_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bytkpq3aunq4v" +path="res://.godot/imported/estonia_laane_32.png-f46be93e254957760e263f7959b68d93.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/estonia_laane_32.png" +dest_files=["res://.godot/imported/estonia_laane_32.png-f46be93e254957760e263f7959b68d93.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/estonia_laane_viru_32.png b/tools/configurator/res/flags/estonia_laane_viru_32.png new file mode 100644 index 00000000..0ecad2c7 Binary files /dev/null and b/tools/configurator/res/flags/estonia_laane_viru_32.png differ diff --git a/tools/configurator/res/flags/estonia_laane_viru_32.png.import b/tools/configurator/res/flags/estonia_laane_viru_32.png.import new file mode 100644 index 00000000..9ea00b6b --- /dev/null +++ b/tools/configurator/res/flags/estonia_laane_viru_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cw1lifiv01dck" +path="res://.godot/imported/estonia_laane_viru_32.png-1a4711f79efe7774f578ba28e4c770fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/estonia_laane_viru_32.png" +dest_files=["res://.godot/imported/estonia_laane_viru_32.png-1a4711f79efe7774f578ba28e4c770fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/estonia_parnu_32.png b/tools/configurator/res/flags/estonia_parnu_32.png new file mode 100644 index 00000000..04ee110e Binary files /dev/null and b/tools/configurator/res/flags/estonia_parnu_32.png differ diff --git a/tools/configurator/res/flags/estonia_parnu_32.png.import b/tools/configurator/res/flags/estonia_parnu_32.png.import new file mode 100644 index 00000000..e8c1c456 --- /dev/null +++ b/tools/configurator/res/flags/estonia_parnu_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7qcfmpywy5nn" +path="res://.godot/imported/estonia_parnu_32.png-86ad6b35bbed07782ad9bc575fe94fe2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/estonia_parnu_32.png" +dest_files=["res://.godot/imported/estonia_parnu_32.png-86ad6b35bbed07782ad9bc575fe94fe2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/estonia_polva_32.png b/tools/configurator/res/flags/estonia_polva_32.png new file mode 100644 index 00000000..e785b8e4 Binary files /dev/null and b/tools/configurator/res/flags/estonia_polva_32.png differ diff --git a/tools/configurator/res/flags/estonia_polva_32.png.import b/tools/configurator/res/flags/estonia_polva_32.png.import new file mode 100644 index 00000000..c32bf004 --- /dev/null +++ b/tools/configurator/res/flags/estonia_polva_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vhk58hf2lth0" +path="res://.godot/imported/estonia_polva_32.png-c5c3d660e75b572de98c1747750e6c2b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/estonia_polva_32.png" +dest_files=["res://.godot/imported/estonia_polva_32.png-c5c3d660e75b572de98c1747750e6c2b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/estonia_rapla_32.png b/tools/configurator/res/flags/estonia_rapla_32.png new file mode 100644 index 00000000..9457f121 Binary files /dev/null and b/tools/configurator/res/flags/estonia_rapla_32.png differ diff --git a/tools/configurator/res/flags/estonia_rapla_32.png.import b/tools/configurator/res/flags/estonia_rapla_32.png.import new file mode 100644 index 00000000..dad93b32 --- /dev/null +++ b/tools/configurator/res/flags/estonia_rapla_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de8xodybe5w52" +path="res://.godot/imported/estonia_rapla_32.png-547fcf1e4faac7ba730681e8559fc18b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/estonia_rapla_32.png" +dest_files=["res://.godot/imported/estonia_rapla_32.png-547fcf1e4faac7ba730681e8559fc18b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/estonia_saare_32.png b/tools/configurator/res/flags/estonia_saare_32.png new file mode 100644 index 00000000..951b5238 Binary files /dev/null and b/tools/configurator/res/flags/estonia_saare_32.png differ diff --git a/tools/configurator/res/flags/estonia_saare_32.png.import b/tools/configurator/res/flags/estonia_saare_32.png.import new file mode 100644 index 00000000..59ae1c9c --- /dev/null +++ b/tools/configurator/res/flags/estonia_saare_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4oxq288r4kes" +path="res://.godot/imported/estonia_saare_32.png-5b7cf150e7b387d64ff16eb811af693c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/estonia_saare_32.png" +dest_files=["res://.godot/imported/estonia_saare_32.png-5b7cf150e7b387d64ff16eb811af693c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/estonia_tartu_32.png b/tools/configurator/res/flags/estonia_tartu_32.png new file mode 100644 index 00000000..71eb0eb2 Binary files /dev/null and b/tools/configurator/res/flags/estonia_tartu_32.png differ diff --git a/tools/configurator/res/flags/estonia_tartu_32.png.import b/tools/configurator/res/flags/estonia_tartu_32.png.import new file mode 100644 index 00000000..8b9310c8 --- /dev/null +++ b/tools/configurator/res/flags/estonia_tartu_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dulp8ukl0orvf" +path="res://.godot/imported/estonia_tartu_32.png-3689c456175f01dfb8d49a10fec01722.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/estonia_tartu_32.png" +dest_files=["res://.godot/imported/estonia_tartu_32.png-3689c456175f01dfb8d49a10fec01722.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/estonia_valga_32.png b/tools/configurator/res/flags/estonia_valga_32.png new file mode 100644 index 00000000..f05b8a4f Binary files /dev/null and b/tools/configurator/res/flags/estonia_valga_32.png differ diff --git a/tools/configurator/res/flags/estonia_valga_32.png.import b/tools/configurator/res/flags/estonia_valga_32.png.import new file mode 100644 index 00000000..d281c3b9 --- /dev/null +++ b/tools/configurator/res/flags/estonia_valga_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b75t84fw5urql" +path="res://.godot/imported/estonia_valga_32.png-2701f39a79ada0cba22f4ae303ef734b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/estonia_valga_32.png" +dest_files=["res://.godot/imported/estonia_valga_32.png-2701f39a79ada0cba22f4ae303ef734b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/estonia_viljandi_32.png b/tools/configurator/res/flags/estonia_viljandi_32.png new file mode 100644 index 00000000..c01917d3 Binary files /dev/null and b/tools/configurator/res/flags/estonia_viljandi_32.png differ diff --git a/tools/configurator/res/flags/estonia_viljandi_32.png.import b/tools/configurator/res/flags/estonia_viljandi_32.png.import new file mode 100644 index 00000000..60b083f5 --- /dev/null +++ b/tools/configurator/res/flags/estonia_viljandi_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mbhm3s051wqw" +path="res://.godot/imported/estonia_viljandi_32.png-62726329a45eec5bacbe6e5af4d5cb7d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/estonia_viljandi_32.png" +dest_files=["res://.godot/imported/estonia_viljandi_32.png-62726329a45eec5bacbe6e5af4d5cb7d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/estonia_voru_32.png b/tools/configurator/res/flags/estonia_voru_32.png new file mode 100644 index 00000000..bfa3735c Binary files /dev/null and b/tools/configurator/res/flags/estonia_voru_32.png differ diff --git a/tools/configurator/res/flags/estonia_voru_32.png.import b/tools/configurator/res/flags/estonia_voru_32.png.import new file mode 100644 index 00000000..3f4c34e9 --- /dev/null +++ b/tools/configurator/res/flags/estonia_voru_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7s13f1us8htw" +path="res://.godot/imported/estonia_voru_32.png-ee2247b6d6a6ace9d0ff884f540460f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/estonia_voru_32.png" +dest_files=["res://.godot/imported/estonia_voru_32.png-ee2247b6d6a6ace9d0ff884f540460f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_32.png b/tools/configurator/res/flags/finland_32.png new file mode 100644 index 00000000..b0e20d46 Binary files /dev/null and b/tools/configurator/res/flags/finland_32.png differ diff --git a/tools/configurator/res/flags/finland_32.png.import b/tools/configurator/res/flags/finland_32.png.import new file mode 100644 index 00000000..89004bd1 --- /dev/null +++ b/tools/configurator/res/flags/finland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bydioohxsewf" +path="res://.godot/imported/finland_32.png-bae81fb6cfe78882231c986245aac71e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_32.png" +dest_files=["res://.godot/imported/finland_32.png-bae81fb6cfe78882231c986245aac71e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_aland_32.png b/tools/configurator/res/flags/finland_aland_32.png new file mode 100644 index 00000000..cc4c6839 Binary files /dev/null and b/tools/configurator/res/flags/finland_aland_32.png differ diff --git a/tools/configurator/res/flags/finland_aland_32.png.import b/tools/configurator/res/flags/finland_aland_32.png.import new file mode 100644 index 00000000..c4137bf9 --- /dev/null +++ b/tools/configurator/res/flags/finland_aland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpn1aooqpw2gk" +path="res://.godot/imported/finland_aland_32.png-d9ce4bf9c6342c8d259c0bc2fab8d120.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_aland_32.png" +dest_files=["res://.godot/imported/finland_aland_32.png-d9ce4bf9c6342c8d259c0bc2fab8d120.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_central_finland_32.png b/tools/configurator/res/flags/finland_central_finland_32.png new file mode 100644 index 00000000..473a90e3 Binary files /dev/null and b/tools/configurator/res/flags/finland_central_finland_32.png differ diff --git a/tools/configurator/res/flags/finland_central_finland_32.png.import b/tools/configurator/res/flags/finland_central_finland_32.png.import new file mode 100644 index 00000000..0b3cdc1e --- /dev/null +++ b/tools/configurator/res/flags/finland_central_finland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpthxar4uhs72" +path="res://.godot/imported/finland_central_finland_32.png-b0c0a6ebc9378fc5bcae4a1be607a8a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_central_finland_32.png" +dest_files=["res://.godot/imported/finland_central_finland_32.png-b0c0a6ebc9378fc5bcae4a1be607a8a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_central_ostrobothnia_32.png b/tools/configurator/res/flags/finland_central_ostrobothnia_32.png new file mode 100644 index 00000000..a038a549 Binary files /dev/null and b/tools/configurator/res/flags/finland_central_ostrobothnia_32.png differ diff --git a/tools/configurator/res/flags/finland_central_ostrobothnia_32.png.import b/tools/configurator/res/flags/finland_central_ostrobothnia_32.png.import new file mode 100644 index 00000000..9c455a33 --- /dev/null +++ b/tools/configurator/res/flags/finland_central_ostrobothnia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cavjv0qimmw13" +path="res://.godot/imported/finland_central_ostrobothnia_32.png-c296a2864595645cb7758cf1a643e469.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_central_ostrobothnia_32.png" +dest_files=["res://.godot/imported/finland_central_ostrobothnia_32.png-c296a2864595645cb7758cf1a643e469.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_kainuu_32.png b/tools/configurator/res/flags/finland_kainuu_32.png new file mode 100644 index 00000000..89a14b92 Binary files /dev/null and b/tools/configurator/res/flags/finland_kainuu_32.png differ diff --git a/tools/configurator/res/flags/finland_kainuu_32.png.import b/tools/configurator/res/flags/finland_kainuu_32.png.import new file mode 100644 index 00000000..02c53bce --- /dev/null +++ b/tools/configurator/res/flags/finland_kainuu_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ktniywha8hud" +path="res://.godot/imported/finland_kainuu_32.png-09078206dc10630d3cf9993cc2323e7c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_kainuu_32.png" +dest_files=["res://.godot/imported/finland_kainuu_32.png-09078206dc10630d3cf9993cc2323e7c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_kanta_hame_32.png b/tools/configurator/res/flags/finland_kanta_hame_32.png new file mode 100644 index 00000000..19bd87c5 Binary files /dev/null and b/tools/configurator/res/flags/finland_kanta_hame_32.png differ diff --git a/tools/configurator/res/flags/finland_kanta_hame_32.png.import b/tools/configurator/res/flags/finland_kanta_hame_32.png.import new file mode 100644 index 00000000..d96f4ecb --- /dev/null +++ b/tools/configurator/res/flags/finland_kanta_hame_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxmwp66e1p5vv" +path="res://.godot/imported/finland_kanta_hame_32.png-b7fa0de503fba48a26c9e24e679440f3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_kanta_hame_32.png" +dest_files=["res://.godot/imported/finland_kanta_hame_32.png-b7fa0de503fba48a26c9e24e679440f3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_kymenlaakso_32.png b/tools/configurator/res/flags/finland_kymenlaakso_32.png new file mode 100644 index 00000000..f99ec9ef Binary files /dev/null and b/tools/configurator/res/flags/finland_kymenlaakso_32.png differ diff --git a/tools/configurator/res/flags/finland_kymenlaakso_32.png.import b/tools/configurator/res/flags/finland_kymenlaakso_32.png.import new file mode 100644 index 00000000..518d3204 --- /dev/null +++ b/tools/configurator/res/flags/finland_kymenlaakso_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rfe6x0hbklbr" +path="res://.godot/imported/finland_kymenlaakso_32.png-0da0a0c66f4131016cc33a6fb70b13d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_kymenlaakso_32.png" +dest_files=["res://.godot/imported/finland_kymenlaakso_32.png-0da0a0c66f4131016cc33a6fb70b13d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_lapland_32.png b/tools/configurator/res/flags/finland_lapland_32.png new file mode 100644 index 00000000..220deba0 Binary files /dev/null and b/tools/configurator/res/flags/finland_lapland_32.png differ diff --git a/tools/configurator/res/flags/finland_lapland_32.png.import b/tools/configurator/res/flags/finland_lapland_32.png.import new file mode 100644 index 00000000..3faa67a2 --- /dev/null +++ b/tools/configurator/res/flags/finland_lapland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://co6nrfxyoby2x" +path="res://.godot/imported/finland_lapland_32.png-751e81b34bf5eb537ddcd66c2106d85d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_lapland_32.png" +dest_files=["res://.godot/imported/finland_lapland_32.png-751e81b34bf5eb537ddcd66c2106d85d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_north_karelia_32.png b/tools/configurator/res/flags/finland_north_karelia_32.png new file mode 100644 index 00000000..08717796 Binary files /dev/null and b/tools/configurator/res/flags/finland_north_karelia_32.png differ diff --git a/tools/configurator/res/flags/finland_north_karelia_32.png.import b/tools/configurator/res/flags/finland_north_karelia_32.png.import new file mode 100644 index 00000000..31df44b0 --- /dev/null +++ b/tools/configurator/res/flags/finland_north_karelia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bv4ah4b8cmi0l" +path="res://.godot/imported/finland_north_karelia_32.png-ebec0a6ba2d5fdfea72f02c831ef7c34.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_north_karelia_32.png" +dest_files=["res://.godot/imported/finland_north_karelia_32.png-ebec0a6ba2d5fdfea72f02c831ef7c34.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_north_ostrobothnia_32.png b/tools/configurator/res/flags/finland_north_ostrobothnia_32.png new file mode 100644 index 00000000..a272e30f Binary files /dev/null and b/tools/configurator/res/flags/finland_north_ostrobothnia_32.png differ diff --git a/tools/configurator/res/flags/finland_north_ostrobothnia_32.png.import b/tools/configurator/res/flags/finland_north_ostrobothnia_32.png.import new file mode 100644 index 00000000..ecd3c907 --- /dev/null +++ b/tools/configurator/res/flags/finland_north_ostrobothnia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do0v8hswo460f" +path="res://.godot/imported/finland_north_ostrobothnia_32.png-1450d551648b47537d8cbf65f6afd651.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_north_ostrobothnia_32.png" +dest_files=["res://.godot/imported/finland_north_ostrobothnia_32.png-1450d551648b47537d8cbf65f6afd651.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_northern_savonia_32.png b/tools/configurator/res/flags/finland_northern_savonia_32.png new file mode 100644 index 00000000..53d58626 Binary files /dev/null and b/tools/configurator/res/flags/finland_northern_savonia_32.png differ diff --git a/tools/configurator/res/flags/finland_northern_savonia_32.png.import b/tools/configurator/res/flags/finland_northern_savonia_32.png.import new file mode 100644 index 00000000..4858ec53 --- /dev/null +++ b/tools/configurator/res/flags/finland_northern_savonia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5ue68mtepwac" +path="res://.godot/imported/finland_northern_savonia_32.png-8a567d2d7caf33de8ab709206d85c9fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_northern_savonia_32.png" +dest_files=["res://.godot/imported/finland_northern_savonia_32.png-8a567d2d7caf33de8ab709206d85c9fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_ostrobothnia_32.png b/tools/configurator/res/flags/finland_ostrobothnia_32.png new file mode 100644 index 00000000..dc5327bf Binary files /dev/null and b/tools/configurator/res/flags/finland_ostrobothnia_32.png differ diff --git a/tools/configurator/res/flags/finland_ostrobothnia_32.png.import b/tools/configurator/res/flags/finland_ostrobothnia_32.png.import new file mode 100644 index 00000000..bea9fffe --- /dev/null +++ b/tools/configurator/res/flags/finland_ostrobothnia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0k3doc5ucqny" +path="res://.godot/imported/finland_ostrobothnia_32.png-4ecb5bbad79e2ee53bc2b43f8dcf9c26.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_ostrobothnia_32.png" +dest_files=["res://.godot/imported/finland_ostrobothnia_32.png-4ecb5bbad79e2ee53bc2b43f8dcf9c26.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_paijat_hame_32.png b/tools/configurator/res/flags/finland_paijat_hame_32.png new file mode 100644 index 00000000..a2f624ff Binary files /dev/null and b/tools/configurator/res/flags/finland_paijat_hame_32.png differ diff --git a/tools/configurator/res/flags/finland_paijat_hame_32.png.import b/tools/configurator/res/flags/finland_paijat_hame_32.png.import new file mode 100644 index 00000000..051532e3 --- /dev/null +++ b/tools/configurator/res/flags/finland_paijat_hame_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://co0xovbx5vif5" +path="res://.godot/imported/finland_paijat_hame_32.png-c072b73ac8554955cd709be62fe6fb7f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_paijat_hame_32.png" +dest_files=["res://.godot/imported/finland_paijat_hame_32.png-c072b73ac8554955cd709be62fe6fb7f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_pirkanmaa_32.png b/tools/configurator/res/flags/finland_pirkanmaa_32.png new file mode 100644 index 00000000..f4328a5a Binary files /dev/null and b/tools/configurator/res/flags/finland_pirkanmaa_32.png differ diff --git a/tools/configurator/res/flags/finland_pirkanmaa_32.png.import b/tools/configurator/res/flags/finland_pirkanmaa_32.png.import new file mode 100644 index 00000000..165d1b08 --- /dev/null +++ b/tools/configurator/res/flags/finland_pirkanmaa_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgxufp13yfoad" +path="res://.godot/imported/finland_pirkanmaa_32.png-54b12624bfc159f3ff6a1b628783a668.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_pirkanmaa_32.png" +dest_files=["res://.godot/imported/finland_pirkanmaa_32.png-54b12624bfc159f3ff6a1b628783a668.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_satakunta_32.png b/tools/configurator/res/flags/finland_satakunta_32.png new file mode 100644 index 00000000..8aad5a3e Binary files /dev/null and b/tools/configurator/res/flags/finland_satakunta_32.png differ diff --git a/tools/configurator/res/flags/finland_satakunta_32.png.import b/tools/configurator/res/flags/finland_satakunta_32.png.import new file mode 100644 index 00000000..32729fa7 --- /dev/null +++ b/tools/configurator/res/flags/finland_satakunta_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csbepiujtvjov" +path="res://.godot/imported/finland_satakunta_32.png-05c492c4149c043be567a6b956860af6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_satakunta_32.png" +dest_files=["res://.godot/imported/finland_satakunta_32.png-05c492c4149c043be567a6b956860af6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_south_karelia_32.png b/tools/configurator/res/flags/finland_south_karelia_32.png new file mode 100644 index 00000000..90408540 Binary files /dev/null and b/tools/configurator/res/flags/finland_south_karelia_32.png differ diff --git a/tools/configurator/res/flags/finland_south_karelia_32.png.import b/tools/configurator/res/flags/finland_south_karelia_32.png.import new file mode 100644 index 00000000..210fe903 --- /dev/null +++ b/tools/configurator/res/flags/finland_south_karelia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vbsnckvwui25" +path="res://.godot/imported/finland_south_karelia_32.png-b415bda3eac5901ff0525f3370724cda.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_south_karelia_32.png" +dest_files=["res://.godot/imported/finland_south_karelia_32.png-b415bda3eac5901ff0525f3370724cda.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_south_savonia_32.png b/tools/configurator/res/flags/finland_south_savonia_32.png new file mode 100644 index 00000000..06253e5b Binary files /dev/null and b/tools/configurator/res/flags/finland_south_savonia_32.png differ diff --git a/tools/configurator/res/flags/finland_south_savonia_32.png.import b/tools/configurator/res/flags/finland_south_savonia_32.png.import new file mode 100644 index 00000000..955cd630 --- /dev/null +++ b/tools/configurator/res/flags/finland_south_savonia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds7wnijh2uwfc" +path="res://.godot/imported/finland_south_savonia_32.png-9ee294f979c6c7a43c14e2663bb5a798.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_south_savonia_32.png" +dest_files=["res://.godot/imported/finland_south_savonia_32.png-9ee294f979c6c7a43c14e2663bb5a798.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_southern_ostrobothnia_32.png b/tools/configurator/res/flags/finland_southern_ostrobothnia_32.png new file mode 100644 index 00000000..4f6f7f31 Binary files /dev/null and b/tools/configurator/res/flags/finland_southern_ostrobothnia_32.png differ diff --git a/tools/configurator/res/flags/finland_southern_ostrobothnia_32.png.import b/tools/configurator/res/flags/finland_southern_ostrobothnia_32.png.import new file mode 100644 index 00000000..e222c8ae --- /dev/null +++ b/tools/configurator/res/flags/finland_southern_ostrobothnia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7jbs4cs3jjyd" +path="res://.godot/imported/finland_southern_ostrobothnia_32.png-561167f2a1977298e130ef2346e89c0d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_southern_ostrobothnia_32.png" +dest_files=["res://.godot/imported/finland_southern_ostrobothnia_32.png-561167f2a1977298e130ef2346e89c0d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_southwest_finland_32.png b/tools/configurator/res/flags/finland_southwest_finland_32.png new file mode 100644 index 00000000..92efd43e Binary files /dev/null and b/tools/configurator/res/flags/finland_southwest_finland_32.png differ diff --git a/tools/configurator/res/flags/finland_southwest_finland_32.png.import b/tools/configurator/res/flags/finland_southwest_finland_32.png.import new file mode 100644 index 00000000..05ec86d6 --- /dev/null +++ b/tools/configurator/res/flags/finland_southwest_finland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daaqm8848npy3" +path="res://.godot/imported/finland_southwest_finland_32.png-54c5b196d9f605b9ae7fa2d8f526fd87.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_southwest_finland_32.png" +dest_files=["res://.godot/imported/finland_southwest_finland_32.png-54c5b196d9f605b9ae7fa2d8f526fd87.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/finland_uusimaa_32.png b/tools/configurator/res/flags/finland_uusimaa_32.png new file mode 100644 index 00000000..4abcab5c Binary files /dev/null and b/tools/configurator/res/flags/finland_uusimaa_32.png differ diff --git a/tools/configurator/res/flags/finland_uusimaa_32.png.import b/tools/configurator/res/flags/finland_uusimaa_32.png.import new file mode 100644 index 00000000..973bf1f3 --- /dev/null +++ b/tools/configurator/res/flags/finland_uusimaa_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8rb42h7xqx80" +path="res://.godot/imported/finland_uusimaa_32.png-2ac72ac0f71198912eec6aa2d49cda55.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/finland_uusimaa_32.png" +dest_files=["res://.godot/imported/finland_uusimaa_32.png-2ac72ac0f71198912eec6aa2d49cda55.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_32.png b/tools/configurator/res/flags/france_32.png new file mode 100644 index 00000000..d56a1222 Binary files /dev/null and b/tools/configurator/res/flags/france_32.png differ diff --git a/tools/configurator/res/flags/france_32.png.import b/tools/configurator/res/flags/france_32.png.import new file mode 100644 index 00000000..821cb746 --- /dev/null +++ b/tools/configurator/res/flags/france_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bd7kytmn66xvp" +path="res://.godot/imported/france_32.png-49da9cf23d92ba41e3a4576079fbb901.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_32.png" +dest_files=["res://.godot/imported/france_32.png-49da9cf23d92ba41e3a4576079fbb901.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_auvergne_rhone_alpes_32.png b/tools/configurator/res/flags/france_auvergne_rhone_alpes_32.png new file mode 100644 index 00000000..8c26c6a4 Binary files /dev/null and b/tools/configurator/res/flags/france_auvergne_rhone_alpes_32.png differ diff --git a/tools/configurator/res/flags/france_auvergne_rhone_alpes_32.png.import b/tools/configurator/res/flags/france_auvergne_rhone_alpes_32.png.import new file mode 100644 index 00000000..c36e4912 --- /dev/null +++ b/tools/configurator/res/flags/france_auvergne_rhone_alpes_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gofb6jd811sr" +path="res://.godot/imported/france_auvergne_rhone_alpes_32.png-27c1a8c4e696cc9452976807a22e35f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_auvergne_rhone_alpes_32.png" +dest_files=["res://.godot/imported/france_auvergne_rhone_alpes_32.png-27c1a8c4e696cc9452976807a22e35f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_bourgogne_franche_comte_32.png b/tools/configurator/res/flags/france_bourgogne_franche_comte_32.png new file mode 100644 index 00000000..033bb256 Binary files /dev/null and b/tools/configurator/res/flags/france_bourgogne_franche_comte_32.png differ diff --git a/tools/configurator/res/flags/france_bourgogne_franche_comte_32.png.import b/tools/configurator/res/flags/france_bourgogne_franche_comte_32.png.import new file mode 100644 index 00000000..8613493b --- /dev/null +++ b/tools/configurator/res/flags/france_bourgogne_franche_comte_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lro1agc0fwr0" +path="res://.godot/imported/france_bourgogne_franche_comte_32.png-6c27b33329b4b860129694bbeff81863.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_bourgogne_franche_comte_32.png" +dest_files=["res://.godot/imported/france_bourgogne_franche_comte_32.png-6c27b33329b4b860129694bbeff81863.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_bretagne_32.png b/tools/configurator/res/flags/france_bretagne_32.png new file mode 100644 index 00000000..6aa50d38 Binary files /dev/null and b/tools/configurator/res/flags/france_bretagne_32.png differ diff --git a/tools/configurator/res/flags/france_bretagne_32.png.import b/tools/configurator/res/flags/france_bretagne_32.png.import new file mode 100644 index 00000000..11e3a80b --- /dev/null +++ b/tools/configurator/res/flags/france_bretagne_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6u2c6ptd4x3n" +path="res://.godot/imported/france_bretagne_32.png-ad89e925c0c29a163445c2e234f856b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_bretagne_32.png" +dest_files=["res://.godot/imported/france_bretagne_32.png-ad89e925c0c29a163445c2e234f856b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_centre_val_de_loire_32.png b/tools/configurator/res/flags/france_centre_val_de_loire_32.png new file mode 100644 index 00000000..d7322506 Binary files /dev/null and b/tools/configurator/res/flags/france_centre_val_de_loire_32.png differ diff --git a/tools/configurator/res/flags/france_centre_val_de_loire_32.png.import b/tools/configurator/res/flags/france_centre_val_de_loire_32.png.import new file mode 100644 index 00000000..a42beaa5 --- /dev/null +++ b/tools/configurator/res/flags/france_centre_val_de_loire_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cletu0decov2t" +path="res://.godot/imported/france_centre_val_de_loire_32.png-dc4d29cadbf5e4e58eedc8a794105a1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_centre_val_de_loire_32.png" +dest_files=["res://.godot/imported/france_centre_val_de_loire_32.png-dc4d29cadbf5e4e58eedc8a794105a1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_corsica_32.png b/tools/configurator/res/flags/france_corsica_32.png new file mode 100644 index 00000000..7ce4d2f8 Binary files /dev/null and b/tools/configurator/res/flags/france_corsica_32.png differ diff --git a/tools/configurator/res/flags/france_corsica_32.png.import b/tools/configurator/res/flags/france_corsica_32.png.import new file mode 100644 index 00000000..7d4a9286 --- /dev/null +++ b/tools/configurator/res/flags/france_corsica_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j8ba33tlu55a" +path="res://.godot/imported/france_corsica_32.png-b3088b2c68daf629e7bb8ad4af2876a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_corsica_32.png" +dest_files=["res://.godot/imported/france_corsica_32.png-b3088b2c68daf629e7bb8ad4af2876a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_french_guiana_32.png b/tools/configurator/res/flags/france_french_guiana_32.png new file mode 100644 index 00000000..69fdd777 Binary files /dev/null and b/tools/configurator/res/flags/france_french_guiana_32.png differ diff --git a/tools/configurator/res/flags/france_french_guiana_32.png.import b/tools/configurator/res/flags/france_french_guiana_32.png.import new file mode 100644 index 00000000..66e40321 --- /dev/null +++ b/tools/configurator/res/flags/france_french_guiana_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diyc17pgfoau1" +path="res://.godot/imported/france_french_guiana_32.png-d65b9e2ff14fe0209729ef6e2e5b63ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_french_guiana_32.png" +dest_files=["res://.godot/imported/france_french_guiana_32.png-d65b9e2ff14fe0209729ef6e2e5b63ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_french_polynesia_32.png b/tools/configurator/res/flags/france_french_polynesia_32.png new file mode 100644 index 00000000..33cbb331 Binary files /dev/null and b/tools/configurator/res/flags/france_french_polynesia_32.png differ diff --git a/tools/configurator/res/flags/france_french_polynesia_32.png.import b/tools/configurator/res/flags/france_french_polynesia_32.png.import new file mode 100644 index 00000000..24b98bc4 --- /dev/null +++ b/tools/configurator/res/flags/france_french_polynesia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceu6qyf3r2oau" +path="res://.godot/imported/france_french_polynesia_32.png-ca4582e4de17c7a8f506f4c622b9629c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_french_polynesia_32.png" +dest_files=["res://.godot/imported/france_french_polynesia_32.png-ca4582e4de17c7a8f506f4c622b9629c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_french_southern_and_antarctic_lands_32.png b/tools/configurator/res/flags/france_french_southern_and_antarctic_lands_32.png new file mode 100644 index 00000000..dd056b96 Binary files /dev/null and b/tools/configurator/res/flags/france_french_southern_and_antarctic_lands_32.png differ diff --git a/tools/configurator/res/flags/france_french_southern_and_antarctic_lands_32.png.import b/tools/configurator/res/flags/france_french_southern_and_antarctic_lands_32.png.import new file mode 100644 index 00000000..22599a79 --- /dev/null +++ b/tools/configurator/res/flags/france_french_southern_and_antarctic_lands_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bd0enb0ut7yha" +path="res://.godot/imported/france_french_southern_and_antarctic_lands_32.png-3d753b1030f662616cd7b9a48f26c95e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_french_southern_and_antarctic_lands_32.png" +dest_files=["res://.godot/imported/france_french_southern_and_antarctic_lands_32.png-3d753b1030f662616cd7b9a48f26c95e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_grand_est_32.png b/tools/configurator/res/flags/france_grand_est_32.png new file mode 100644 index 00000000..0a83f8f4 Binary files /dev/null and b/tools/configurator/res/flags/france_grand_est_32.png differ diff --git a/tools/configurator/res/flags/france_grand_est_32.png.import b/tools/configurator/res/flags/france_grand_est_32.png.import new file mode 100644 index 00000000..c46b6ba3 --- /dev/null +++ b/tools/configurator/res/flags/france_grand_est_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6xyuatpdkn7s" +path="res://.godot/imported/france_grand_est_32.png-09af6c52ecd04b43833e3f6e2c10ea3a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_grand_est_32.png" +dest_files=["res://.godot/imported/france_grand_est_32.png-09af6c52ecd04b43833e3f6e2c10ea3a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_guadeloupe_32.png b/tools/configurator/res/flags/france_guadeloupe_32.png new file mode 100644 index 00000000..113acee9 Binary files /dev/null and b/tools/configurator/res/flags/france_guadeloupe_32.png differ diff --git a/tools/configurator/res/flags/france_guadeloupe_32.png.import b/tools/configurator/res/flags/france_guadeloupe_32.png.import new file mode 100644 index 00000000..d4d1399e --- /dev/null +++ b/tools/configurator/res/flags/france_guadeloupe_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d07njg4ebdq52" +path="res://.godot/imported/france_guadeloupe_32.png-c7a745064515c86f1b679df9c7910a5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_guadeloupe_32.png" +dest_files=["res://.godot/imported/france_guadeloupe_32.png-c7a745064515c86f1b679df9c7910a5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_hauts_de_france_32.png b/tools/configurator/res/flags/france_hauts_de_france_32.png new file mode 100644 index 00000000..41a9603c Binary files /dev/null and b/tools/configurator/res/flags/france_hauts_de_france_32.png differ diff --git a/tools/configurator/res/flags/france_hauts_de_france_32.png.import b/tools/configurator/res/flags/france_hauts_de_france_32.png.import new file mode 100644 index 00000000..c133910e --- /dev/null +++ b/tools/configurator/res/flags/france_hauts_de_france_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bto77ft6hjo3k" +path="res://.godot/imported/france_hauts_de_france_32.png-bcd4473cb6488dd84c86ffc31dd1c753.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_hauts_de_france_32.png" +dest_files=["res://.godot/imported/france_hauts_de_france_32.png-bcd4473cb6488dd84c86ffc31dd1c753.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_ile_de_france_32.png b/tools/configurator/res/flags/france_ile_de_france_32.png new file mode 100644 index 00000000..bf0c2ccd Binary files /dev/null and b/tools/configurator/res/flags/france_ile_de_france_32.png differ diff --git a/tools/configurator/res/flags/france_ile_de_france_32.png.import b/tools/configurator/res/flags/france_ile_de_france_32.png.import new file mode 100644 index 00000000..a431b0b1 --- /dev/null +++ b/tools/configurator/res/flags/france_ile_de_france_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx6g64cvocyyy" +path="res://.godot/imported/france_ile_de_france_32.png-60473fece6e98a5710ff91621d0faa7d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_ile_de_france_32.png" +dest_files=["res://.godot/imported/france_ile_de_france_32.png-60473fece6e98a5710ff91621d0faa7d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_martinique_32.png b/tools/configurator/res/flags/france_martinique_32.png new file mode 100644 index 00000000..eb0293b8 Binary files /dev/null and b/tools/configurator/res/flags/france_martinique_32.png differ diff --git a/tools/configurator/res/flags/france_martinique_32.png.import b/tools/configurator/res/flags/france_martinique_32.png.import new file mode 100644 index 00000000..076b5d07 --- /dev/null +++ b/tools/configurator/res/flags/france_martinique_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdai8j4gmieci" +path="res://.godot/imported/france_martinique_32.png-9b5aac00626522e387175af166596931.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_martinique_32.png" +dest_files=["res://.godot/imported/france_martinique_32.png-9b5aac00626522e387175af166596931.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_mayotte_32.png b/tools/configurator/res/flags/france_mayotte_32.png new file mode 100644 index 00000000..99085191 Binary files /dev/null and b/tools/configurator/res/flags/france_mayotte_32.png differ diff --git a/tools/configurator/res/flags/france_mayotte_32.png.import b/tools/configurator/res/flags/france_mayotte_32.png.import new file mode 100644 index 00000000..a82f3d3e --- /dev/null +++ b/tools/configurator/res/flags/france_mayotte_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wsinkwvby5bx" +path="res://.godot/imported/france_mayotte_32.png-846c8689ccd1f6a5d44a882fb0208708.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_mayotte_32.png" +dest_files=["res://.godot/imported/france_mayotte_32.png-846c8689ccd1f6a5d44a882fb0208708.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_normandy_32.png b/tools/configurator/res/flags/france_normandy_32.png new file mode 100644 index 00000000..df28bf6f Binary files /dev/null and b/tools/configurator/res/flags/france_normandy_32.png differ diff --git a/tools/configurator/res/flags/france_normandy_32.png.import b/tools/configurator/res/flags/france_normandy_32.png.import new file mode 100644 index 00000000..877861f3 --- /dev/null +++ b/tools/configurator/res/flags/france_normandy_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b51xioontbw5a" +path="res://.godot/imported/france_normandy_32.png-f041a212b6b2eca883aa24efb780c643.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_normandy_32.png" +dest_files=["res://.godot/imported/france_normandy_32.png-f041a212b6b2eca883aa24efb780c643.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_nouvelle_aquitaine_32.png b/tools/configurator/res/flags/france_nouvelle_aquitaine_32.png new file mode 100644 index 00000000..ba5e839b Binary files /dev/null and b/tools/configurator/res/flags/france_nouvelle_aquitaine_32.png differ diff --git a/tools/configurator/res/flags/france_nouvelle_aquitaine_32.png.import b/tools/configurator/res/flags/france_nouvelle_aquitaine_32.png.import new file mode 100644 index 00000000..d3fda82c --- /dev/null +++ b/tools/configurator/res/flags/france_nouvelle_aquitaine_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1rf8wtt1iw5l" +path="res://.godot/imported/france_nouvelle_aquitaine_32.png-321a71264a52d18815b778bf1a7b1674.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_nouvelle_aquitaine_32.png" +dest_files=["res://.godot/imported/france_nouvelle_aquitaine_32.png-321a71264a52d18815b778bf1a7b1674.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_occitanie_32.png b/tools/configurator/res/flags/france_occitanie_32.png new file mode 100644 index 00000000..2de0af24 Binary files /dev/null and b/tools/configurator/res/flags/france_occitanie_32.png differ diff --git a/tools/configurator/res/flags/france_occitanie_32.png.import b/tools/configurator/res/flags/france_occitanie_32.png.import new file mode 100644 index 00000000..735fd1af --- /dev/null +++ b/tools/configurator/res/flags/france_occitanie_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6f41jgstud64" +path="res://.godot/imported/france_occitanie_32.png-0f842dd9037087085d63081cad49f374.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_occitanie_32.png" +dest_files=["res://.godot/imported/france_occitanie_32.png-0f842dd9037087085d63081cad49f374.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_pays_de_la_loire_32.png b/tools/configurator/res/flags/france_pays_de_la_loire_32.png new file mode 100644 index 00000000..2d3c47aa Binary files /dev/null and b/tools/configurator/res/flags/france_pays_de_la_loire_32.png differ diff --git a/tools/configurator/res/flags/france_pays_de_la_loire_32.png.import b/tools/configurator/res/flags/france_pays_de_la_loire_32.png.import new file mode 100644 index 00000000..c9ae6f39 --- /dev/null +++ b/tools/configurator/res/flags/france_pays_de_la_loire_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bth5i1xjc38uk" +path="res://.godot/imported/france_pays_de_la_loire_32.png-a446534b7f9b4542fa414e4c261259fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_pays_de_la_loire_32.png" +dest_files=["res://.godot/imported/france_pays_de_la_loire_32.png-a446534b7f9b4542fa414e4c261259fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_provence_alpes_cote_d_azur_32.png b/tools/configurator/res/flags/france_provence_alpes_cote_d_azur_32.png new file mode 100644 index 00000000..dd6d7a3f Binary files /dev/null and b/tools/configurator/res/flags/france_provence_alpes_cote_d_azur_32.png differ diff --git a/tools/configurator/res/flags/france_provence_alpes_cote_d_azur_32.png.import b/tools/configurator/res/flags/france_provence_alpes_cote_d_azur_32.png.import new file mode 100644 index 00000000..1e290019 --- /dev/null +++ b/tools/configurator/res/flags/france_provence_alpes_cote_d_azur_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1pw2whomdsj4" +path="res://.godot/imported/france_provence_alpes_cote_d_azur_32.png-f68c52c608df62139d6ac4a49efbba4f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_provence_alpes_cote_d_azur_32.png" +dest_files=["res://.godot/imported/france_provence_alpes_cote_d_azur_32.png-f68c52c608df62139d6ac4a49efbba4f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_reunion_32.png b/tools/configurator/res/flags/france_reunion_32.png new file mode 100644 index 00000000..df077054 Binary files /dev/null and b/tools/configurator/res/flags/france_reunion_32.png differ diff --git a/tools/configurator/res/flags/france_reunion_32.png.import b/tools/configurator/res/flags/france_reunion_32.png.import new file mode 100644 index 00000000..d4a144a5 --- /dev/null +++ b/tools/configurator/res/flags/france_reunion_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtf3wcwp75ybf" +path="res://.godot/imported/france_reunion_32.png-19c5c4eba1a7ac58c276155a997210f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_reunion_32.png" +dest_files=["res://.godot/imported/france_reunion_32.png-19c5c4eba1a7ac58c276155a997210f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_saint_barthelemy_32.png b/tools/configurator/res/flags/france_saint_barthelemy_32.png new file mode 100644 index 00000000..e7029985 Binary files /dev/null and b/tools/configurator/res/flags/france_saint_barthelemy_32.png differ diff --git a/tools/configurator/res/flags/france_saint_barthelemy_32.png.import b/tools/configurator/res/flags/france_saint_barthelemy_32.png.import new file mode 100644 index 00000000..fea249e7 --- /dev/null +++ b/tools/configurator/res/flags/france_saint_barthelemy_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rpl6r8erweds" +path="res://.godot/imported/france_saint_barthelemy_32.png-b5e4d3f4f9f18ff3bf9f1192b234a8e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_saint_barthelemy_32.png" +dest_files=["res://.godot/imported/france_saint_barthelemy_32.png-b5e4d3f4f9f18ff3bf9f1192b234a8e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_saint_pierre_and_miquelon_32.png b/tools/configurator/res/flags/france_saint_pierre_and_miquelon_32.png new file mode 100644 index 00000000..bbdc16f1 Binary files /dev/null and b/tools/configurator/res/flags/france_saint_pierre_and_miquelon_32.png differ diff --git a/tools/configurator/res/flags/france_saint_pierre_and_miquelon_32.png.import b/tools/configurator/res/flags/france_saint_pierre_and_miquelon_32.png.import new file mode 100644 index 00000000..b546a672 --- /dev/null +++ b/tools/configurator/res/flags/france_saint_pierre_and_miquelon_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clyegmqrktna5" +path="res://.godot/imported/france_saint_pierre_and_miquelon_32.png-c3d29b7d2f500d18d17b0b604b8df01a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_saint_pierre_and_miquelon_32.png" +dest_files=["res://.godot/imported/france_saint_pierre_and_miquelon_32.png-c3d29b7d2f500d18d17b0b604b8df01a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/france_wallis_and_futuna_32.png b/tools/configurator/res/flags/france_wallis_and_futuna_32.png new file mode 100644 index 00000000..1d80c86f Binary files /dev/null and b/tools/configurator/res/flags/france_wallis_and_futuna_32.png differ diff --git a/tools/configurator/res/flags/france_wallis_and_futuna_32.png.import b/tools/configurator/res/flags/france_wallis_and_futuna_32.png.import new file mode 100644 index 00000000..e5c0101c --- /dev/null +++ b/tools/configurator/res/flags/france_wallis_and_futuna_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cumjh4ulpd33u" +path="res://.godot/imported/france_wallis_and_futuna_32.png-e1b1f40eb92d5bc44ad8cdb4d92feea9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/france_wallis_and_futuna_32.png" +dest_files=["res://.godot/imported/france_wallis_and_futuna_32.png-e1b1f40eb92d5bc44ad8cdb4d92feea9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/georgia_32.png b/tools/configurator/res/flags/georgia_32.png new file mode 100644 index 00000000..1ddec37f Binary files /dev/null and b/tools/configurator/res/flags/georgia_32.png differ diff --git a/tools/configurator/res/flags/georgia_32.png.import b/tools/configurator/res/flags/georgia_32.png.import new file mode 100644 index 00000000..177163e9 --- /dev/null +++ b/tools/configurator/res/flags/georgia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfruqrbi1mouk" +path="res://.godot/imported/georgia_32.png-7828347d3b90d00868d4dfe6f0b59a7a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/georgia_32.png" +dest_files=["res://.godot/imported/georgia_32.png-7828347d3b90d00868d4dfe6f0b59a7a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/georgia_abkhazia_32.png b/tools/configurator/res/flags/georgia_abkhazia_32.png new file mode 100644 index 00000000..d953ba46 Binary files /dev/null and b/tools/configurator/res/flags/georgia_abkhazia_32.png differ diff --git a/tools/configurator/res/flags/georgia_abkhazia_32.png.import b/tools/configurator/res/flags/georgia_abkhazia_32.png.import new file mode 100644 index 00000000..b17a8809 --- /dev/null +++ b/tools/configurator/res/flags/georgia_abkhazia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb20xm865hmnk" +path="res://.godot/imported/georgia_abkhazia_32.png-b600e60b54ac24f423712dd489ec74bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/georgia_abkhazia_32.png" +dest_files=["res://.godot/imported/georgia_abkhazia_32.png-b600e60b54ac24f423712dd489ec74bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/georgia_adjara_32.png b/tools/configurator/res/flags/georgia_adjara_32.png new file mode 100644 index 00000000..57956297 Binary files /dev/null and b/tools/configurator/res/flags/georgia_adjara_32.png differ diff --git a/tools/configurator/res/flags/georgia_adjara_32.png.import b/tools/configurator/res/flags/georgia_adjara_32.png.import new file mode 100644 index 00000000..cff4a324 --- /dev/null +++ b/tools/configurator/res/flags/georgia_adjara_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpsyiqdgncx50" +path="res://.godot/imported/georgia_adjara_32.png-a96a31deb8d15529373b0ea100991c74.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/georgia_adjara_32.png" +dest_files=["res://.godot/imported/georgia_adjara_32.png-a96a31deb8d15529373b0ea100991c74.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/georgia_south_ossetia_32.png b/tools/configurator/res/flags/georgia_south_ossetia_32.png new file mode 100644 index 00000000..6c93e14f Binary files /dev/null and b/tools/configurator/res/flags/georgia_south_ossetia_32.png differ diff --git a/tools/configurator/res/flags/georgia_south_ossetia_32.png.import b/tools/configurator/res/flags/georgia_south_ossetia_32.png.import new file mode 100644 index 00000000..19261929 --- /dev/null +++ b/tools/configurator/res/flags/georgia_south_ossetia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dchati64wfshg" +path="res://.godot/imported/georgia_south_ossetia_32.png-7ddf3f500510f7bc0ba04337f801c06d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/georgia_south_ossetia_32.png" +dest_files=["res://.godot/imported/georgia_south_ossetia_32.png-7ddf3f500510f7bc0ba04337f801c06d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/georgia_tbilisi_32.png b/tools/configurator/res/flags/georgia_tbilisi_32.png new file mode 100644 index 00000000..5830167d Binary files /dev/null and b/tools/configurator/res/flags/georgia_tbilisi_32.png differ diff --git a/tools/configurator/res/flags/georgia_tbilisi_32.png.import b/tools/configurator/res/flags/georgia_tbilisi_32.png.import new file mode 100644 index 00000000..74d8bd3e --- /dev/null +++ b/tools/configurator/res/flags/georgia_tbilisi_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nevb2lf4ni3k" +path="res://.godot/imported/georgia_tbilisi_32.png-02d521787eb69d88190fac37be642e49.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/georgia_tbilisi_32.png" +dest_files=["res://.godot/imported/georgia_tbilisi_32.png-02d521787eb69d88190fac37be642e49.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/germany_32.png b/tools/configurator/res/flags/germany_32.png new file mode 100644 index 00000000..818bb769 Binary files /dev/null and b/tools/configurator/res/flags/germany_32.png differ diff --git a/tools/configurator/res/flags/germany_32.png.import b/tools/configurator/res/flags/germany_32.png.import new file mode 100644 index 00000000..1f6fd04d --- /dev/null +++ b/tools/configurator/res/flags/germany_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cti2vt14gxisl" +path="res://.godot/imported/germany_32.png-4b67e89cc316f781ac28fa9ad2591010.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/germany_32.png" +dest_files=["res://.godot/imported/germany_32.png-4b67e89cc316f781ac28fa9ad2591010.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/germany_baden_wurttemberg_32.png b/tools/configurator/res/flags/germany_baden_wurttemberg_32.png new file mode 100644 index 00000000..7a6321d8 Binary files /dev/null and b/tools/configurator/res/flags/germany_baden_wurttemberg_32.png differ diff --git a/tools/configurator/res/flags/germany_baden_wurttemberg_32.png.import b/tools/configurator/res/flags/germany_baden_wurttemberg_32.png.import new file mode 100644 index 00000000..7e87fa26 --- /dev/null +++ b/tools/configurator/res/flags/germany_baden_wurttemberg_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cay04f7iejrh4" +path="res://.godot/imported/germany_baden_wurttemberg_32.png-e9cd8947b656961837dfce098cf58352.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/germany_baden_wurttemberg_32.png" +dest_files=["res://.godot/imported/germany_baden_wurttemberg_32.png-e9cd8947b656961837dfce098cf58352.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/germany_bavaria_32.png b/tools/configurator/res/flags/germany_bavaria_32.png new file mode 100644 index 00000000..fa44a727 Binary files /dev/null and b/tools/configurator/res/flags/germany_bavaria_32.png differ diff --git a/tools/configurator/res/flags/germany_bavaria_32.png.import b/tools/configurator/res/flags/germany_bavaria_32.png.import new file mode 100644 index 00000000..c5f8bc15 --- /dev/null +++ b/tools/configurator/res/flags/germany_bavaria_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d370e7udhlgb" +path="res://.godot/imported/germany_bavaria_32.png-e8e0dc18cb00ffccf846f64005042e33.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/germany_bavaria_32.png" +dest_files=["res://.godot/imported/germany_bavaria_32.png-e8e0dc18cb00ffccf846f64005042e33.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/germany_berlin_32.png b/tools/configurator/res/flags/germany_berlin_32.png new file mode 100644 index 00000000..0fc1efbd Binary files /dev/null and b/tools/configurator/res/flags/germany_berlin_32.png differ diff --git a/tools/configurator/res/flags/germany_berlin_32.png.import b/tools/configurator/res/flags/germany_berlin_32.png.import new file mode 100644 index 00000000..911dd985 --- /dev/null +++ b/tools/configurator/res/flags/germany_berlin_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bexp5r7m6f67v" +path="res://.godot/imported/germany_berlin_32.png-46bd769a55a06081a0a86edcfbfc9757.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/germany_berlin_32.png" +dest_files=["res://.godot/imported/germany_berlin_32.png-46bd769a55a06081a0a86edcfbfc9757.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/germany_brandenburg_32.png b/tools/configurator/res/flags/germany_brandenburg_32.png new file mode 100644 index 00000000..46405dcf Binary files /dev/null and b/tools/configurator/res/flags/germany_brandenburg_32.png differ diff --git a/tools/configurator/res/flags/germany_brandenburg_32.png.import b/tools/configurator/res/flags/germany_brandenburg_32.png.import new file mode 100644 index 00000000..fe70fd31 --- /dev/null +++ b/tools/configurator/res/flags/germany_brandenburg_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cm6ddg1c668am" +path="res://.godot/imported/germany_brandenburg_32.png-4f3bf6839176b4aa51c44b15e31b3edb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/germany_brandenburg_32.png" +dest_files=["res://.godot/imported/germany_brandenburg_32.png-4f3bf6839176b4aa51c44b15e31b3edb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/germany_bremen_32.png b/tools/configurator/res/flags/germany_bremen_32.png new file mode 100644 index 00000000..c0512b53 Binary files /dev/null and b/tools/configurator/res/flags/germany_bremen_32.png differ diff --git a/tools/configurator/res/flags/germany_bremen_32.png.import b/tools/configurator/res/flags/germany_bremen_32.png.import new file mode 100644 index 00000000..72ed2c84 --- /dev/null +++ b/tools/configurator/res/flags/germany_bremen_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbdl01so1faou" +path="res://.godot/imported/germany_bremen_32.png-bfc487ec273763328ab2c83491e6edd3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/germany_bremen_32.png" +dest_files=["res://.godot/imported/germany_bremen_32.png-bfc487ec273763328ab2c83491e6edd3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/germany_hamburg_32.png b/tools/configurator/res/flags/germany_hamburg_32.png new file mode 100644 index 00000000..79d4c385 Binary files /dev/null and b/tools/configurator/res/flags/germany_hamburg_32.png differ diff --git a/tools/configurator/res/flags/germany_hamburg_32.png.import b/tools/configurator/res/flags/germany_hamburg_32.png.import new file mode 100644 index 00000000..c58ae384 --- /dev/null +++ b/tools/configurator/res/flags/germany_hamburg_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br40b33fcdl88" +path="res://.godot/imported/germany_hamburg_32.png-288372c543a2a3ba6d5991ccf4e4d31c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/germany_hamburg_32.png" +dest_files=["res://.godot/imported/germany_hamburg_32.png-288372c543a2a3ba6d5991ccf4e4d31c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/germany_hesse_32.png b/tools/configurator/res/flags/germany_hesse_32.png new file mode 100644 index 00000000..36d247d7 Binary files /dev/null and b/tools/configurator/res/flags/germany_hesse_32.png differ diff --git a/tools/configurator/res/flags/germany_hesse_32.png.import b/tools/configurator/res/flags/germany_hesse_32.png.import new file mode 100644 index 00000000..998a2f28 --- /dev/null +++ b/tools/configurator/res/flags/germany_hesse_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4s1amgehn4a3" +path="res://.godot/imported/germany_hesse_32.png-54f34479614aa82c1f2464aa7fe31077.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/germany_hesse_32.png" +dest_files=["res://.godot/imported/germany_hesse_32.png-54f34479614aa82c1f2464aa7fe31077.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/germany_lower_saxony_32.png b/tools/configurator/res/flags/germany_lower_saxony_32.png new file mode 100644 index 00000000..d5a5eed1 Binary files /dev/null and b/tools/configurator/res/flags/germany_lower_saxony_32.png differ diff --git a/tools/configurator/res/flags/germany_lower_saxony_32.png.import b/tools/configurator/res/flags/germany_lower_saxony_32.png.import new file mode 100644 index 00000000..bedf36d6 --- /dev/null +++ b/tools/configurator/res/flags/germany_lower_saxony_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2kkh2grj8ov5" +path="res://.godot/imported/germany_lower_saxony_32.png-ea6d808c76b74294cf92ba5086fac932.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/germany_lower_saxony_32.png" +dest_files=["res://.godot/imported/germany_lower_saxony_32.png-ea6d808c76b74294cf92ba5086fac932.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/germany_mecklenburg_vorpommern_32.png b/tools/configurator/res/flags/germany_mecklenburg_vorpommern_32.png new file mode 100644 index 00000000..bd433064 Binary files /dev/null and b/tools/configurator/res/flags/germany_mecklenburg_vorpommern_32.png differ diff --git a/tools/configurator/res/flags/germany_mecklenburg_vorpommern_32.png.import b/tools/configurator/res/flags/germany_mecklenburg_vorpommern_32.png.import new file mode 100644 index 00000000..b7217116 --- /dev/null +++ b/tools/configurator/res/flags/germany_mecklenburg_vorpommern_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuikp4phj21qm" +path="res://.godot/imported/germany_mecklenburg_vorpommern_32.png-85fbb5e8517bae6efacc2d3c775f7e94.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/germany_mecklenburg_vorpommern_32.png" +dest_files=["res://.godot/imported/germany_mecklenburg_vorpommern_32.png-85fbb5e8517bae6efacc2d3c775f7e94.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/germany_north_rhine_westphalia_32.png b/tools/configurator/res/flags/germany_north_rhine_westphalia_32.png new file mode 100644 index 00000000..332d5d2c Binary files /dev/null and b/tools/configurator/res/flags/germany_north_rhine_westphalia_32.png differ diff --git a/tools/configurator/res/flags/germany_north_rhine_westphalia_32.png.import b/tools/configurator/res/flags/germany_north_rhine_westphalia_32.png.import new file mode 100644 index 00000000..6bae5e26 --- /dev/null +++ b/tools/configurator/res/flags/germany_north_rhine_westphalia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cytmvrk30q16s" +path="res://.godot/imported/germany_north_rhine_westphalia_32.png-596518befe3b32513d777a4a79b12da6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/germany_north_rhine_westphalia_32.png" +dest_files=["res://.godot/imported/germany_north_rhine_westphalia_32.png-596518befe3b32513d777a4a79b12da6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/germany_rhineland_palatinate_32.png b/tools/configurator/res/flags/germany_rhineland_palatinate_32.png new file mode 100644 index 00000000..369a657a Binary files /dev/null and b/tools/configurator/res/flags/germany_rhineland_palatinate_32.png differ diff --git a/tools/configurator/res/flags/germany_rhineland_palatinate_32.png.import b/tools/configurator/res/flags/germany_rhineland_palatinate_32.png.import new file mode 100644 index 00000000..333b8bc1 --- /dev/null +++ b/tools/configurator/res/flags/germany_rhineland_palatinate_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bstm6b6vx7loj" +path="res://.godot/imported/germany_rhineland_palatinate_32.png-b8879588dadd8ad9f6918b9f7e71f5e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/germany_rhineland_palatinate_32.png" +dest_files=["res://.godot/imported/germany_rhineland_palatinate_32.png-b8879588dadd8ad9f6918b9f7e71f5e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/germany_saarland_32.png b/tools/configurator/res/flags/germany_saarland_32.png new file mode 100644 index 00000000..dc70acc2 Binary files /dev/null and b/tools/configurator/res/flags/germany_saarland_32.png differ diff --git a/tools/configurator/res/flags/germany_saarland_32.png.import b/tools/configurator/res/flags/germany_saarland_32.png.import new file mode 100644 index 00000000..79033945 --- /dev/null +++ b/tools/configurator/res/flags/germany_saarland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7bt87crumdo6" +path="res://.godot/imported/germany_saarland_32.png-a7711c7b9f989cd5784d9fd231b7ce34.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/germany_saarland_32.png" +dest_files=["res://.godot/imported/germany_saarland_32.png-a7711c7b9f989cd5784d9fd231b7ce34.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/germany_saxony_32.png b/tools/configurator/res/flags/germany_saxony_32.png new file mode 100644 index 00000000..0e628a16 Binary files /dev/null and b/tools/configurator/res/flags/germany_saxony_32.png differ diff --git a/tools/configurator/res/flags/germany_saxony_32.png.import b/tools/configurator/res/flags/germany_saxony_32.png.import new file mode 100644 index 00000000..e43f21d2 --- /dev/null +++ b/tools/configurator/res/flags/germany_saxony_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckkdscsaolulv" +path="res://.godot/imported/germany_saxony_32.png-8121b1a15b7892dc44ce66f95f898a2f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/germany_saxony_32.png" +dest_files=["res://.godot/imported/germany_saxony_32.png-8121b1a15b7892dc44ce66f95f898a2f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/germany_saxony_anhalt_32.png b/tools/configurator/res/flags/germany_saxony_anhalt_32.png new file mode 100644 index 00000000..97249f9b Binary files /dev/null and b/tools/configurator/res/flags/germany_saxony_anhalt_32.png differ diff --git a/tools/configurator/res/flags/germany_saxony_anhalt_32.png.import b/tools/configurator/res/flags/germany_saxony_anhalt_32.png.import new file mode 100644 index 00000000..04829138 --- /dev/null +++ b/tools/configurator/res/flags/germany_saxony_anhalt_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3v037iju6byj" +path="res://.godot/imported/germany_saxony_anhalt_32.png-1a1300261964c89eac870e2efc3a1291.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/germany_saxony_anhalt_32.png" +dest_files=["res://.godot/imported/germany_saxony_anhalt_32.png-1a1300261964c89eac870e2efc3a1291.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/germany_schleswig_holstein_32.png b/tools/configurator/res/flags/germany_schleswig_holstein_32.png new file mode 100644 index 00000000..de148afe Binary files /dev/null and b/tools/configurator/res/flags/germany_schleswig_holstein_32.png differ diff --git a/tools/configurator/res/flags/germany_schleswig_holstein_32.png.import b/tools/configurator/res/flags/germany_schleswig_holstein_32.png.import new file mode 100644 index 00000000..1f02254b --- /dev/null +++ b/tools/configurator/res/flags/germany_schleswig_holstein_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgsel3xtclgby" +path="res://.godot/imported/germany_schleswig_holstein_32.png-b75afa11516d2103c3b03d5a339ca490.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/germany_schleswig_holstein_32.png" +dest_files=["res://.godot/imported/germany_schleswig_holstein_32.png-b75afa11516d2103c3b03d5a339ca490.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/germany_thuringia_32.png b/tools/configurator/res/flags/germany_thuringia_32.png new file mode 100644 index 00000000..bd35b342 Binary files /dev/null and b/tools/configurator/res/flags/germany_thuringia_32.png differ diff --git a/tools/configurator/res/flags/germany_thuringia_32.png.import b/tools/configurator/res/flags/germany_thuringia_32.png.import new file mode 100644 index 00000000..3a83e74a --- /dev/null +++ b/tools/configurator/res/flags/germany_thuringia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxgr1uf0x4nm8" +path="res://.godot/imported/germany_thuringia_32.png-9fdb0ab1e8fd23335dc540d3dc543521.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/germany_thuringia_32.png" +dest_files=["res://.godot/imported/germany_thuringia_32.png-9fdb0ab1e8fd23335dc540d3dc543521.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/greece_32.png b/tools/configurator/res/flags/greece_32.png new file mode 100644 index 00000000..896941ae Binary files /dev/null and b/tools/configurator/res/flags/greece_32.png differ diff --git a/tools/configurator/res/flags/greece_32.png.import b/tools/configurator/res/flags/greece_32.png.import new file mode 100644 index 00000000..3dff8e47 --- /dev/null +++ b/tools/configurator/res/flags/greece_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du8w3me6pomdj" +path="res://.godot/imported/greece_32.png-298bdf22ea1f7b86a7bb2fbb1b93c986.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/greece_32.png" +dest_files=["res://.godot/imported/greece_32.png-298bdf22ea1f7b86a7bb2fbb1b93c986.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/hungary_32.png b/tools/configurator/res/flags/hungary_32.png new file mode 100644 index 00000000..c5652d4a Binary files /dev/null and b/tools/configurator/res/flags/hungary_32.png differ diff --git a/tools/configurator/res/flags/hungary_32.png.import b/tools/configurator/res/flags/hungary_32.png.import new file mode 100644 index 00000000..892369b1 --- /dev/null +++ b/tools/configurator/res/flags/hungary_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://74dhoo65snj6" +path="res://.godot/imported/hungary_32.png-f0ec43487d5cadcd5241bb5bc88b46d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/hungary_32.png" +dest_files=["res://.godot/imported/hungary_32.png-f0ec43487d5cadcd5241bb5bc88b46d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/iceland_32.png b/tools/configurator/res/flags/iceland_32.png new file mode 100644 index 00000000..59892b89 Binary files /dev/null and b/tools/configurator/res/flags/iceland_32.png differ diff --git a/tools/configurator/res/flags/iceland_32.png.import b/tools/configurator/res/flags/iceland_32.png.import new file mode 100644 index 00000000..f21519d8 --- /dev/null +++ b/tools/configurator/res/flags/iceland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmaor6wbvos6k" +path="res://.godot/imported/iceland_32.png-ca8f16a1f142c8cd990e010216cc99e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/iceland_32.png" +dest_files=["res://.godot/imported/iceland_32.png-ca8f16a1f142c8cd990e010216cc99e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/india_32.png b/tools/configurator/res/flags/india_32.png new file mode 100644 index 00000000..f2e91a35 Binary files /dev/null and b/tools/configurator/res/flags/india_32.png differ diff --git a/tools/configurator/res/flags/india_32.png.import b/tools/configurator/res/flags/india_32.png.import new file mode 100644 index 00000000..09947259 --- /dev/null +++ b/tools/configurator/res/flags/india_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cw3dkojnaev84" +path="res://.godot/imported/india_32.png-e640fb75f54c94f3f2e7e6faa17068df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/india_32.png" +dest_files=["res://.godot/imported/india_32.png-e640fb75f54c94f3f2e7e6faa17068df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/indonesia_32.png b/tools/configurator/res/flags/indonesia_32.png new file mode 100644 index 00000000..1e4aac33 Binary files /dev/null and b/tools/configurator/res/flags/indonesia_32.png differ diff --git a/tools/configurator/res/flags/indonesia_32.png.import b/tools/configurator/res/flags/indonesia_32.png.import new file mode 100644 index 00000000..2e568539 --- /dev/null +++ b/tools/configurator/res/flags/indonesia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dymvs256fyadu" +path="res://.godot/imported/indonesia_32.png-b3dbefd5e4f0dceb20b6da7a3ded1980.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/indonesia_32.png" +dest_files=["res://.godot/imported/indonesia_32.png-b3dbefd5e4f0dceb20b6da7a3ded1980.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/ireland_32.png b/tools/configurator/res/flags/ireland_32.png new file mode 100644 index 00000000..f59c5f5f Binary files /dev/null and b/tools/configurator/res/flags/ireland_32.png differ diff --git a/tools/configurator/res/flags/ireland_32.png.import b/tools/configurator/res/flags/ireland_32.png.import new file mode 100644 index 00000000..6a184b44 --- /dev/null +++ b/tools/configurator/res/flags/ireland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btnoeq2jr6pq0" +path="res://.godot/imported/ireland_32.png-38d4ff5599deeeac8bf952bbd9ad7bba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/ireland_32.png" +dest_files=["res://.godot/imported/ireland_32.png-38d4ff5599deeeac8bf952bbd9ad7bba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/ireland_connacht_32.png b/tools/configurator/res/flags/ireland_connacht_32.png new file mode 100644 index 00000000..084b89d5 Binary files /dev/null and b/tools/configurator/res/flags/ireland_connacht_32.png differ diff --git a/tools/configurator/res/flags/ireland_connacht_32.png.import b/tools/configurator/res/flags/ireland_connacht_32.png.import new file mode 100644 index 00000000..48377637 --- /dev/null +++ b/tools/configurator/res/flags/ireland_connacht_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4l8il1iwlpw8" +path="res://.godot/imported/ireland_connacht_32.png-827a78f31ab2c848e27e1cd62af6acec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/ireland_connacht_32.png" +dest_files=["res://.godot/imported/ireland_connacht_32.png-827a78f31ab2c848e27e1cd62af6acec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/ireland_leinster_32.png b/tools/configurator/res/flags/ireland_leinster_32.png new file mode 100644 index 00000000..60f40ce1 Binary files /dev/null and b/tools/configurator/res/flags/ireland_leinster_32.png differ diff --git a/tools/configurator/res/flags/ireland_leinster_32.png.import b/tools/configurator/res/flags/ireland_leinster_32.png.import new file mode 100644 index 00000000..e14ed321 --- /dev/null +++ b/tools/configurator/res/flags/ireland_leinster_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1mvo2fm1biwa" +path="res://.godot/imported/ireland_leinster_32.png-54cffa1614377f2c37d50137a8a815ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/ireland_leinster_32.png" +dest_files=["res://.godot/imported/ireland_leinster_32.png-54cffa1614377f2c37d50137a8a815ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/ireland_munster_32.png b/tools/configurator/res/flags/ireland_munster_32.png new file mode 100644 index 00000000..e2884399 Binary files /dev/null and b/tools/configurator/res/flags/ireland_munster_32.png differ diff --git a/tools/configurator/res/flags/ireland_munster_32.png.import b/tools/configurator/res/flags/ireland_munster_32.png.import new file mode 100644 index 00000000..4174add4 --- /dev/null +++ b/tools/configurator/res/flags/ireland_munster_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bivftc16wsklg" +path="res://.godot/imported/ireland_munster_32.png-8dacbc418fe7903872d7977723ee790e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/ireland_munster_32.png" +dest_files=["res://.godot/imported/ireland_munster_32.png-8dacbc418fe7903872d7977723ee790e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/ireland_ulster_32.png b/tools/configurator/res/flags/ireland_ulster_32.png new file mode 100644 index 00000000..3a06a57e Binary files /dev/null and b/tools/configurator/res/flags/ireland_ulster_32.png differ diff --git a/tools/configurator/res/flags/ireland_ulster_32.png.import b/tools/configurator/res/flags/ireland_ulster_32.png.import new file mode 100644 index 00000000..b2121060 --- /dev/null +++ b/tools/configurator/res/flags/ireland_ulster_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmnjkbry6ls77" +path="res://.godot/imported/ireland_ulster_32.png-54470cba0106813a27b9b57a577e122d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/ireland_ulster_32.png" +dest_files=["res://.godot/imported/ireland_ulster_32.png-54470cba0106813a27b9b57a577e122d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_32.png b/tools/configurator/res/flags/italy_32.png new file mode 100644 index 00000000..23aa3f4d Binary files /dev/null and b/tools/configurator/res/flags/italy_32.png differ diff --git a/tools/configurator/res/flags/italy_32.png.import b/tools/configurator/res/flags/italy_32.png.import new file mode 100644 index 00000000..65d09dcf --- /dev/null +++ b/tools/configurator/res/flags/italy_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cru43y7hco6kh" +path="res://.godot/imported/italy_32.png-53653a602a0642276ac461487fd91246.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_32.png" +dest_files=["res://.godot/imported/italy_32.png-53653a602a0642276ac461487fd91246.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_abruzzo_32.png b/tools/configurator/res/flags/italy_abruzzo_32.png new file mode 100644 index 00000000..68d9633a Binary files /dev/null and b/tools/configurator/res/flags/italy_abruzzo_32.png differ diff --git a/tools/configurator/res/flags/italy_abruzzo_32.png.import b/tools/configurator/res/flags/italy_abruzzo_32.png.import new file mode 100644 index 00000000..f480562d --- /dev/null +++ b/tools/configurator/res/flags/italy_abruzzo_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c52tuanntvk40" +path="res://.godot/imported/italy_abruzzo_32.png-5650f7a8fcf880d48868234c8874c6c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_abruzzo_32.png" +dest_files=["res://.godot/imported/italy_abruzzo_32.png-5650f7a8fcf880d48868234c8874c6c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_aosta_valley_32.png b/tools/configurator/res/flags/italy_aosta_valley_32.png new file mode 100644 index 00000000..fab8c684 Binary files /dev/null and b/tools/configurator/res/flags/italy_aosta_valley_32.png differ diff --git a/tools/configurator/res/flags/italy_aosta_valley_32.png.import b/tools/configurator/res/flags/italy_aosta_valley_32.png.import new file mode 100644 index 00000000..85249e86 --- /dev/null +++ b/tools/configurator/res/flags/italy_aosta_valley_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://caig5djsi0eyy" +path="res://.godot/imported/italy_aosta_valley_32.png-8b065361b9b19f758b3ec1d710c79d97.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_aosta_valley_32.png" +dest_files=["res://.godot/imported/italy_aosta_valley_32.png-8b065361b9b19f758b3ec1d710c79d97.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_apulia_32.png b/tools/configurator/res/flags/italy_apulia_32.png new file mode 100644 index 00000000..e691d9e9 Binary files /dev/null and b/tools/configurator/res/flags/italy_apulia_32.png differ diff --git a/tools/configurator/res/flags/italy_apulia_32.png.import b/tools/configurator/res/flags/italy_apulia_32.png.import new file mode 100644 index 00000000..ebcb6896 --- /dev/null +++ b/tools/configurator/res/flags/italy_apulia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl7ja8rsr58js" +path="res://.godot/imported/italy_apulia_32.png-2d29a3b868163456beb60487c2fdadf9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_apulia_32.png" +dest_files=["res://.godot/imported/italy_apulia_32.png-2d29a3b868163456beb60487c2fdadf9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_basilicata_32.png b/tools/configurator/res/flags/italy_basilicata_32.png new file mode 100644 index 00000000..38b50729 Binary files /dev/null and b/tools/configurator/res/flags/italy_basilicata_32.png differ diff --git a/tools/configurator/res/flags/italy_basilicata_32.png.import b/tools/configurator/res/flags/italy_basilicata_32.png.import new file mode 100644 index 00000000..5f265f3c --- /dev/null +++ b/tools/configurator/res/flags/italy_basilicata_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgjvibi0u2m2k" +path="res://.godot/imported/italy_basilicata_32.png-ea3a81e1e62d513465594c034710a034.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_basilicata_32.png" +dest_files=["res://.godot/imported/italy_basilicata_32.png-ea3a81e1e62d513465594c034710a034.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_calabria_32.png b/tools/configurator/res/flags/italy_calabria_32.png new file mode 100644 index 00000000..e063ef56 Binary files /dev/null and b/tools/configurator/res/flags/italy_calabria_32.png differ diff --git a/tools/configurator/res/flags/italy_calabria_32.png.import b/tools/configurator/res/flags/italy_calabria_32.png.import new file mode 100644 index 00000000..8e5e140c --- /dev/null +++ b/tools/configurator/res/flags/italy_calabria_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfg3tal64r8oo" +path="res://.godot/imported/italy_calabria_32.png-21f86be06b9c2d83198617121e75d3fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_calabria_32.png" +dest_files=["res://.godot/imported/italy_calabria_32.png-21f86be06b9c2d83198617121e75d3fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_campania_32.png b/tools/configurator/res/flags/italy_campania_32.png new file mode 100644 index 00000000..496c98ac Binary files /dev/null and b/tools/configurator/res/flags/italy_campania_32.png differ diff --git a/tools/configurator/res/flags/italy_campania_32.png.import b/tools/configurator/res/flags/italy_campania_32.png.import new file mode 100644 index 00000000..f63ab4df --- /dev/null +++ b/tools/configurator/res/flags/italy_campania_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjby3fkl2tn33" +path="res://.godot/imported/italy_campania_32.png-eaf280e015569381025b8098bbbd540c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_campania_32.png" +dest_files=["res://.godot/imported/italy_campania_32.png-eaf280e015569381025b8098bbbd540c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_emilia_romagna_32.png b/tools/configurator/res/flags/italy_emilia_romagna_32.png new file mode 100644 index 00000000..70913e38 Binary files /dev/null and b/tools/configurator/res/flags/italy_emilia_romagna_32.png differ diff --git a/tools/configurator/res/flags/italy_emilia_romagna_32.png.import b/tools/configurator/res/flags/italy_emilia_romagna_32.png.import new file mode 100644 index 00000000..56ae4acf --- /dev/null +++ b/tools/configurator/res/flags/italy_emilia_romagna_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqgcgss4ilrj7" +path="res://.godot/imported/italy_emilia_romagna_32.png-86d50f2bf829241bec8c43a660de5c08.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_emilia_romagna_32.png" +dest_files=["res://.godot/imported/italy_emilia_romagna_32.png-86d50f2bf829241bec8c43a660de5c08.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_friuli_venezia_giulia_32.png b/tools/configurator/res/flags/italy_friuli_venezia_giulia_32.png new file mode 100644 index 00000000..5330ce76 Binary files /dev/null and b/tools/configurator/res/flags/italy_friuli_venezia_giulia_32.png differ diff --git a/tools/configurator/res/flags/italy_friuli_venezia_giulia_32.png.import b/tools/configurator/res/flags/italy_friuli_venezia_giulia_32.png.import new file mode 100644 index 00000000..5a4c5eff --- /dev/null +++ b/tools/configurator/res/flags/italy_friuli_venezia_giulia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgfvklmiucwl3" +path="res://.godot/imported/italy_friuli_venezia_giulia_32.png-1a6da1eb82e40c75eaba2dc71b56626a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_friuli_venezia_giulia_32.png" +dest_files=["res://.godot/imported/italy_friuli_venezia_giulia_32.png-1a6da1eb82e40c75eaba2dc71b56626a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_lazio_32.png b/tools/configurator/res/flags/italy_lazio_32.png new file mode 100644 index 00000000..0ee235ef Binary files /dev/null and b/tools/configurator/res/flags/italy_lazio_32.png differ diff --git a/tools/configurator/res/flags/italy_lazio_32.png.import b/tools/configurator/res/flags/italy_lazio_32.png.import new file mode 100644 index 00000000..e42b4dfa --- /dev/null +++ b/tools/configurator/res/flags/italy_lazio_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bylmpoeaks35n" +path="res://.godot/imported/italy_lazio_32.png-63c3180164f0fc73977c6a822bfbe46d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_lazio_32.png" +dest_files=["res://.godot/imported/italy_lazio_32.png-63c3180164f0fc73977c6a822bfbe46d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_liguria_32.png b/tools/configurator/res/flags/italy_liguria_32.png new file mode 100644 index 00000000..b4db67c6 Binary files /dev/null and b/tools/configurator/res/flags/italy_liguria_32.png differ diff --git a/tools/configurator/res/flags/italy_liguria_32.png.import b/tools/configurator/res/flags/italy_liguria_32.png.import new file mode 100644 index 00000000..a4a38ba2 --- /dev/null +++ b/tools/configurator/res/flags/italy_liguria_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfphv1m505a8v" +path="res://.godot/imported/italy_liguria_32.png-247a51f32ceeacb00b08142740c95358.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_liguria_32.png" +dest_files=["res://.godot/imported/italy_liguria_32.png-247a51f32ceeacb00b08142740c95358.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_lombardy_32.png b/tools/configurator/res/flags/italy_lombardy_32.png new file mode 100644 index 00000000..d4778e42 Binary files /dev/null and b/tools/configurator/res/flags/italy_lombardy_32.png differ diff --git a/tools/configurator/res/flags/italy_lombardy_32.png.import b/tools/configurator/res/flags/italy_lombardy_32.png.import new file mode 100644 index 00000000..f37f0e79 --- /dev/null +++ b/tools/configurator/res/flags/italy_lombardy_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dskjy18wq7q27" +path="res://.godot/imported/italy_lombardy_32.png-724e6a8331100b7469c791b593a018af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_lombardy_32.png" +dest_files=["res://.godot/imported/italy_lombardy_32.png-724e6a8331100b7469c791b593a018af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_marche_32.png b/tools/configurator/res/flags/italy_marche_32.png new file mode 100644 index 00000000..1b17bebd Binary files /dev/null and b/tools/configurator/res/flags/italy_marche_32.png differ diff --git a/tools/configurator/res/flags/italy_marche_32.png.import b/tools/configurator/res/flags/italy_marche_32.png.import new file mode 100644 index 00000000..3b9e75f2 --- /dev/null +++ b/tools/configurator/res/flags/italy_marche_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk7p0hjll1hpo" +path="res://.godot/imported/italy_marche_32.png-f2e25914168f23c8dac71b4e01de7884.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_marche_32.png" +dest_files=["res://.godot/imported/italy_marche_32.png-f2e25914168f23c8dac71b4e01de7884.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_molise_32.png b/tools/configurator/res/flags/italy_molise_32.png new file mode 100644 index 00000000..cba6f89f Binary files /dev/null and b/tools/configurator/res/flags/italy_molise_32.png differ diff --git a/tools/configurator/res/flags/italy_molise_32.png.import b/tools/configurator/res/flags/italy_molise_32.png.import new file mode 100644 index 00000000..05583f2a --- /dev/null +++ b/tools/configurator/res/flags/italy_molise_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de5q3e24bgyge" +path="res://.godot/imported/italy_molise_32.png-a2cef52c6bc06f8e00a0622bc29890bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_molise_32.png" +dest_files=["res://.godot/imported/italy_molise_32.png-a2cef52c6bc06f8e00a0622bc29890bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_piedmont_32.png b/tools/configurator/res/flags/italy_piedmont_32.png new file mode 100644 index 00000000..cd067281 Binary files /dev/null and b/tools/configurator/res/flags/italy_piedmont_32.png differ diff --git a/tools/configurator/res/flags/italy_piedmont_32.png.import b/tools/configurator/res/flags/italy_piedmont_32.png.import new file mode 100644 index 00000000..c29a0040 --- /dev/null +++ b/tools/configurator/res/flags/italy_piedmont_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpsev8nr2q6lx" +path="res://.godot/imported/italy_piedmont_32.png-f89aa1f64a0c6b10eb0dc462f1f5a9ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_piedmont_32.png" +dest_files=["res://.godot/imported/italy_piedmont_32.png-f89aa1f64a0c6b10eb0dc462f1f5a9ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_sardinia_32.png b/tools/configurator/res/flags/italy_sardinia_32.png new file mode 100644 index 00000000..c2e4950b Binary files /dev/null and b/tools/configurator/res/flags/italy_sardinia_32.png differ diff --git a/tools/configurator/res/flags/italy_sardinia_32.png.import b/tools/configurator/res/flags/italy_sardinia_32.png.import new file mode 100644 index 00000000..f88f6286 --- /dev/null +++ b/tools/configurator/res/flags/italy_sardinia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjvbkwdxry6ws" +path="res://.godot/imported/italy_sardinia_32.png-09250612bae6a188b6d1da6fe12e646a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_sardinia_32.png" +dest_files=["res://.godot/imported/italy_sardinia_32.png-09250612bae6a188b6d1da6fe12e646a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_sicily_32.png b/tools/configurator/res/flags/italy_sicily_32.png new file mode 100644 index 00000000..3e796bd9 Binary files /dev/null and b/tools/configurator/res/flags/italy_sicily_32.png differ diff --git a/tools/configurator/res/flags/italy_sicily_32.png.import b/tools/configurator/res/flags/italy_sicily_32.png.import new file mode 100644 index 00000000..53593b66 --- /dev/null +++ b/tools/configurator/res/flags/italy_sicily_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3twbd2ns8uvo" +path="res://.godot/imported/italy_sicily_32.png-5510eb394ba0e422222155302552a0f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_sicily_32.png" +dest_files=["res://.godot/imported/italy_sicily_32.png-5510eb394ba0e422222155302552a0f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_trentino_south_tyrol_32.png b/tools/configurator/res/flags/italy_trentino_south_tyrol_32.png new file mode 100644 index 00000000..7b49a05f Binary files /dev/null and b/tools/configurator/res/flags/italy_trentino_south_tyrol_32.png differ diff --git a/tools/configurator/res/flags/italy_trentino_south_tyrol_32.png.import b/tools/configurator/res/flags/italy_trentino_south_tyrol_32.png.import new file mode 100644 index 00000000..5c85b6c0 --- /dev/null +++ b/tools/configurator/res/flags/italy_trentino_south_tyrol_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pbolkaxtld4r" +path="res://.godot/imported/italy_trentino_south_tyrol_32.png-9753d1fcfe17dc67d1c6eaf399d11c51.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_trentino_south_tyrol_32.png" +dest_files=["res://.godot/imported/italy_trentino_south_tyrol_32.png-9753d1fcfe17dc67d1c6eaf399d11c51.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_tuscany_32.png b/tools/configurator/res/flags/italy_tuscany_32.png new file mode 100644 index 00000000..882cd62f Binary files /dev/null and b/tools/configurator/res/flags/italy_tuscany_32.png differ diff --git a/tools/configurator/res/flags/italy_tuscany_32.png.import b/tools/configurator/res/flags/italy_tuscany_32.png.import new file mode 100644 index 00000000..9bce5b99 --- /dev/null +++ b/tools/configurator/res/flags/italy_tuscany_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csxjwu6jxjj8q" +path="res://.godot/imported/italy_tuscany_32.png-de90ed1dc608ecbaa68fdc64a228e31a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_tuscany_32.png" +dest_files=["res://.godot/imported/italy_tuscany_32.png-de90ed1dc608ecbaa68fdc64a228e31a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_umbria_32.png b/tools/configurator/res/flags/italy_umbria_32.png new file mode 100644 index 00000000..e79f8516 Binary files /dev/null and b/tools/configurator/res/flags/italy_umbria_32.png differ diff --git a/tools/configurator/res/flags/italy_umbria_32.png.import b/tools/configurator/res/flags/italy_umbria_32.png.import new file mode 100644 index 00000000..cd6c7468 --- /dev/null +++ b/tools/configurator/res/flags/italy_umbria_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://v2ganmejq7fv" +path="res://.godot/imported/italy_umbria_32.png-6d7edfcbff26c379535ac49399870150.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_umbria_32.png" +dest_files=["res://.godot/imported/italy_umbria_32.png-6d7edfcbff26c379535ac49399870150.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/italy_veneto_32.png b/tools/configurator/res/flags/italy_veneto_32.png new file mode 100644 index 00000000..10380b60 Binary files /dev/null and b/tools/configurator/res/flags/italy_veneto_32.png differ diff --git a/tools/configurator/res/flags/italy_veneto_32.png.import b/tools/configurator/res/flags/italy_veneto_32.png.import new file mode 100644 index 00000000..e910aea2 --- /dev/null +++ b/tools/configurator/res/flags/italy_veneto_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc5kw1t17v1g1" +path="res://.godot/imported/italy_veneto_32.png-a46c3c553a6d85391b34500a206fb6c1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/italy_veneto_32.png" +dest_files=["res://.godot/imported/italy_veneto_32.png-a46c3c553a6d85391b34500a206fb6c1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_32.png b/tools/configurator/res/flags/japan_32.png new file mode 100644 index 00000000..6576a69c Binary files /dev/null and b/tools/configurator/res/flags/japan_32.png differ diff --git a/tools/configurator/res/flags/japan_32.png.import b/tools/configurator/res/flags/japan_32.png.import new file mode 100644 index 00000000..ce42b9f6 --- /dev/null +++ b/tools/configurator/res/flags/japan_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtwjo7co226dw" +path="res://.godot/imported/japan_32.png-9fe84a21762b7b8540d5dfaabe8fd0c9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_32.png" +dest_files=["res://.godot/imported/japan_32.png-9fe84a21762b7b8540d5dfaabe8fd0c9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_aichi_32.png b/tools/configurator/res/flags/japan_aichi_32.png new file mode 100644 index 00000000..83f6795c Binary files /dev/null and b/tools/configurator/res/flags/japan_aichi_32.png differ diff --git a/tools/configurator/res/flags/japan_aichi_32.png.import b/tools/configurator/res/flags/japan_aichi_32.png.import new file mode 100644 index 00000000..e2cf3f6c --- /dev/null +++ b/tools/configurator/res/flags/japan_aichi_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqbs0wkl5nr2p" +path="res://.godot/imported/japan_aichi_32.png-05e7e348a7e52b502d058543017defac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_aichi_32.png" +dest_files=["res://.godot/imported/japan_aichi_32.png-05e7e348a7e52b502d058543017defac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_akita_32.png b/tools/configurator/res/flags/japan_akita_32.png new file mode 100644 index 00000000..88ace94f Binary files /dev/null and b/tools/configurator/res/flags/japan_akita_32.png differ diff --git a/tools/configurator/res/flags/japan_akita_32.png.import b/tools/configurator/res/flags/japan_akita_32.png.import new file mode 100644 index 00000000..32a5ba9b --- /dev/null +++ b/tools/configurator/res/flags/japan_akita_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcjokbgm2nub" +path="res://.godot/imported/japan_akita_32.png-1a54d3613784a2903bd359a18657b999.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_akita_32.png" +dest_files=["res://.godot/imported/japan_akita_32.png-1a54d3613784a2903bd359a18657b999.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_aomori_32.png b/tools/configurator/res/flags/japan_aomori_32.png new file mode 100644 index 00000000..88606a25 Binary files /dev/null and b/tools/configurator/res/flags/japan_aomori_32.png differ diff --git a/tools/configurator/res/flags/japan_aomori_32.png.import b/tools/configurator/res/flags/japan_aomori_32.png.import new file mode 100644 index 00000000..8af59662 --- /dev/null +++ b/tools/configurator/res/flags/japan_aomori_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvjhe2uth2nan" +path="res://.godot/imported/japan_aomori_32.png-e466d6cd2636e0b735ace32e45f964db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_aomori_32.png" +dest_files=["res://.godot/imported/japan_aomori_32.png-e466d6cd2636e0b735ace32e45f964db.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_chiba_32.png b/tools/configurator/res/flags/japan_chiba_32.png new file mode 100644 index 00000000..e6ebfb1a Binary files /dev/null and b/tools/configurator/res/flags/japan_chiba_32.png differ diff --git a/tools/configurator/res/flags/japan_chiba_32.png.import b/tools/configurator/res/flags/japan_chiba_32.png.import new file mode 100644 index 00000000..a02f5f6e --- /dev/null +++ b/tools/configurator/res/flags/japan_chiba_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7e1eini8hrsw" +path="res://.godot/imported/japan_chiba_32.png-828328dadd32b2adb756304c8f9841c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_chiba_32.png" +dest_files=["res://.godot/imported/japan_chiba_32.png-828328dadd32b2adb756304c8f9841c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_ehime_32.png b/tools/configurator/res/flags/japan_ehime_32.png new file mode 100644 index 00000000..151875c8 Binary files /dev/null and b/tools/configurator/res/flags/japan_ehime_32.png differ diff --git a/tools/configurator/res/flags/japan_ehime_32.png.import b/tools/configurator/res/flags/japan_ehime_32.png.import new file mode 100644 index 00000000..d61861a6 --- /dev/null +++ b/tools/configurator/res/flags/japan_ehime_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg8wyhtpnedqu" +path="res://.godot/imported/japan_ehime_32.png-be494555bd74d62ec7e6a7d25dcd1779.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_ehime_32.png" +dest_files=["res://.godot/imported/japan_ehime_32.png-be494555bd74d62ec7e6a7d25dcd1779.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_fukui_32.png b/tools/configurator/res/flags/japan_fukui_32.png new file mode 100644 index 00000000..ddc84b4a Binary files /dev/null and b/tools/configurator/res/flags/japan_fukui_32.png differ diff --git a/tools/configurator/res/flags/japan_fukui_32.png.import b/tools/configurator/res/flags/japan_fukui_32.png.import new file mode 100644 index 00000000..a5c66a34 --- /dev/null +++ b/tools/configurator/res/flags/japan_fukui_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkvth2mw218el" +path="res://.godot/imported/japan_fukui_32.png-cf00934da28814c0919ac0103da8fac7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_fukui_32.png" +dest_files=["res://.godot/imported/japan_fukui_32.png-cf00934da28814c0919ac0103da8fac7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_fukuoka_32.png b/tools/configurator/res/flags/japan_fukuoka_32.png new file mode 100644 index 00000000..b1d7685d Binary files /dev/null and b/tools/configurator/res/flags/japan_fukuoka_32.png differ diff --git a/tools/configurator/res/flags/japan_fukuoka_32.png.import b/tools/configurator/res/flags/japan_fukuoka_32.png.import new file mode 100644 index 00000000..c6dcb3e8 --- /dev/null +++ b/tools/configurator/res/flags/japan_fukuoka_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d5h6jy3h1txy" +path="res://.godot/imported/japan_fukuoka_32.png-dda5108ce784d566a06e40bf074e9df5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_fukuoka_32.png" +dest_files=["res://.godot/imported/japan_fukuoka_32.png-dda5108ce784d566a06e40bf074e9df5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_fukushima_32.png b/tools/configurator/res/flags/japan_fukushima_32.png new file mode 100644 index 00000000..52f37b1e Binary files /dev/null and b/tools/configurator/res/flags/japan_fukushima_32.png differ diff --git a/tools/configurator/res/flags/japan_fukushima_32.png.import b/tools/configurator/res/flags/japan_fukushima_32.png.import new file mode 100644 index 00000000..4f0009d5 --- /dev/null +++ b/tools/configurator/res/flags/japan_fukushima_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcud5yovymjvh" +path="res://.godot/imported/japan_fukushima_32.png-6b589c795399dbf968494d541174abe2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_fukushima_32.png" +dest_files=["res://.godot/imported/japan_fukushima_32.png-6b589c795399dbf968494d541174abe2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_gifu_32.png b/tools/configurator/res/flags/japan_gifu_32.png new file mode 100644 index 00000000..85294552 Binary files /dev/null and b/tools/configurator/res/flags/japan_gifu_32.png differ diff --git a/tools/configurator/res/flags/japan_gifu_32.png.import b/tools/configurator/res/flags/japan_gifu_32.png.import new file mode 100644 index 00000000..c2c1b58a --- /dev/null +++ b/tools/configurator/res/flags/japan_gifu_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bx2y33b6cwpq6" +path="res://.godot/imported/japan_gifu_32.png-1b0e0ff53d55c17201eca3a342700b1d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_gifu_32.png" +dest_files=["res://.godot/imported/japan_gifu_32.png-1b0e0ff53d55c17201eca3a342700b1d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_gunma_32.png b/tools/configurator/res/flags/japan_gunma_32.png new file mode 100644 index 00000000..6c386b98 Binary files /dev/null and b/tools/configurator/res/flags/japan_gunma_32.png differ diff --git a/tools/configurator/res/flags/japan_gunma_32.png.import b/tools/configurator/res/flags/japan_gunma_32.png.import new file mode 100644 index 00000000..7b3f83a8 --- /dev/null +++ b/tools/configurator/res/flags/japan_gunma_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdldjeslo65f8" +path="res://.godot/imported/japan_gunma_32.png-470fef8d16f4c2a6a6bf8f767529757e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_gunma_32.png" +dest_files=["res://.godot/imported/japan_gunma_32.png-470fef8d16f4c2a6a6bf8f767529757e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_hiroshima_32.png b/tools/configurator/res/flags/japan_hiroshima_32.png new file mode 100644 index 00000000..6007d0a9 Binary files /dev/null and b/tools/configurator/res/flags/japan_hiroshima_32.png differ diff --git a/tools/configurator/res/flags/japan_hiroshima_32.png.import b/tools/configurator/res/flags/japan_hiroshima_32.png.import new file mode 100644 index 00000000..a68c65ed --- /dev/null +++ b/tools/configurator/res/flags/japan_hiroshima_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csk4ycrtrc7by" +path="res://.godot/imported/japan_hiroshima_32.png-2ff8bbce7362959741e361410ea51006.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_hiroshima_32.png" +dest_files=["res://.godot/imported/japan_hiroshima_32.png-2ff8bbce7362959741e361410ea51006.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_hokkaido_32.png b/tools/configurator/res/flags/japan_hokkaido_32.png new file mode 100644 index 00000000..1c5a0be2 Binary files /dev/null and b/tools/configurator/res/flags/japan_hokkaido_32.png differ diff --git a/tools/configurator/res/flags/japan_hokkaido_32.png.import b/tools/configurator/res/flags/japan_hokkaido_32.png.import new file mode 100644 index 00000000..6b04e80c --- /dev/null +++ b/tools/configurator/res/flags/japan_hokkaido_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jx3rojq7488x" +path="res://.godot/imported/japan_hokkaido_32.png-7c3858875cc57c5b949b20d59979de75.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_hokkaido_32.png" +dest_files=["res://.godot/imported/japan_hokkaido_32.png-7c3858875cc57c5b949b20d59979de75.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_hyogo_32.png b/tools/configurator/res/flags/japan_hyogo_32.png new file mode 100644 index 00000000..dd0a0758 Binary files /dev/null and b/tools/configurator/res/flags/japan_hyogo_32.png differ diff --git a/tools/configurator/res/flags/japan_hyogo_32.png.import b/tools/configurator/res/flags/japan_hyogo_32.png.import new file mode 100644 index 00000000..4f26087f --- /dev/null +++ b/tools/configurator/res/flags/japan_hyogo_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lpvs1dldfsqb" +path="res://.godot/imported/japan_hyogo_32.png-2431f66fb015082faf32a9afa72b5d0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_hyogo_32.png" +dest_files=["res://.godot/imported/japan_hyogo_32.png-2431f66fb015082faf32a9afa72b5d0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_ibaraki_32.png b/tools/configurator/res/flags/japan_ibaraki_32.png new file mode 100644 index 00000000..079daf34 Binary files /dev/null and b/tools/configurator/res/flags/japan_ibaraki_32.png differ diff --git a/tools/configurator/res/flags/japan_ibaraki_32.png.import b/tools/configurator/res/flags/japan_ibaraki_32.png.import new file mode 100644 index 00000000..7a521a25 --- /dev/null +++ b/tools/configurator/res/flags/japan_ibaraki_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj2t34hxq470w" +path="res://.godot/imported/japan_ibaraki_32.png-4e181162896d8bff2e51aa0a7caf04a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_ibaraki_32.png" +dest_files=["res://.godot/imported/japan_ibaraki_32.png-4e181162896d8bff2e51aa0a7caf04a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_ishikawa_32.png b/tools/configurator/res/flags/japan_ishikawa_32.png new file mode 100644 index 00000000..e5fcd91b Binary files /dev/null and b/tools/configurator/res/flags/japan_ishikawa_32.png differ diff --git a/tools/configurator/res/flags/japan_ishikawa_32.png.import b/tools/configurator/res/flags/japan_ishikawa_32.png.import new file mode 100644 index 00000000..d83e0094 --- /dev/null +++ b/tools/configurator/res/flags/japan_ishikawa_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw5kf5n56j5kn" +path="res://.godot/imported/japan_ishikawa_32.png-dafe473717ae1d19e63e477501d6d070.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_ishikawa_32.png" +dest_files=["res://.godot/imported/japan_ishikawa_32.png-dafe473717ae1d19e63e477501d6d070.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_iwate_32.png b/tools/configurator/res/flags/japan_iwate_32.png new file mode 100644 index 00000000..2d7eadca Binary files /dev/null and b/tools/configurator/res/flags/japan_iwate_32.png differ diff --git a/tools/configurator/res/flags/japan_iwate_32.png.import b/tools/configurator/res/flags/japan_iwate_32.png.import new file mode 100644 index 00000000..c4ed941c --- /dev/null +++ b/tools/configurator/res/flags/japan_iwate_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxqebrymg1wcr" +path="res://.godot/imported/japan_iwate_32.png-0e785d694ee5b0a7c1b4ab18db398261.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_iwate_32.png" +dest_files=["res://.godot/imported/japan_iwate_32.png-0e785d694ee5b0a7c1b4ab18db398261.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_kagawa_32.png b/tools/configurator/res/flags/japan_kagawa_32.png new file mode 100644 index 00000000..15dc9400 Binary files /dev/null and b/tools/configurator/res/flags/japan_kagawa_32.png differ diff --git a/tools/configurator/res/flags/japan_kagawa_32.png.import b/tools/configurator/res/flags/japan_kagawa_32.png.import new file mode 100644 index 00000000..39fee444 --- /dev/null +++ b/tools/configurator/res/flags/japan_kagawa_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hvh34uhx4al6" +path="res://.godot/imported/japan_kagawa_32.png-9777c22bd9b7832c285cc7e264df3008.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_kagawa_32.png" +dest_files=["res://.godot/imported/japan_kagawa_32.png-9777c22bd9b7832c285cc7e264df3008.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_kagoshima_32.png b/tools/configurator/res/flags/japan_kagoshima_32.png new file mode 100644 index 00000000..261816fb Binary files /dev/null and b/tools/configurator/res/flags/japan_kagoshima_32.png differ diff --git a/tools/configurator/res/flags/japan_kagoshima_32.png.import b/tools/configurator/res/flags/japan_kagoshima_32.png.import new file mode 100644 index 00000000..bd5c3c46 --- /dev/null +++ b/tools/configurator/res/flags/japan_kagoshima_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byu3okyhwncqc" +path="res://.godot/imported/japan_kagoshima_32.png-7268926fc91261afc98cbdf26cbe5e7e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_kagoshima_32.png" +dest_files=["res://.godot/imported/japan_kagoshima_32.png-7268926fc91261afc98cbdf26cbe5e7e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_kanagawa_32.png b/tools/configurator/res/flags/japan_kanagawa_32.png new file mode 100644 index 00000000..8baff96a Binary files /dev/null and b/tools/configurator/res/flags/japan_kanagawa_32.png differ diff --git a/tools/configurator/res/flags/japan_kanagawa_32.png.import b/tools/configurator/res/flags/japan_kanagawa_32.png.import new file mode 100644 index 00000000..aa0fe95d --- /dev/null +++ b/tools/configurator/res/flags/japan_kanagawa_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hiomcufx21ty" +path="res://.godot/imported/japan_kanagawa_32.png-7c20c6e28f2d90af35cf6f1bb97961ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_kanagawa_32.png" +dest_files=["res://.godot/imported/japan_kanagawa_32.png-7c20c6e28f2d90af35cf6f1bb97961ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_kochi_32.png b/tools/configurator/res/flags/japan_kochi_32.png new file mode 100644 index 00000000..da7bcfe0 Binary files /dev/null and b/tools/configurator/res/flags/japan_kochi_32.png differ diff --git a/tools/configurator/res/flags/japan_kochi_32.png.import b/tools/configurator/res/flags/japan_kochi_32.png.import new file mode 100644 index 00000000..81aea75d --- /dev/null +++ b/tools/configurator/res/flags/japan_kochi_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bivwwaevfv3kg" +path="res://.godot/imported/japan_kochi_32.png-47ec366df0ea383dbed3c95e251ab2e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_kochi_32.png" +dest_files=["res://.godot/imported/japan_kochi_32.png-47ec366df0ea383dbed3c95e251ab2e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_kumamoto_32.png b/tools/configurator/res/flags/japan_kumamoto_32.png new file mode 100644 index 00000000..a17bc53e Binary files /dev/null and b/tools/configurator/res/flags/japan_kumamoto_32.png differ diff --git a/tools/configurator/res/flags/japan_kumamoto_32.png.import b/tools/configurator/res/flags/japan_kumamoto_32.png.import new file mode 100644 index 00000000..981c5be3 --- /dev/null +++ b/tools/configurator/res/flags/japan_kumamoto_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvatvcaqbo8ul" +path="res://.godot/imported/japan_kumamoto_32.png-cc90f9b1af49aaef0537f7ee94f8c5a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_kumamoto_32.png" +dest_files=["res://.godot/imported/japan_kumamoto_32.png-cc90f9b1af49aaef0537f7ee94f8c5a9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_kyoto_32.png b/tools/configurator/res/flags/japan_kyoto_32.png new file mode 100644 index 00000000..b11f8841 Binary files /dev/null and b/tools/configurator/res/flags/japan_kyoto_32.png differ diff --git a/tools/configurator/res/flags/japan_kyoto_32.png.import b/tools/configurator/res/flags/japan_kyoto_32.png.import new file mode 100644 index 00000000..3a0ee57c --- /dev/null +++ b/tools/configurator/res/flags/japan_kyoto_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2kl8qkiyqi1s" +path="res://.godot/imported/japan_kyoto_32.png-1b749c4385520def245097a893e67dfc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_kyoto_32.png" +dest_files=["res://.godot/imported/japan_kyoto_32.png-1b749c4385520def245097a893e67dfc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_mie_32.png b/tools/configurator/res/flags/japan_mie_32.png new file mode 100644 index 00000000..17b6c393 Binary files /dev/null and b/tools/configurator/res/flags/japan_mie_32.png differ diff --git a/tools/configurator/res/flags/japan_mie_32.png.import b/tools/configurator/res/flags/japan_mie_32.png.import new file mode 100644 index 00000000..977a62a4 --- /dev/null +++ b/tools/configurator/res/flags/japan_mie_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqrx8nmn05hjh" +path="res://.godot/imported/japan_mie_32.png-46ebbe56f01a317ed053b29f15fd7e02.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_mie_32.png" +dest_files=["res://.godot/imported/japan_mie_32.png-46ebbe56f01a317ed053b29f15fd7e02.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_miyagi_32.png b/tools/configurator/res/flags/japan_miyagi_32.png new file mode 100644 index 00000000..f66610bf Binary files /dev/null and b/tools/configurator/res/flags/japan_miyagi_32.png differ diff --git a/tools/configurator/res/flags/japan_miyagi_32.png.import b/tools/configurator/res/flags/japan_miyagi_32.png.import new file mode 100644 index 00000000..e80a16ac --- /dev/null +++ b/tools/configurator/res/flags/japan_miyagi_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1m3fhubbvt2d" +path="res://.godot/imported/japan_miyagi_32.png-6d968ca90d9838412f59f23fba7f6d7a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_miyagi_32.png" +dest_files=["res://.godot/imported/japan_miyagi_32.png-6d968ca90d9838412f59f23fba7f6d7a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_miyazaki_32.png b/tools/configurator/res/flags/japan_miyazaki_32.png new file mode 100644 index 00000000..8326eb39 Binary files /dev/null and b/tools/configurator/res/flags/japan_miyazaki_32.png differ diff --git a/tools/configurator/res/flags/japan_miyazaki_32.png.import b/tools/configurator/res/flags/japan_miyazaki_32.png.import new file mode 100644 index 00000000..3e241984 --- /dev/null +++ b/tools/configurator/res/flags/japan_miyazaki_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvtksnjgxdya8" +path="res://.godot/imported/japan_miyazaki_32.png-17a4a5fcdbcc16edd57bd4ca87c032fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_miyazaki_32.png" +dest_files=["res://.godot/imported/japan_miyazaki_32.png-17a4a5fcdbcc16edd57bd4ca87c032fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_nagano_32.png b/tools/configurator/res/flags/japan_nagano_32.png new file mode 100644 index 00000000..5cb0319c Binary files /dev/null and b/tools/configurator/res/flags/japan_nagano_32.png differ diff --git a/tools/configurator/res/flags/japan_nagano_32.png.import b/tools/configurator/res/flags/japan_nagano_32.png.import new file mode 100644 index 00000000..1bd4f8c3 --- /dev/null +++ b/tools/configurator/res/flags/japan_nagano_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnjpdsdaobcxa" +path="res://.godot/imported/japan_nagano_32.png-873e7882080b5f59920836d31939e52a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_nagano_32.png" +dest_files=["res://.godot/imported/japan_nagano_32.png-873e7882080b5f59920836d31939e52a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_nagasaki_32.png b/tools/configurator/res/flags/japan_nagasaki_32.png new file mode 100644 index 00000000..6db68d3c Binary files /dev/null and b/tools/configurator/res/flags/japan_nagasaki_32.png differ diff --git a/tools/configurator/res/flags/japan_nagasaki_32.png.import b/tools/configurator/res/flags/japan_nagasaki_32.png.import new file mode 100644 index 00000000..7cf56a27 --- /dev/null +++ b/tools/configurator/res/flags/japan_nagasaki_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnn2ntwup5sbp" +path="res://.godot/imported/japan_nagasaki_32.png-8685c2898a4247a280c5b7af2971d669.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_nagasaki_32.png" +dest_files=["res://.godot/imported/japan_nagasaki_32.png-8685c2898a4247a280c5b7af2971d669.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_nara_32.png b/tools/configurator/res/flags/japan_nara_32.png new file mode 100644 index 00000000..931b32a2 Binary files /dev/null and b/tools/configurator/res/flags/japan_nara_32.png differ diff --git a/tools/configurator/res/flags/japan_nara_32.png.import b/tools/configurator/res/flags/japan_nara_32.png.import new file mode 100644 index 00000000..8b468262 --- /dev/null +++ b/tools/configurator/res/flags/japan_nara_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buq1qkldhabab" +path="res://.godot/imported/japan_nara_32.png-dcc5c09a57966dfd0d56d22269d9a5fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_nara_32.png" +dest_files=["res://.godot/imported/japan_nara_32.png-dcc5c09a57966dfd0d56d22269d9a5fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_niigata_32.png b/tools/configurator/res/flags/japan_niigata_32.png new file mode 100644 index 00000000..62487a1f Binary files /dev/null and b/tools/configurator/res/flags/japan_niigata_32.png differ diff --git a/tools/configurator/res/flags/japan_niigata_32.png.import b/tools/configurator/res/flags/japan_niigata_32.png.import new file mode 100644 index 00000000..d18af089 --- /dev/null +++ b/tools/configurator/res/flags/japan_niigata_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1p3kghirrkb6" +path="res://.godot/imported/japan_niigata_32.png-df1a88e2afd8e516fd52416b8e05fdd1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_niigata_32.png" +dest_files=["res://.godot/imported/japan_niigata_32.png-df1a88e2afd8e516fd52416b8e05fdd1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_ogasawara_32.png b/tools/configurator/res/flags/japan_ogasawara_32.png new file mode 100644 index 00000000..3eb8313f Binary files /dev/null and b/tools/configurator/res/flags/japan_ogasawara_32.png differ diff --git a/tools/configurator/res/flags/japan_ogasawara_32.png.import b/tools/configurator/res/flags/japan_ogasawara_32.png.import new file mode 100644 index 00000000..0b60e152 --- /dev/null +++ b/tools/configurator/res/flags/japan_ogasawara_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bi1s8ojwmto7n" +path="res://.godot/imported/japan_ogasawara_32.png-c721760773434a962d73558c9691731c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_ogasawara_32.png" +dest_files=["res://.godot/imported/japan_ogasawara_32.png-c721760773434a962d73558c9691731c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_oita_32.png b/tools/configurator/res/flags/japan_oita_32.png new file mode 100644 index 00000000..09d66a98 Binary files /dev/null and b/tools/configurator/res/flags/japan_oita_32.png differ diff --git a/tools/configurator/res/flags/japan_oita_32.png.import b/tools/configurator/res/flags/japan_oita_32.png.import new file mode 100644 index 00000000..73ee4856 --- /dev/null +++ b/tools/configurator/res/flags/japan_oita_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cm6olpf0xmmio" +path="res://.godot/imported/japan_oita_32.png-49a2f57ac38cae4d02e06d2096b447d3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_oita_32.png" +dest_files=["res://.godot/imported/japan_oita_32.png-49a2f57ac38cae4d02e06d2096b447d3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_okayama_32.png b/tools/configurator/res/flags/japan_okayama_32.png new file mode 100644 index 00000000..5700d85e Binary files /dev/null and b/tools/configurator/res/flags/japan_okayama_32.png differ diff --git a/tools/configurator/res/flags/japan_okayama_32.png.import b/tools/configurator/res/flags/japan_okayama_32.png.import new file mode 100644 index 00000000..93e558c6 --- /dev/null +++ b/tools/configurator/res/flags/japan_okayama_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://66if6treovyd" +path="res://.godot/imported/japan_okayama_32.png-e2193298f38fe15e9ab9a5bf29f4f944.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_okayama_32.png" +dest_files=["res://.godot/imported/japan_okayama_32.png-e2193298f38fe15e9ab9a5bf29f4f944.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_okinawa_32.png b/tools/configurator/res/flags/japan_okinawa_32.png new file mode 100644 index 00000000..2b6c45bf Binary files /dev/null and b/tools/configurator/res/flags/japan_okinawa_32.png differ diff --git a/tools/configurator/res/flags/japan_okinawa_32.png.import b/tools/configurator/res/flags/japan_okinawa_32.png.import new file mode 100644 index 00000000..14ff81fb --- /dev/null +++ b/tools/configurator/res/flags/japan_okinawa_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clc3mu6gvdwvy" +path="res://.godot/imported/japan_okinawa_32.png-efc37fd5ff38cdc0611ce689646457cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_okinawa_32.png" +dest_files=["res://.godot/imported/japan_okinawa_32.png-efc37fd5ff38cdc0611ce689646457cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_osaka_32.png b/tools/configurator/res/flags/japan_osaka_32.png new file mode 100644 index 00000000..4c06f0c8 Binary files /dev/null and b/tools/configurator/res/flags/japan_osaka_32.png differ diff --git a/tools/configurator/res/flags/japan_osaka_32.png.import b/tools/configurator/res/flags/japan_osaka_32.png.import new file mode 100644 index 00000000..44544ae5 --- /dev/null +++ b/tools/configurator/res/flags/japan_osaka_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3e6g3bcrqhko" +path="res://.godot/imported/japan_osaka_32.png-bd5cc57003f861119d0bbb4665b05965.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_osaka_32.png" +dest_files=["res://.godot/imported/japan_osaka_32.png-bd5cc57003f861119d0bbb4665b05965.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_saga_32.png b/tools/configurator/res/flags/japan_saga_32.png new file mode 100644 index 00000000..bf6dd5dd Binary files /dev/null and b/tools/configurator/res/flags/japan_saga_32.png differ diff --git a/tools/configurator/res/flags/japan_saga_32.png.import b/tools/configurator/res/flags/japan_saga_32.png.import new file mode 100644 index 00000000..0a0c1c83 --- /dev/null +++ b/tools/configurator/res/flags/japan_saga_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://egtt3y5hqox2" +path="res://.godot/imported/japan_saga_32.png-86ad927f83574214c7c7c0a6b22e9226.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_saga_32.png" +dest_files=["res://.godot/imported/japan_saga_32.png-86ad927f83574214c7c7c0a6b22e9226.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_saitama_32.png b/tools/configurator/res/flags/japan_saitama_32.png new file mode 100644 index 00000000..cc8fc6f7 Binary files /dev/null and b/tools/configurator/res/flags/japan_saitama_32.png differ diff --git a/tools/configurator/res/flags/japan_saitama_32.png.import b/tools/configurator/res/flags/japan_saitama_32.png.import new file mode 100644 index 00000000..03bbad47 --- /dev/null +++ b/tools/configurator/res/flags/japan_saitama_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyn212lb7em76" +path="res://.godot/imported/japan_saitama_32.png-9cc7d663fa35219ab00f22c3344d15f2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_saitama_32.png" +dest_files=["res://.godot/imported/japan_saitama_32.png-9cc7d663fa35219ab00f22c3344d15f2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_shiga_32.png b/tools/configurator/res/flags/japan_shiga_32.png new file mode 100644 index 00000000..86a081d7 Binary files /dev/null and b/tools/configurator/res/flags/japan_shiga_32.png differ diff --git a/tools/configurator/res/flags/japan_shiga_32.png.import b/tools/configurator/res/flags/japan_shiga_32.png.import new file mode 100644 index 00000000..59f1a8f1 --- /dev/null +++ b/tools/configurator/res/flags/japan_shiga_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjkkt1q0yfgxf" +path="res://.godot/imported/japan_shiga_32.png-20aa2a3e85d06608e21882c6bc09d6c1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_shiga_32.png" +dest_files=["res://.godot/imported/japan_shiga_32.png-20aa2a3e85d06608e21882c6bc09d6c1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_shimane_32.png b/tools/configurator/res/flags/japan_shimane_32.png new file mode 100644 index 00000000..13a9d6e1 Binary files /dev/null and b/tools/configurator/res/flags/japan_shimane_32.png differ diff --git a/tools/configurator/res/flags/japan_shimane_32.png.import b/tools/configurator/res/flags/japan_shimane_32.png.import new file mode 100644 index 00000000..6c22b05a --- /dev/null +++ b/tools/configurator/res/flags/japan_shimane_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br0gyx24r40i5" +path="res://.godot/imported/japan_shimane_32.png-f9bf729f2bb8960971f8c227b80e6e6a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_shimane_32.png" +dest_files=["res://.godot/imported/japan_shimane_32.png-f9bf729f2bb8960971f8c227b80e6e6a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_shizuoka_32.png b/tools/configurator/res/flags/japan_shizuoka_32.png new file mode 100644 index 00000000..3f0354de Binary files /dev/null and b/tools/configurator/res/flags/japan_shizuoka_32.png differ diff --git a/tools/configurator/res/flags/japan_shizuoka_32.png.import b/tools/configurator/res/flags/japan_shizuoka_32.png.import new file mode 100644 index 00000000..902442f7 --- /dev/null +++ b/tools/configurator/res/flags/japan_shizuoka_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0pwan7m15ufc" +path="res://.godot/imported/japan_shizuoka_32.png-38fcbe99a89a1531bed107d9498824d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_shizuoka_32.png" +dest_files=["res://.godot/imported/japan_shizuoka_32.png-38fcbe99a89a1531bed107d9498824d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_tochigi_32.png b/tools/configurator/res/flags/japan_tochigi_32.png new file mode 100644 index 00000000..53845405 Binary files /dev/null and b/tools/configurator/res/flags/japan_tochigi_32.png differ diff --git a/tools/configurator/res/flags/japan_tochigi_32.png.import b/tools/configurator/res/flags/japan_tochigi_32.png.import new file mode 100644 index 00000000..ac00deba --- /dev/null +++ b/tools/configurator/res/flags/japan_tochigi_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1xy5y4nhq6co" +path="res://.godot/imported/japan_tochigi_32.png-13623f47f7a656dd9f156f7af845f01c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_tochigi_32.png" +dest_files=["res://.godot/imported/japan_tochigi_32.png-13623f47f7a656dd9f156f7af845f01c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_tokushima_32.png b/tools/configurator/res/flags/japan_tokushima_32.png new file mode 100644 index 00000000..5004a027 Binary files /dev/null and b/tools/configurator/res/flags/japan_tokushima_32.png differ diff --git a/tools/configurator/res/flags/japan_tokushima_32.png.import b/tools/configurator/res/flags/japan_tokushima_32.png.import new file mode 100644 index 00000000..6b266918 --- /dev/null +++ b/tools/configurator/res/flags/japan_tokushima_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bja8s1bn1mprn" +path="res://.godot/imported/japan_tokushima_32.png-1c8fe08d0d4930ad34a2f8d3d7b3d96b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_tokushima_32.png" +dest_files=["res://.godot/imported/japan_tokushima_32.png-1c8fe08d0d4930ad34a2f8d3d7b3d96b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_tokyo_32.png b/tools/configurator/res/flags/japan_tokyo_32.png new file mode 100644 index 00000000..0c1a8cc8 Binary files /dev/null and b/tools/configurator/res/flags/japan_tokyo_32.png differ diff --git a/tools/configurator/res/flags/japan_tokyo_32.png.import b/tools/configurator/res/flags/japan_tokyo_32.png.import new file mode 100644 index 00000000..f6f5b2cc --- /dev/null +++ b/tools/configurator/res/flags/japan_tokyo_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcp4bdtjhskya" +path="res://.godot/imported/japan_tokyo_32.png-0e31aeccb8be8bd3105168cae2c3c6f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_tokyo_32.png" +dest_files=["res://.godot/imported/japan_tokyo_32.png-0e31aeccb8be8bd3105168cae2c3c6f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_tottori_32.png b/tools/configurator/res/flags/japan_tottori_32.png new file mode 100644 index 00000000..45de99b4 Binary files /dev/null and b/tools/configurator/res/flags/japan_tottori_32.png differ diff --git a/tools/configurator/res/flags/japan_tottori_32.png.import b/tools/configurator/res/flags/japan_tottori_32.png.import new file mode 100644 index 00000000..67f964a4 --- /dev/null +++ b/tools/configurator/res/flags/japan_tottori_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbua0856n6jyf" +path="res://.godot/imported/japan_tottori_32.png-9701585127c175028349110cd135b889.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_tottori_32.png" +dest_files=["res://.godot/imported/japan_tottori_32.png-9701585127c175028349110cd135b889.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_toyama_32.png b/tools/configurator/res/flags/japan_toyama_32.png new file mode 100644 index 00000000..271408d2 Binary files /dev/null and b/tools/configurator/res/flags/japan_toyama_32.png differ diff --git a/tools/configurator/res/flags/japan_toyama_32.png.import b/tools/configurator/res/flags/japan_toyama_32.png.import new file mode 100644 index 00000000..7b5e84cc --- /dev/null +++ b/tools/configurator/res/flags/japan_toyama_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chrpwkkjdafpn" +path="res://.godot/imported/japan_toyama_32.png-714a48652c8be1322f9d6bf2f6ec54ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_toyama_32.png" +dest_files=["res://.godot/imported/japan_toyama_32.png-714a48652c8be1322f9d6bf2f6ec54ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_wakayama_32.png b/tools/configurator/res/flags/japan_wakayama_32.png new file mode 100644 index 00000000..97ab9a82 Binary files /dev/null and b/tools/configurator/res/flags/japan_wakayama_32.png differ diff --git a/tools/configurator/res/flags/japan_wakayama_32.png.import b/tools/configurator/res/flags/japan_wakayama_32.png.import new file mode 100644 index 00000000..91d17356 --- /dev/null +++ b/tools/configurator/res/flags/japan_wakayama_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crb8vp6ejo0i4" +path="res://.godot/imported/japan_wakayama_32.png-0b181a752a984a580e293feff295558c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_wakayama_32.png" +dest_files=["res://.godot/imported/japan_wakayama_32.png-0b181a752a984a580e293feff295558c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_yamagata_32.png b/tools/configurator/res/flags/japan_yamagata_32.png new file mode 100644 index 00000000..a2d7592c Binary files /dev/null and b/tools/configurator/res/flags/japan_yamagata_32.png differ diff --git a/tools/configurator/res/flags/japan_yamagata_32.png.import b/tools/configurator/res/flags/japan_yamagata_32.png.import new file mode 100644 index 00000000..70012a51 --- /dev/null +++ b/tools/configurator/res/flags/japan_yamagata_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbnu3a1rbbjo1" +path="res://.godot/imported/japan_yamagata_32.png-b93053fbad750c5540ea6bc7008d0027.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_yamagata_32.png" +dest_files=["res://.godot/imported/japan_yamagata_32.png-b93053fbad750c5540ea6bc7008d0027.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_yamaguchi_32.png b/tools/configurator/res/flags/japan_yamaguchi_32.png new file mode 100644 index 00000000..6819dbf7 Binary files /dev/null and b/tools/configurator/res/flags/japan_yamaguchi_32.png differ diff --git a/tools/configurator/res/flags/japan_yamaguchi_32.png.import b/tools/configurator/res/flags/japan_yamaguchi_32.png.import new file mode 100644 index 00000000..d0d3811f --- /dev/null +++ b/tools/configurator/res/flags/japan_yamaguchi_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc8f2bm8oyujw" +path="res://.godot/imported/japan_yamaguchi_32.png-31b16210f5dc9a82699bb0956982bcf7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_yamaguchi_32.png" +dest_files=["res://.godot/imported/japan_yamaguchi_32.png-31b16210f5dc9a82699bb0956982bcf7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/japan_yamanashi_32.png b/tools/configurator/res/flags/japan_yamanashi_32.png new file mode 100644 index 00000000..e72822ed Binary files /dev/null and b/tools/configurator/res/flags/japan_yamanashi_32.png differ diff --git a/tools/configurator/res/flags/japan_yamanashi_32.png.import b/tools/configurator/res/flags/japan_yamanashi_32.png.import new file mode 100644 index 00000000..2370a483 --- /dev/null +++ b/tools/configurator/res/flags/japan_yamanashi_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://spekwwwm4p5h" +path="res://.godot/imported/japan_yamanashi_32.png-3b8febf12e77dfc78ee5c5180a0deaff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/japan_yamanashi_32.png" +dest_files=["res://.godot/imported/japan_yamanashi_32.png-3b8febf12e77dfc78ee5c5180a0deaff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/jordan_32.png b/tools/configurator/res/flags/jordan_32.png new file mode 100644 index 00000000..bbe163d1 Binary files /dev/null and b/tools/configurator/res/flags/jordan_32.png differ diff --git a/tools/configurator/res/flags/jordan_32.png.import b/tools/configurator/res/flags/jordan_32.png.import new file mode 100644 index 00000000..5e22916d --- /dev/null +++ b/tools/configurator/res/flags/jordan_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ciexmsfxn6cw7" +path="res://.godot/imported/jordan_32.png-0c49b778cd77b82b875b04d54e0a5de6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/jordan_32.png" +dest_files=["res://.godot/imported/jordan_32.png-0c49b778cd77b82b875b04d54e0a5de6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/kazakhstan_32.png b/tools/configurator/res/flags/kazakhstan_32.png new file mode 100644 index 00000000..d7e92795 Binary files /dev/null and b/tools/configurator/res/flags/kazakhstan_32.png differ diff --git a/tools/configurator/res/flags/kazakhstan_32.png.import b/tools/configurator/res/flags/kazakhstan_32.png.import new file mode 100644 index 00000000..743383fb --- /dev/null +++ b/tools/configurator/res/flags/kazakhstan_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bx8i2t4o63ql5" +path="res://.godot/imported/kazakhstan_32.png-d9a911a9003e4f8d81eb003a7786a2b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/kazakhstan_32.png" +dest_files=["res://.godot/imported/kazakhstan_32.png-d9a911a9003e4f8d81eb003a7786a2b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/kazakhstan_almaty_32.png b/tools/configurator/res/flags/kazakhstan_almaty_32.png new file mode 100644 index 00000000..abe2a06c Binary files /dev/null and b/tools/configurator/res/flags/kazakhstan_almaty_32.png differ diff --git a/tools/configurator/res/flags/kazakhstan_almaty_32.png.import b/tools/configurator/res/flags/kazakhstan_almaty_32.png.import new file mode 100644 index 00000000..ef25f53f --- /dev/null +++ b/tools/configurator/res/flags/kazakhstan_almaty_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c16oxwrb3m3h7" +path="res://.godot/imported/kazakhstan_almaty_32.png-1c556dc407361ebddd4136c02a2c0364.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/kazakhstan_almaty_32.png" +dest_files=["res://.godot/imported/kazakhstan_almaty_32.png-1c556dc407361ebddd4136c02a2c0364.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/kazakhstan_astana_32.png b/tools/configurator/res/flags/kazakhstan_astana_32.png new file mode 100644 index 00000000..01e9e16a Binary files /dev/null and b/tools/configurator/res/flags/kazakhstan_astana_32.png differ diff --git a/tools/configurator/res/flags/kazakhstan_astana_32.png.import b/tools/configurator/res/flags/kazakhstan_astana_32.png.import new file mode 100644 index 00000000..ae712499 --- /dev/null +++ b/tools/configurator/res/flags/kazakhstan_astana_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvktmmumuq5pf" +path="res://.godot/imported/kazakhstan_astana_32.png-737fc53a9f1aead58ad099fc92f47c98.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/kazakhstan_astana_32.png" +dest_files=["res://.godot/imported/kazakhstan_astana_32.png-737fc53a9f1aead58ad099fc92f47c98.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/kazakhstan_baikonur_32.png b/tools/configurator/res/flags/kazakhstan_baikonur_32.png new file mode 100644 index 00000000..336eaa59 Binary files /dev/null and b/tools/configurator/res/flags/kazakhstan_baikonur_32.png differ diff --git a/tools/configurator/res/flags/kazakhstan_baikonur_32.png.import b/tools/configurator/res/flags/kazakhstan_baikonur_32.png.import new file mode 100644 index 00000000..e7069f77 --- /dev/null +++ b/tools/configurator/res/flags/kazakhstan_baikonur_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjoydg4lupkbs" +path="res://.godot/imported/kazakhstan_baikonur_32.png-298f72bb023d994b7fb5043be80e7c9b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/kazakhstan_baikonur_32.png" +dest_files=["res://.godot/imported/kazakhstan_baikonur_32.png-298f72bb023d994b7fb5043be80e7c9b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/kazakhstan_karagandy_oblast_32.png b/tools/configurator/res/flags/kazakhstan_karagandy_oblast_32.png new file mode 100644 index 00000000..4ebb32fd Binary files /dev/null and b/tools/configurator/res/flags/kazakhstan_karagandy_oblast_32.png differ diff --git a/tools/configurator/res/flags/kazakhstan_karagandy_oblast_32.png.import b/tools/configurator/res/flags/kazakhstan_karagandy_oblast_32.png.import new file mode 100644 index 00000000..45965fec --- /dev/null +++ b/tools/configurator/res/flags/kazakhstan_karagandy_oblast_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl8g50iu4mwka" +path="res://.godot/imported/kazakhstan_karagandy_oblast_32.png-961fde167b3ef5a5c4a1b695063b8aa3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/kazakhstan_karagandy_oblast_32.png" +dest_files=["res://.godot/imported/kazakhstan_karagandy_oblast_32.png-961fde167b3ef5a5c4a1b695063b8aa3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/kuwait_32.png b/tools/configurator/res/flags/kuwait_32.png new file mode 100644 index 00000000..fe3cf092 Binary files /dev/null and b/tools/configurator/res/flags/kuwait_32.png differ diff --git a/tools/configurator/res/flags/kuwait_32.png.import b/tools/configurator/res/flags/kuwait_32.png.import new file mode 100644 index 00000000..ed6a481d --- /dev/null +++ b/tools/configurator/res/flags/kuwait_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m0tbx3wkdnl2" +path="res://.godot/imported/kuwait_32.png-3a312a7c602c2f2bfbf2ffb1a50b9c67.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/kuwait_32.png" +dest_files=["res://.godot/imported/kuwait_32.png-3a312a7c602c2f2bfbf2ffb1a50b9c67.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/kyrgyzstan_32.png b/tools/configurator/res/flags/kyrgyzstan_32.png new file mode 100644 index 00000000..b3b5c802 Binary files /dev/null and b/tools/configurator/res/flags/kyrgyzstan_32.png differ diff --git a/tools/configurator/res/flags/kyrgyzstan_32.png.import b/tools/configurator/res/flags/kyrgyzstan_32.png.import new file mode 100644 index 00000000..c53cdb68 --- /dev/null +++ b/tools/configurator/res/flags/kyrgyzstan_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0f3umko3r4kj" +path="res://.godot/imported/kyrgyzstan_32.png-c56402ada4bcf88b846298e2bca9b7ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/kyrgyzstan_32.png" +dest_files=["res://.godot/imported/kyrgyzstan_32.png-c56402ada4bcf88b846298e2bca9b7ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/laos_32.png b/tools/configurator/res/flags/laos_32.png new file mode 100644 index 00000000..c273d63c Binary files /dev/null and b/tools/configurator/res/flags/laos_32.png differ diff --git a/tools/configurator/res/flags/laos_32.png.import b/tools/configurator/res/flags/laos_32.png.import new file mode 100644 index 00000000..ec747709 --- /dev/null +++ b/tools/configurator/res/flags/laos_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccl23573d0w52" +path="res://.godot/imported/laos_32.png-2b44f02c05122c1c4eec2f0cced510a1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/laos_32.png" +dest_files=["res://.godot/imported/laos_32.png-2b44f02c05122c1c4eec2f0cced510a1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/latvia_32.png b/tools/configurator/res/flags/latvia_32.png new file mode 100644 index 00000000..60afbd01 Binary files /dev/null and b/tools/configurator/res/flags/latvia_32.png differ diff --git a/tools/configurator/res/flags/latvia_32.png.import b/tools/configurator/res/flags/latvia_32.png.import new file mode 100644 index 00000000..d1d335c0 --- /dev/null +++ b/tools/configurator/res/flags/latvia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnv3amfkdym76" +path="res://.godot/imported/latvia_32.png-57696c86c0696a5c27894984eb2d7d8c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/latvia_32.png" +dest_files=["res://.godot/imported/latvia_32.png-57696c86c0696a5c27894984eb2d7d8c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/latvia_latgale_32.png b/tools/configurator/res/flags/latvia_latgale_32.png new file mode 100644 index 00000000..93b77da7 Binary files /dev/null and b/tools/configurator/res/flags/latvia_latgale_32.png differ diff --git a/tools/configurator/res/flags/latvia_latgale_32.png.import b/tools/configurator/res/flags/latvia_latgale_32.png.import new file mode 100644 index 00000000..4a3d4246 --- /dev/null +++ b/tools/configurator/res/flags/latvia_latgale_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3gkuvabq4ym3" +path="res://.godot/imported/latvia_latgale_32.png-258ea39ffacc72b6db2dae925971d59d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/latvia_latgale_32.png" +dest_files=["res://.godot/imported/latvia_latgale_32.png-258ea39ffacc72b6db2dae925971d59d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/latvia_riga_32.png b/tools/configurator/res/flags/latvia_riga_32.png new file mode 100644 index 00000000..56fd575b Binary files /dev/null and b/tools/configurator/res/flags/latvia_riga_32.png differ diff --git a/tools/configurator/res/flags/latvia_riga_32.png.import b/tools/configurator/res/flags/latvia_riga_32.png.import new file mode 100644 index 00000000..fca77614 --- /dev/null +++ b/tools/configurator/res/flags/latvia_riga_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcdbtcjngvpm" +path="res://.godot/imported/latvia_riga_32.png-50a32a1789669bbe53e86ba8f80714cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/latvia_riga_32.png" +dest_files=["res://.godot/imported/latvia_riga_32.png-50a32a1789669bbe53e86ba8f80714cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/latvia_vidzeme_32.png b/tools/configurator/res/flags/latvia_vidzeme_32.png new file mode 100644 index 00000000..79a3373c Binary files /dev/null and b/tools/configurator/res/flags/latvia_vidzeme_32.png differ diff --git a/tools/configurator/res/flags/latvia_vidzeme_32.png.import b/tools/configurator/res/flags/latvia_vidzeme_32.png.import new file mode 100644 index 00000000..afce42cb --- /dev/null +++ b/tools/configurator/res/flags/latvia_vidzeme_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b68cyam78861c" +path="res://.godot/imported/latvia_vidzeme_32.png-adc85ed3f9fe97476f2e604887fa35a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/latvia_vidzeme_32.png" +dest_files=["res://.godot/imported/latvia_vidzeme_32.png-adc85ed3f9fe97476f2e604887fa35a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/latvia_zemgale_32.png b/tools/configurator/res/flags/latvia_zemgale_32.png new file mode 100644 index 00000000..2426b1c4 Binary files /dev/null and b/tools/configurator/res/flags/latvia_zemgale_32.png differ diff --git a/tools/configurator/res/flags/latvia_zemgale_32.png.import b/tools/configurator/res/flags/latvia_zemgale_32.png.import new file mode 100644 index 00000000..58612ce2 --- /dev/null +++ b/tools/configurator/res/flags/latvia_zemgale_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn1tex8wwllnk" +path="res://.godot/imported/latvia_zemgale_32.png-5c8e00eebf15d7d9a6492af1a35c2d2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/latvia_zemgale_32.png" +dest_files=["res://.godot/imported/latvia_zemgale_32.png-5c8e00eebf15d7d9a6492af1a35c2d2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lebanon_32.png b/tools/configurator/res/flags/lebanon_32.png new file mode 100644 index 00000000..72686a22 Binary files /dev/null and b/tools/configurator/res/flags/lebanon_32.png differ diff --git a/tools/configurator/res/flags/lebanon_32.png.import b/tools/configurator/res/flags/lebanon_32.png.import new file mode 100644 index 00000000..5a7960a9 --- /dev/null +++ b/tools/configurator/res/flags/lebanon_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ryvabna23jgr" +path="res://.godot/imported/lebanon_32.png-eec927bebc4626d0f317589ab1bc84b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lebanon_32.png" +dest_files=["res://.godot/imported/lebanon_32.png-eec927bebc4626d0f317589ab1bc84b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lgbtqia_32.png b/tools/configurator/res/flags/lgbtqia_32.png new file mode 100644 index 00000000..71758f14 Binary files /dev/null and b/tools/configurator/res/flags/lgbtqia_32.png differ diff --git a/tools/configurator/res/flags/lgbtqia_32.png.import b/tools/configurator/res/flags/lgbtqia_32.png.import new file mode 100644 index 00000000..bbd7966f --- /dev/null +++ b/tools/configurator/res/flags/lgbtqia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3mrfknlmuf15" +path="res://.godot/imported/lgbtqia_32.png-a7657b3f657bb3b65d43f7e1ca362ddf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lgbtqia_32.png" +dest_files=["res://.godot/imported/lgbtqia_32.png-a7657b3f657bb3b65d43f7e1ca362ddf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lgbtqia_agender_32.png b/tools/configurator/res/flags/lgbtqia_agender_32.png new file mode 100644 index 00000000..3bea81b6 Binary files /dev/null and b/tools/configurator/res/flags/lgbtqia_agender_32.png differ diff --git a/tools/configurator/res/flags/lgbtqia_agender_32.png.import b/tools/configurator/res/flags/lgbtqia_agender_32.png.import new file mode 100644 index 00000000..ae94d786 --- /dev/null +++ b/tools/configurator/res/flags/lgbtqia_agender_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dny33t7sycki4" +path="res://.godot/imported/lgbtqia_agender_32.png-28ff8fdf845da8112de76304c9a99c24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lgbtqia_agender_32.png" +dest_files=["res://.godot/imported/lgbtqia_agender_32.png-28ff8fdf845da8112de76304c9a99c24.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lgbtqia_androgyne_32.png b/tools/configurator/res/flags/lgbtqia_androgyne_32.png new file mode 100644 index 00000000..4ac3056a Binary files /dev/null and b/tools/configurator/res/flags/lgbtqia_androgyne_32.png differ diff --git a/tools/configurator/res/flags/lgbtqia_androgyne_32.png.import b/tools/configurator/res/flags/lgbtqia_androgyne_32.png.import new file mode 100644 index 00000000..f78ed1ae --- /dev/null +++ b/tools/configurator/res/flags/lgbtqia_androgyne_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvk6esgvectrn" +path="res://.godot/imported/lgbtqia_androgyne_32.png-57dcb6eee5d90915d08672759720e3d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lgbtqia_androgyne_32.png" +dest_files=["res://.godot/imported/lgbtqia_androgyne_32.png-57dcb6eee5d90915d08672759720e3d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lgbtqia_aroace_32.png b/tools/configurator/res/flags/lgbtqia_aroace_32.png new file mode 100644 index 00000000..f5b8f393 Binary files /dev/null and b/tools/configurator/res/flags/lgbtqia_aroace_32.png differ diff --git a/tools/configurator/res/flags/lgbtqia_aroace_32.png.import b/tools/configurator/res/flags/lgbtqia_aroace_32.png.import new file mode 100644 index 00000000..22300220 --- /dev/null +++ b/tools/configurator/res/flags/lgbtqia_aroace_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://smfyxui6mmgq" +path="res://.godot/imported/lgbtqia_aroace_32.png-fb3f8dbc2d009980ff363f25522478fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lgbtqia_aroace_32.png" +dest_files=["res://.godot/imported/lgbtqia_aroace_32.png-fb3f8dbc2d009980ff363f25522478fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lgbtqia_asexual_32.png b/tools/configurator/res/flags/lgbtqia_asexual_32.png new file mode 100644 index 00000000..2c26f901 Binary files /dev/null and b/tools/configurator/res/flags/lgbtqia_asexual_32.png differ diff --git a/tools/configurator/res/flags/lgbtqia_asexual_32.png.import b/tools/configurator/res/flags/lgbtqia_asexual_32.png.import new file mode 100644 index 00000000..380a8302 --- /dev/null +++ b/tools/configurator/res/flags/lgbtqia_asexual_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1d4fbod7wmry" +path="res://.godot/imported/lgbtqia_asexual_32.png-b6c7e9d7efc7bfeb35667e5a2aab56ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lgbtqia_asexual_32.png" +dest_files=["res://.godot/imported/lgbtqia_asexual_32.png-b6c7e9d7efc7bfeb35667e5a2aab56ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lgbtqia_bear_32.png b/tools/configurator/res/flags/lgbtqia_bear_32.png new file mode 100644 index 00000000..b0f4cbd3 Binary files /dev/null and b/tools/configurator/res/flags/lgbtqia_bear_32.png differ diff --git a/tools/configurator/res/flags/lgbtqia_bear_32.png.import b/tools/configurator/res/flags/lgbtqia_bear_32.png.import new file mode 100644 index 00000000..405353e5 --- /dev/null +++ b/tools/configurator/res/flags/lgbtqia_bear_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpngw7567ksmx" +path="res://.godot/imported/lgbtqia_bear_32.png-c7099a6d022b32d9f21de1ae6e93fc34.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lgbtqia_bear_32.png" +dest_files=["res://.godot/imported/lgbtqia_bear_32.png-c7099a6d022b32d9f21de1ae6e93fc34.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lgbtqia_bisexual_32.png b/tools/configurator/res/flags/lgbtqia_bisexual_32.png new file mode 100644 index 00000000..1fdc8541 Binary files /dev/null and b/tools/configurator/res/flags/lgbtqia_bisexual_32.png differ diff --git a/tools/configurator/res/flags/lgbtqia_bisexual_32.png.import b/tools/configurator/res/flags/lgbtqia_bisexual_32.png.import new file mode 100644 index 00000000..5ff01b83 --- /dev/null +++ b/tools/configurator/res/flags/lgbtqia_bisexual_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ce488i1kgxa4" +path="res://.godot/imported/lgbtqia_bisexual_32.png-944442b7ddd04ba171b80046c37b2bb7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lgbtqia_bisexual_32.png" +dest_files=["res://.godot/imported/lgbtqia_bisexual_32.png-944442b7ddd04ba171b80046c37b2bb7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lgbtqia_demisexual_32.png b/tools/configurator/res/flags/lgbtqia_demisexual_32.png new file mode 100644 index 00000000..93dd55af Binary files /dev/null and b/tools/configurator/res/flags/lgbtqia_demisexual_32.png differ diff --git a/tools/configurator/res/flags/lgbtqia_demisexual_32.png.import b/tools/configurator/res/flags/lgbtqia_demisexual_32.png.import new file mode 100644 index 00000000..5bd8c0ec --- /dev/null +++ b/tools/configurator/res/flags/lgbtqia_demisexual_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cymoagk0nvkvf" +path="res://.godot/imported/lgbtqia_demisexual_32.png-33511a3f301f9b8a4f039e09c906c9b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lgbtqia_demisexual_32.png" +dest_files=["res://.godot/imported/lgbtqia_demisexual_32.png-33511a3f301f9b8a4f039e09c906c9b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lgbtqia_gender_neutral_32.png b/tools/configurator/res/flags/lgbtqia_gender_neutral_32.png new file mode 100644 index 00000000..0895ff57 Binary files /dev/null and b/tools/configurator/res/flags/lgbtqia_gender_neutral_32.png differ diff --git a/tools/configurator/res/flags/lgbtqia_gender_neutral_32.png.import b/tools/configurator/res/flags/lgbtqia_gender_neutral_32.png.import new file mode 100644 index 00000000..b4d1868c --- /dev/null +++ b/tools/configurator/res/flags/lgbtqia_gender_neutral_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjrj1al0v7lde" +path="res://.godot/imported/lgbtqia_gender_neutral_32.png-d562c24eb2953c1c0eb902027ee17d9b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lgbtqia_gender_neutral_32.png" +dest_files=["res://.godot/imported/lgbtqia_gender_neutral_32.png-d562c24eb2953c1c0eb902027ee17d9b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lgbtqia_genderfluid_32.png b/tools/configurator/res/flags/lgbtqia_genderfluid_32.png new file mode 100644 index 00000000..4bcf1920 Binary files /dev/null and b/tools/configurator/res/flags/lgbtqia_genderfluid_32.png differ diff --git a/tools/configurator/res/flags/lgbtqia_genderfluid_32.png.import b/tools/configurator/res/flags/lgbtqia_genderfluid_32.png.import new file mode 100644 index 00000000..1f505755 --- /dev/null +++ b/tools/configurator/res/flags/lgbtqia_genderfluid_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3f4e32nc4w0n" +path="res://.godot/imported/lgbtqia_genderfluid_32.png-9760f9cee50c38a56deee2eb94a489d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lgbtqia_genderfluid_32.png" +dest_files=["res://.godot/imported/lgbtqia_genderfluid_32.png-9760f9cee50c38a56deee2eb94a489d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lgbtqia_genderqueer_32.png b/tools/configurator/res/flags/lgbtqia_genderqueer_32.png new file mode 100644 index 00000000..71c5a497 Binary files /dev/null and b/tools/configurator/res/flags/lgbtqia_genderqueer_32.png differ diff --git a/tools/configurator/res/flags/lgbtqia_genderqueer_32.png.import b/tools/configurator/res/flags/lgbtqia_genderqueer_32.png.import new file mode 100644 index 00000000..7fb8d0de --- /dev/null +++ b/tools/configurator/res/flags/lgbtqia_genderqueer_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k6kxshl0oto7" +path="res://.godot/imported/lgbtqia_genderqueer_32.png-06200968b1f6f03b61f8076f278facec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lgbtqia_genderqueer_32.png" +dest_files=["res://.godot/imported/lgbtqia_genderqueer_32.png-06200968b1f6f03b61f8076f278facec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lgbtqia_lesbian_32.png b/tools/configurator/res/flags/lgbtqia_lesbian_32.png new file mode 100644 index 00000000..b4628c3e Binary files /dev/null and b/tools/configurator/res/flags/lgbtqia_lesbian_32.png differ diff --git a/tools/configurator/res/flags/lgbtqia_lesbian_32.png.import b/tools/configurator/res/flags/lgbtqia_lesbian_32.png.import new file mode 100644 index 00000000..199f38d6 --- /dev/null +++ b/tools/configurator/res/flags/lgbtqia_lesbian_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqq5um34docse" +path="res://.godot/imported/lgbtqia_lesbian_32.png-2b094b3e76bb0d5a5343543ef5ee6f6f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lgbtqia_lesbian_32.png" +dest_files=["res://.godot/imported/lgbtqia_lesbian_32.png-2b094b3e76bb0d5a5343543ef5ee6f6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lgbtqia_nonbinary_32.png b/tools/configurator/res/flags/lgbtqia_nonbinary_32.png new file mode 100644 index 00000000..8cf8d304 Binary files /dev/null and b/tools/configurator/res/flags/lgbtqia_nonbinary_32.png differ diff --git a/tools/configurator/res/flags/lgbtqia_nonbinary_32.png.import b/tools/configurator/res/flags/lgbtqia_nonbinary_32.png.import new file mode 100644 index 00000000..52588b24 --- /dev/null +++ b/tools/configurator/res/flags/lgbtqia_nonbinary_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn5fgxypbjjnn" +path="res://.godot/imported/lgbtqia_nonbinary_32.png-4ebf6f7ebd748e9922f6f39bff613697.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lgbtqia_nonbinary_32.png" +dest_files=["res://.godot/imported/lgbtqia_nonbinary_32.png-4ebf6f7ebd748e9922f6f39bff613697.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lgbtqia_pansexual_32.png b/tools/configurator/res/flags/lgbtqia_pansexual_32.png new file mode 100644 index 00000000..1e83a61e Binary files /dev/null and b/tools/configurator/res/flags/lgbtqia_pansexual_32.png differ diff --git a/tools/configurator/res/flags/lgbtqia_pansexual_32.png.import b/tools/configurator/res/flags/lgbtqia_pansexual_32.png.import new file mode 100644 index 00000000..9e83ab1a --- /dev/null +++ b/tools/configurator/res/flags/lgbtqia_pansexual_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duhnv817m2xb3" +path="res://.godot/imported/lgbtqia_pansexual_32.png-9df43f18dcd826a7f10c12927897b58d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lgbtqia_pansexual_32.png" +dest_files=["res://.godot/imported/lgbtqia_pansexual_32.png-9df43f18dcd826a7f10c12927897b58d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lgbtqia_pride_32.png b/tools/configurator/res/flags/lgbtqia_pride_32.png new file mode 100644 index 00000000..65e47b42 Binary files /dev/null and b/tools/configurator/res/flags/lgbtqia_pride_32.png differ diff --git a/tools/configurator/res/flags/lgbtqia_pride_32.png.import b/tools/configurator/res/flags/lgbtqia_pride_32.png.import new file mode 100644 index 00000000..8519bb70 --- /dev/null +++ b/tools/configurator/res/flags/lgbtqia_pride_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b316q08qqs7ek" +path="res://.godot/imported/lgbtqia_pride_32.png-769ddd41dc1867296dc3748558e55ecd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lgbtqia_pride_32.png" +dest_files=["res://.godot/imported/lgbtqia_pride_32.png-769ddd41dc1867296dc3748558e55ecd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lgbtqia_transgender_32.png b/tools/configurator/res/flags/lgbtqia_transgender_32.png new file mode 100644 index 00000000..5a9455a6 Binary files /dev/null and b/tools/configurator/res/flags/lgbtqia_transgender_32.png differ diff --git a/tools/configurator/res/flags/lgbtqia_transgender_32.png.import b/tools/configurator/res/flags/lgbtqia_transgender_32.png.import new file mode 100644 index 00000000..8fbb86c1 --- /dev/null +++ b/tools/configurator/res/flags/lgbtqia_transgender_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvkb58mswatd4" +path="res://.godot/imported/lgbtqia_transgender_32.png-684d7a382bb9536bf37c8c08e3c4e781.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lgbtqia_transgender_32.png" +dest_files=["res://.godot/imported/lgbtqia_transgender_32.png-684d7a382bb9536bf37c8c08e3c4e781.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/license.txt b/tools/configurator/res/flags/license.txt new file mode 100644 index 00000000..0e259d42 --- /dev/null +++ b/tools/configurator/res/flags/license.txt @@ -0,0 +1,121 @@ +Creative Commons Legal Code + +CC0 1.0 Universal + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED + HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer +exclusive Copyright and Related Rights (defined below) upon the creator +and subsequent owner(s) (each and all, an "owner") of an original work of +authorship and/or a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for +the purpose of contributing to a commons of creative, cultural and +scientific works ("Commons") that the public can reliably and without fear +of later claims of infringement build upon, modify, incorporate in other +works, reuse and redistribute as freely as possible in any form whatsoever +and for any purposes, including without limitation commercial purposes. +These owners may contribute to the Commons to promote the ideal of a free +culture and the further production of creative, cultural and scientific +works, or to gain reputation or greater distribution for their Work in +part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any +expectation of additional consideration or compensation, the person +associating CC0 with a Work (the "Affirmer"), to the extent that he or she +is an owner of Copyright and Related Rights in the Work, voluntarily +elects to apply CC0 to the Work and publicly distribute the Work under its +terms, with knowledge of his or her Copyright and Related Rights in the +Work and the meaning and intended legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be +protected by copyright and related or neighboring rights ("Copyright and +Related Rights"). Copyright and Related Rights include, but are not +limited to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, + communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); +iii. publicity and privacy rights pertaining to a person's image or + likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data + in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation + thereof, including any amended or successor version of such + directive); and +vii. other similar, equivalent or corresponding rights throughout the + world based on applicable law or treaty, and any national + implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention +of, applicable law, Affirmer hereby overtly, fully, permanently, +irrevocably and unconditionally waives, abandons, and surrenders all of +Affirmer's Copyright and Related Rights and associated claims and causes +of action, whether now known or unknown (including existing as well as +future claims and causes of action), in the Work (i) in all territories +worldwide, (ii) for the maximum duration provided by applicable law or +treaty (including future time extensions), (iii) in any current or future +medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional +purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each +member of the public at large and to the detriment of Affirmer's heirs and +successors, fully intending that such Waiver shall not be subject to +revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason +be judged legally invalid or ineffective under applicable law, then the +Waiver shall be preserved to the maximum extent permitted taking into +account Affirmer's express Statement of Purpose. In addition, to the +extent the Waiver is so judged Affirmer hereby grants to each affected +person a royalty-free, non transferable, non sublicensable, non exclusive, +irrevocable and unconditional license to exercise Affirmer's Copyright and +Related Rights in the Work (i) in all territories worldwide, (ii) for the +maximum duration provided by applicable law or treaty (including future +time extensions), (iii) in any current or future medium and for any number +of copies, and (iv) for any purpose whatsoever, including without +limitation commercial, advertising or promotional purposes (the +"License"). The License shall be deemed effective as of the date CC0 was +applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder +of the License, and in such case Affirmer hereby affirms that he or she +will not (i) exercise any of his or her remaining Copyright and Related +Rights in the Work or (ii) assert any associated claims and causes of +action with respect to the Work, in either case contrary to Affirmer's +express Statement of Purpose. + +4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or + warranties of any kind concerning the Work, express, implied, + statutory or otherwise, including without limitation warranties of + title, merchantability, fitness for a particular purpose, non + infringement, or the absence of latent or other defects, accuracy, or + the present or absence of errors, whether or not discoverable, all to + the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without + limitation any person's Copyright and Related Rights in the Work. + Further, Affirmer disclaims responsibility for obtaining any necessary + consents, permissions or other rights required for any use of the + Work. + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to + this CC0 or use of the Work. diff --git a/tools/configurator/res/flags/liechtenstein_32.png b/tools/configurator/res/flags/liechtenstein_32.png new file mode 100644 index 00000000..f27c7091 Binary files /dev/null and b/tools/configurator/res/flags/liechtenstein_32.png differ diff --git a/tools/configurator/res/flags/liechtenstein_32.png.import b/tools/configurator/res/flags/liechtenstein_32.png.import new file mode 100644 index 00000000..d067d431 --- /dev/null +++ b/tools/configurator/res/flags/liechtenstein_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://biw1vyusbuuvx" +path="res://.godot/imported/liechtenstein_32.png-1a5e7f0d03bb7d9f06ca3a4c73ef470d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/liechtenstein_32.png" +dest_files=["res://.godot/imported/liechtenstein_32.png-1a5e7f0d03bb7d9f06ca3a4c73ef470d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/lithuania_32.png b/tools/configurator/res/flags/lithuania_32.png new file mode 100644 index 00000000..72a5f417 Binary files /dev/null and b/tools/configurator/res/flags/lithuania_32.png differ diff --git a/tools/configurator/res/flags/lithuania_32.png.import b/tools/configurator/res/flags/lithuania_32.png.import new file mode 100644 index 00000000..1b1ad92e --- /dev/null +++ b/tools/configurator/res/flags/lithuania_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn0o6x6s3u5ht" +path="res://.godot/imported/lithuania_32.png-26d519a86c565ec220ba711c4c172fd1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/lithuania_32.png" +dest_files=["res://.godot/imported/lithuania_32.png-26d519a86c565ec220ba711c4c172fd1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/luxembourg_32.png b/tools/configurator/res/flags/luxembourg_32.png new file mode 100644 index 00000000..4ef9e099 Binary files /dev/null and b/tools/configurator/res/flags/luxembourg_32.png differ diff --git a/tools/configurator/res/flags/luxembourg_32.png.import b/tools/configurator/res/flags/luxembourg_32.png.import new file mode 100644 index 00000000..7310c1c3 --- /dev/null +++ b/tools/configurator/res/flags/luxembourg_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqsf5sknb7ghw" +path="res://.godot/imported/luxembourg_32.png-4273de6d0dd4fa87d6704b62fe6faa20.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/luxembourg_32.png" +dest_files=["res://.godot/imported/luxembourg_32.png-4273de6d0dd4fa87d6704b62fe6faa20.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/malaysia_32.png b/tools/configurator/res/flags/malaysia_32.png new file mode 100644 index 00000000..50624bc2 Binary files /dev/null and b/tools/configurator/res/flags/malaysia_32.png differ diff --git a/tools/configurator/res/flags/malaysia_32.png.import b/tools/configurator/res/flags/malaysia_32.png.import new file mode 100644 index 00000000..f2d728dc --- /dev/null +++ b/tools/configurator/res/flags/malaysia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vgkaawcvqokl" +path="res://.godot/imported/malaysia_32.png-4b03af04cde2139233d67e38a079c0b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/malaysia_32.png" +dest_files=["res://.godot/imported/malaysia_32.png-4b03af04cde2139233d67e38a079c0b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/malaysia_kuala_lumpur_32.png b/tools/configurator/res/flags/malaysia_kuala_lumpur_32.png new file mode 100644 index 00000000..48cda0dc Binary files /dev/null and b/tools/configurator/res/flags/malaysia_kuala_lumpur_32.png differ diff --git a/tools/configurator/res/flags/malaysia_kuala_lumpur_32.png.import b/tools/configurator/res/flags/malaysia_kuala_lumpur_32.png.import new file mode 100644 index 00000000..7bd293e8 --- /dev/null +++ b/tools/configurator/res/flags/malaysia_kuala_lumpur_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b117i7h4jgmtb" +path="res://.godot/imported/malaysia_kuala_lumpur_32.png-0bcf0213dae130e45ab022fe344ce791.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/malaysia_kuala_lumpur_32.png" +dest_files=["res://.godot/imported/malaysia_kuala_lumpur_32.png-0bcf0213dae130e45ab022fe344ce791.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maldives_32.png b/tools/configurator/res/flags/maldives_32.png new file mode 100644 index 00000000..b0619cf5 Binary files /dev/null and b/tools/configurator/res/flags/maldives_32.png differ diff --git a/tools/configurator/res/flags/maldives_32.png.import b/tools/configurator/res/flags/maldives_32.png.import new file mode 100644 index 00000000..a4534a89 --- /dev/null +++ b/tools/configurator/res/flags/maldives_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3x81f5e3p7it" +path="res://.godot/imported/maldives_32.png-48ce7f4eaf8d6aa33d18baba81f7d2f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maldives_32.png" +dest_files=["res://.godot/imported/maldives_32.png-48ce7f4eaf8d6aa33d18baba81f7d2f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/malta_32.png b/tools/configurator/res/flags/malta_32.png new file mode 100644 index 00000000..356c333e Binary files /dev/null and b/tools/configurator/res/flags/malta_32.png differ diff --git a/tools/configurator/res/flags/malta_32.png.import b/tools/configurator/res/flags/malta_32.png.import new file mode 100644 index 00000000..bdc9918f --- /dev/null +++ b/tools/configurator/res/flags/malta_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkvv34ojd0qou" +path="res://.godot/imported/malta_32.png-c4e57047b3c651d60890dda5185afe03.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/malta_32.png" +dest_files=["res://.godot/imported/malta_32.png-c4e57047b3c651d60890dda5185afe03.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/malta_central_region_32.png b/tools/configurator/res/flags/malta_central_region_32.png new file mode 100644 index 00000000..ff6f487c Binary files /dev/null and b/tools/configurator/res/flags/malta_central_region_32.png differ diff --git a/tools/configurator/res/flags/malta_central_region_32.png.import b/tools/configurator/res/flags/malta_central_region_32.png.import new file mode 100644 index 00000000..0f6b297a --- /dev/null +++ b/tools/configurator/res/flags/malta_central_region_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0yghj5ey0da5" +path="res://.godot/imported/malta_central_region_32.png-50d266c193602a77b9ea00b4b5e6ed80.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/malta_central_region_32.png" +dest_files=["res://.godot/imported/malta_central_region_32.png-50d266c193602a77b9ea00b4b5e6ed80.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/malta_gozo_32.png b/tools/configurator/res/flags/malta_gozo_32.png new file mode 100644 index 00000000..1e211b89 Binary files /dev/null and b/tools/configurator/res/flags/malta_gozo_32.png differ diff --git a/tools/configurator/res/flags/malta_gozo_32.png.import b/tools/configurator/res/flags/malta_gozo_32.png.import new file mode 100644 index 00000000..fa75c0c5 --- /dev/null +++ b/tools/configurator/res/flags/malta_gozo_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pp6id02q78ln" +path="res://.godot/imported/malta_gozo_32.png-242e991ab3b0b32a4c0370b67dd6a017.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/malta_gozo_32.png" +dest_files=["res://.godot/imported/malta_gozo_32.png-242e991ab3b0b32a4c0370b67dd6a017.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/malta_northern_region_32.png b/tools/configurator/res/flags/malta_northern_region_32.png new file mode 100644 index 00000000..fe324b6c Binary files /dev/null and b/tools/configurator/res/flags/malta_northern_region_32.png differ diff --git a/tools/configurator/res/flags/malta_northern_region_32.png.import b/tools/configurator/res/flags/malta_northern_region_32.png.import new file mode 100644 index 00000000..1bc1ac3e --- /dev/null +++ b/tools/configurator/res/flags/malta_northern_region_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3nhm51djs4k4" +path="res://.godot/imported/malta_northern_region_32.png-56d2e1dc8ec341ef1d1f402f5cd1b8a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/malta_northern_region_32.png" +dest_files=["res://.godot/imported/malta_northern_region_32.png-56d2e1dc8ec341ef1d1f402f5cd1b8a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/malta_southeastern_region_32.png b/tools/configurator/res/flags/malta_southeastern_region_32.png new file mode 100644 index 00000000..374bbf87 Binary files /dev/null and b/tools/configurator/res/flags/malta_southeastern_region_32.png differ diff --git a/tools/configurator/res/flags/malta_southeastern_region_32.png.import b/tools/configurator/res/flags/malta_southeastern_region_32.png.import new file mode 100644 index 00000000..2bcdce8b --- /dev/null +++ b/tools/configurator/res/flags/malta_southeastern_region_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdtk7gnajk656" +path="res://.godot/imported/malta_southeastern_region_32.png-2c2b07fed52ec55a38c4c9c2b0fe620a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/malta_southeastern_region_32.png" +dest_files=["res://.godot/imported/malta_southeastern_region_32.png-2c2b07fed52ec55a38c4c9c2b0fe620a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/malta_southern_region_32.png b/tools/configurator/res/flags/malta_southern_region_32.png new file mode 100644 index 00000000..d4466c83 Binary files /dev/null and b/tools/configurator/res/flags/malta_southern_region_32.png differ diff --git a/tools/configurator/res/flags/malta_southern_region_32.png.import b/tools/configurator/res/flags/malta_southern_region_32.png.import new file mode 100644 index 00000000..86dc7c6b --- /dev/null +++ b/tools/configurator/res/flags/malta_southern_region_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://54u8dsilu3dd" +path="res://.godot/imported/malta_southern_region_32.png-5445be060efbae2fdb3d08076303b299.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/malta_southern_region_32.png" +dest_files=["res://.godot/imported/malta_southern_region_32.png-5445be060efbae2fdb3d08076303b299.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_alfa_32.png b/tools/configurator/res/flags/maritime_rect_alfa_32.png new file mode 100644 index 00000000..23d76ca1 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_alfa_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_alfa_32.png.import b/tools/configurator/res/flags/maritime_rect_alfa_32.png.import new file mode 100644 index 00000000..a06bbec0 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_alfa_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh7mkk57vkqq6" +path="res://.godot/imported/maritime_rect_alfa_32.png-81bc7495c9d15d08f71b8361aa586df4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_alfa_32.png" +dest_files=["res://.godot/imported/maritime_rect_alfa_32.png-81bc7495c9d15d08f71b8361aa586df4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_answer_32.png b/tools/configurator/res/flags/maritime_rect_answer_32.png new file mode 100644 index 00000000..149d59de Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_answer_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_answer_32.png.import b/tools/configurator/res/flags/maritime_rect_answer_32.png.import new file mode 100644 index 00000000..c6ab8681 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_answer_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqrcsvu5p8kfe" +path="res://.godot/imported/maritime_rect_answer_32.png-a9e3ffd121885032bc9e1ea64c9bf936.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_answer_32.png" +dest_files=["res://.godot/imported/maritime_rect_answer_32.png-a9e3ffd121885032bc9e1ea64c9bf936.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_bissotwo_32.png b/tools/configurator/res/flags/maritime_rect_bissotwo_32.png new file mode 100644 index 00000000..a0b4867f Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_bissotwo_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_bissotwo_32.png.import b/tools/configurator/res/flags/maritime_rect_bissotwo_32.png.import new file mode 100644 index 00000000..c9d17b24 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_bissotwo_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2nnpc4yipi6e" +path="res://.godot/imported/maritime_rect_bissotwo_32.png-5eabfa32ad414584c1f1a36ab9582e51.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_bissotwo_32.png" +dest_files=["res://.godot/imported/maritime_rect_bissotwo_32.png-5eabfa32ad414584c1f1a36ab9582e51.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_bravo_32.png b/tools/configurator/res/flags/maritime_rect_bravo_32.png new file mode 100644 index 00000000..7bc963ff Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_bravo_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_bravo_32.png.import b/tools/configurator/res/flags/maritime_rect_bravo_32.png.import new file mode 100644 index 00000000..434cc9c2 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_bravo_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2hjvi83rpv26" +path="res://.godot/imported/maritime_rect_bravo_32.png-74988c51e18d4308c86db5048aee3ef4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_bravo_32.png" +dest_files=["res://.godot/imported/maritime_rect_bravo_32.png-74988c51e18d4308c86db5048aee3ef4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_charlie_32.png b/tools/configurator/res/flags/maritime_rect_charlie_32.png new file mode 100644 index 00000000..86fd6afd Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_charlie_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_charlie_32.png.import b/tools/configurator/res/flags/maritime_rect_charlie_32.png.import new file mode 100644 index 00000000..0dceace6 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_charlie_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbqdcn72ikq01" +path="res://.godot/imported/maritime_rect_charlie_32.png-e3f338418d97809c2957f50ced5630a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_charlie_32.png" +dest_files=["res://.godot/imported/maritime_rect_charlie_32.png-e3f338418d97809c2957f50ced5630a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_delta_32.png b/tools/configurator/res/flags/maritime_rect_delta_32.png new file mode 100644 index 00000000..28338085 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_delta_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_delta_32.png.import b/tools/configurator/res/flags/maritime_rect_delta_32.png.import new file mode 100644 index 00000000..6690a791 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_delta_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qcesuuexb3i3" +path="res://.godot/imported/maritime_rect_delta_32.png-715d4db6535f6b777a7964e9fbce3564.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_delta_32.png" +dest_files=["res://.godot/imported/maritime_rect_delta_32.png-715d4db6535f6b777a7964e9fbce3564.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_echo_32.png b/tools/configurator/res/flags/maritime_rect_echo_32.png new file mode 100644 index 00000000..274e393f Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_echo_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_echo_32.png.import b/tools/configurator/res/flags/maritime_rect_echo_32.png.import new file mode 100644 index 00000000..932f4661 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_echo_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsgm6pabgu3nk" +path="res://.godot/imported/maritime_rect_echo_32.png-1d5545f6b40ffe1d5e990d16773219ca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_echo_32.png" +dest_files=["res://.godot/imported/maritime_rect_echo_32.png-1d5545f6b40ffe1d5e990d16773219ca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_first_sub_32.png b/tools/configurator/res/flags/maritime_rect_first_sub_32.png new file mode 100644 index 00000000..b3f65656 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_first_sub_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_first_sub_32.png.import b/tools/configurator/res/flags/maritime_rect_first_sub_32.png.import new file mode 100644 index 00000000..65b459be --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_first_sub_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvvicyeehk3e3" +path="res://.godot/imported/maritime_rect_first_sub_32.png-49d6101472615255ee3fe028522872e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_first_sub_32.png" +dest_files=["res://.godot/imported/maritime_rect_first_sub_32.png-49d6101472615255ee3fe028522872e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_fourth_sub_32.png b/tools/configurator/res/flags/maritime_rect_fourth_sub_32.png new file mode 100644 index 00000000..4ee54947 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_fourth_sub_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_fourth_sub_32.png.import b/tools/configurator/res/flags/maritime_rect_fourth_sub_32.png.import new file mode 100644 index 00000000..d91ec869 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_fourth_sub_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtfv5yy4mwrqk" +path="res://.godot/imported/maritime_rect_fourth_sub_32.png-aed82a5e0dcda3eef61680f2e7269845.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_fourth_sub_32.png" +dest_files=["res://.godot/imported/maritime_rect_fourth_sub_32.png-aed82a5e0dcda3eef61680f2e7269845.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_foxtrot_32.png b/tools/configurator/res/flags/maritime_rect_foxtrot_32.png new file mode 100644 index 00000000..c415ae63 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_foxtrot_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_foxtrot_32.png.import b/tools/configurator/res/flags/maritime_rect_foxtrot_32.png.import new file mode 100644 index 00000000..bb1bb6a2 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_foxtrot_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6dyu1ekne1j3" +path="res://.godot/imported/maritime_rect_foxtrot_32.png-c5609dbfff8bc0f21b4c5cf02a67ef8d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_foxtrot_32.png" +dest_files=["res://.godot/imported/maritime_rect_foxtrot_32.png-c5609dbfff8bc0f21b4c5cf02a67ef8d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_golf_32.png b/tools/configurator/res/flags/maritime_rect_golf_32.png new file mode 100644 index 00000000..fe1a1e88 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_golf_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_golf_32.png.import b/tools/configurator/res/flags/maritime_rect_golf_32.png.import new file mode 100644 index 00000000..8b5f3746 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_golf_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb4ew54mdferr" +path="res://.godot/imported/maritime_rect_golf_32.png-36e63d7d4482ec0c60c99942b213bcfb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_golf_32.png" +dest_files=["res://.godot/imported/maritime_rect_golf_32.png-36e63d7d4482ec0c60c99942b213bcfb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_hotel_32.png b/tools/configurator/res/flags/maritime_rect_hotel_32.png new file mode 100644 index 00000000..f2b94507 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_hotel_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_hotel_32.png.import b/tools/configurator/res/flags/maritime_rect_hotel_32.png.import new file mode 100644 index 00000000..1061245f --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_hotel_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxavueshssh6n" +path="res://.godot/imported/maritime_rect_hotel_32.png-134095f1d08181904a57a9821715acc9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_hotel_32.png" +dest_files=["res://.godot/imported/maritime_rect_hotel_32.png-134095f1d08181904a57a9821715acc9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_india_32.png b/tools/configurator/res/flags/maritime_rect_india_32.png new file mode 100644 index 00000000..351a8d9a Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_india_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_india_32.png.import b/tools/configurator/res/flags/maritime_rect_india_32.png.import new file mode 100644 index 00000000..a22d4b93 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_india_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4akyiqwhsm1h" +path="res://.godot/imported/maritime_rect_india_32.png-f593bd8d0bd80911ac22b51440900818.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_india_32.png" +dest_files=["res://.godot/imported/maritime_rect_india_32.png-f593bd8d0bd80911ac22b51440900818.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_juliet_32.png b/tools/configurator/res/flags/maritime_rect_juliet_32.png new file mode 100644 index 00000000..b05b561c Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_juliet_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_juliet_32.png.import b/tools/configurator/res/flags/maritime_rect_juliet_32.png.import new file mode 100644 index 00000000..965178e2 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_juliet_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chdvehj06lnyv" +path="res://.godot/imported/maritime_rect_juliet_32.png-fe6e69baac1fcbb4dc2a3ad2b4bc3df9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_juliet_32.png" +dest_files=["res://.godot/imported/maritime_rect_juliet_32.png-fe6e69baac1fcbb4dc2a3ad2b4bc3df9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_kartefour_32.png b/tools/configurator/res/flags/maritime_rect_kartefour_32.png new file mode 100644 index 00000000..00eb569b Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_kartefour_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_kartefour_32.png.import b/tools/configurator/res/flags/maritime_rect_kartefour_32.png.import new file mode 100644 index 00000000..63784bd6 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_kartefour_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddqw5gef2tq5f" +path="res://.godot/imported/maritime_rect_kartefour_32.png-57d242d1c6451a9e1520aa095f7cc595.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_kartefour_32.png" +dest_files=["res://.godot/imported/maritime_rect_kartefour_32.png-57d242d1c6451a9e1520aa095f7cc595.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_kilo_32.png b/tools/configurator/res/flags/maritime_rect_kilo_32.png new file mode 100644 index 00000000..c9cd8bce Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_kilo_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_kilo_32.png.import b/tools/configurator/res/flags/maritime_rect_kilo_32.png.import new file mode 100644 index 00000000..92c0278d --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_kilo_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brofc5qjflu0n" +path="res://.godot/imported/maritime_rect_kilo_32.png-4575a2671009bc8b52ca610b1e9ded1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_kilo_32.png" +dest_files=["res://.godot/imported/maritime_rect_kilo_32.png-4575a2671009bc8b52ca610b1e9ded1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_lima_32.png b/tools/configurator/res/flags/maritime_rect_lima_32.png new file mode 100644 index 00000000..8b52f958 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_lima_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_lima_32.png.import b/tools/configurator/res/flags/maritime_rect_lima_32.png.import new file mode 100644 index 00000000..8da7f779 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_lima_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfd6w6o70t6r0" +path="res://.godot/imported/maritime_rect_lima_32.png-668d70fb4caa234e03f9c896a23a3e96.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_lima_32.png" +dest_files=["res://.godot/imported/maritime_rect_lima_32.png-668d70fb4caa234e03f9c896a23a3e96.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_mike_32.png b/tools/configurator/res/flags/maritime_rect_mike_32.png new file mode 100644 index 00000000..3ef1355d Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_mike_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_mike_32.png.import b/tools/configurator/res/flags/maritime_rect_mike_32.png.import new file mode 100644 index 00000000..5779cc80 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_mike_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://deg4wio5k2y1d" +path="res://.godot/imported/maritime_rect_mike_32.png-4f2314dd7cf898e0513eb2acc3fce86c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_mike_32.png" +dest_files=["res://.godot/imported/maritime_rect_mike_32.png-4f2314dd7cf898e0513eb2acc3fce86c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_nadazero_32.png b/tools/configurator/res/flags/maritime_rect_nadazero_32.png new file mode 100644 index 00000000..3b768754 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_nadazero_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_nadazero_32.png.import b/tools/configurator/res/flags/maritime_rect_nadazero_32.png.import new file mode 100644 index 00000000..4d97bbdc --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_nadazero_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq8lda4up8le1" +path="res://.godot/imported/maritime_rect_nadazero_32.png-7e851db8825041a1a02553864d1dae7b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_nadazero_32.png" +dest_files=["res://.godot/imported/maritime_rect_nadazero_32.png-7e851db8825041a1a02553864d1dae7b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_nato_eight_32.png b/tools/configurator/res/flags/maritime_rect_nato_eight_32.png new file mode 100644 index 00000000..0799bd36 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_nato_eight_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_nato_eight_32.png.import b/tools/configurator/res/flags/maritime_rect_nato_eight_32.png.import new file mode 100644 index 00000000..8d5522e0 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_nato_eight_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://phtf0dgx7kw0" +path="res://.godot/imported/maritime_rect_nato_eight_32.png-1b0ea23f113c7f3cef475d635c79006e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_nato_eight_32.png" +dest_files=["res://.godot/imported/maritime_rect_nato_eight_32.png-1b0ea23f113c7f3cef475d635c79006e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_nato_five_32.png b/tools/configurator/res/flags/maritime_rect_nato_five_32.png new file mode 100644 index 00000000..3ed7c2b0 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_nato_five_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_nato_five_32.png.import b/tools/configurator/res/flags/maritime_rect_nato_five_32.png.import new file mode 100644 index 00000000..36e05543 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_nato_five_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://becksb1vcfj7r" +path="res://.godot/imported/maritime_rect_nato_five_32.png-14a62778dc1ea82eb5366011ac5f59da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_nato_five_32.png" +dest_files=["res://.godot/imported/maritime_rect_nato_five_32.png-14a62778dc1ea82eb5366011ac5f59da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_nato_four_32.png b/tools/configurator/res/flags/maritime_rect_nato_four_32.png new file mode 100644 index 00000000..7b879023 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_nato_four_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_nato_four_32.png.import b/tools/configurator/res/flags/maritime_rect_nato_four_32.png.import new file mode 100644 index 00000000..1c36c83d --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_nato_four_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxhjjjp5c73ne" +path="res://.godot/imported/maritime_rect_nato_four_32.png-0a57971917794049804f168fabf3998d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_nato_four_32.png" +dest_files=["res://.godot/imported/maritime_rect_nato_four_32.png-0a57971917794049804f168fabf3998d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_nato_nine_32.png b/tools/configurator/res/flags/maritime_rect_nato_nine_32.png new file mode 100644 index 00000000..e82abdb7 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_nato_nine_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_nato_nine_32.png.import b/tools/configurator/res/flags/maritime_rect_nato_nine_32.png.import new file mode 100644 index 00000000..a4ac4b7c --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_nato_nine_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m38d5wxdyt2n" +path="res://.godot/imported/maritime_rect_nato_nine_32.png-a9e262b4aefd95c2777c398446a1cc77.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_nato_nine_32.png" +dest_files=["res://.godot/imported/maritime_rect_nato_nine_32.png-a9e262b4aefd95c2777c398446a1cc77.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_nato_one_32.png b/tools/configurator/res/flags/maritime_rect_nato_one_32.png new file mode 100644 index 00000000..cebbb45a Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_nato_one_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_nato_one_32.png.import b/tools/configurator/res/flags/maritime_rect_nato_one_32.png.import new file mode 100644 index 00000000..47385ba6 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_nato_one_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2hv21sfapcku" +path="res://.godot/imported/maritime_rect_nato_one_32.png-33e6a588dc7cd47fec699deac7fe1e65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_nato_one_32.png" +dest_files=["res://.godot/imported/maritime_rect_nato_one_32.png-33e6a588dc7cd47fec699deac7fe1e65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_nato_seven_32.png b/tools/configurator/res/flags/maritime_rect_nato_seven_32.png new file mode 100644 index 00000000..d81a0df0 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_nato_seven_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_nato_seven_32.png.import b/tools/configurator/res/flags/maritime_rect_nato_seven_32.png.import new file mode 100644 index 00000000..788c1fc5 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_nato_seven_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c801hinbdi4jg" +path="res://.godot/imported/maritime_rect_nato_seven_32.png-48dcadd9fc3b24e6c0d960f8cd6eb9c6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_nato_seven_32.png" +dest_files=["res://.godot/imported/maritime_rect_nato_seven_32.png-48dcadd9fc3b24e6c0d960f8cd6eb9c6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_nato_six_32.png b/tools/configurator/res/flags/maritime_rect_nato_six_32.png new file mode 100644 index 00000000..158e0fc5 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_nato_six_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_nato_six_32.png.import b/tools/configurator/res/flags/maritime_rect_nato_six_32.png.import new file mode 100644 index 00000000..7c77c3a1 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_nato_six_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ci66bmwv35grd" +path="res://.godot/imported/maritime_rect_nato_six_32.png-2d8014931e4b37fa4b193482acd7aa15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_nato_six_32.png" +dest_files=["res://.godot/imported/maritime_rect_nato_six_32.png-2d8014931e4b37fa4b193482acd7aa15.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_nato_three_32.png b/tools/configurator/res/flags/maritime_rect_nato_three_32.png new file mode 100644 index 00000000..dbc4f8fe Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_nato_three_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_nato_three_32.png.import b/tools/configurator/res/flags/maritime_rect_nato_three_32.png.import new file mode 100644 index 00000000..2cbaae32 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_nato_three_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qaiaw8butrue" +path="res://.godot/imported/maritime_rect_nato_three_32.png-82bb93ef15e3d101aef88e8cd5e515c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_nato_three_32.png" +dest_files=["res://.godot/imported/maritime_rect_nato_three_32.png-82bb93ef15e3d101aef88e8cd5e515c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_nato_two_32.png b/tools/configurator/res/flags/maritime_rect_nato_two_32.png new file mode 100644 index 00000000..ef49d5c0 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_nato_two_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_nato_two_32.png.import b/tools/configurator/res/flags/maritime_rect_nato_two_32.png.import new file mode 100644 index 00000000..827adb97 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_nato_two_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4ul5uf3yqe58" +path="res://.godot/imported/maritime_rect_nato_two_32.png-33a142fca94bbf7aada238d85321ea9e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_nato_two_32.png" +dest_files=["res://.godot/imported/maritime_rect_nato_two_32.png-33a142fca94bbf7aada238d85321ea9e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_nato_zero_32.png b/tools/configurator/res/flags/maritime_rect_nato_zero_32.png new file mode 100644 index 00000000..ece272f0 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_nato_zero_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_nato_zero_32.png.import b/tools/configurator/res/flags/maritime_rect_nato_zero_32.png.import new file mode 100644 index 00000000..d204fec0 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_nato_zero_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drtnrjhfkt6cw" +path="res://.godot/imported/maritime_rect_nato_zero_32.png-a6f3292d8c355ad8f9778a76efdb23ca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_nato_zero_32.png" +dest_files=["res://.godot/imported/maritime_rect_nato_zero_32.png-a6f3292d8c355ad8f9778a76efdb23ca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_november_32.png b/tools/configurator/res/flags/maritime_rect_november_32.png new file mode 100644 index 00000000..7b18a1c0 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_november_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_november_32.png.import b/tools/configurator/res/flags/maritime_rect_november_32.png.import new file mode 100644 index 00000000..e369c4c1 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_november_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bf4elu074j64g" +path="res://.godot/imported/maritime_rect_november_32.png-3c4186f61c20052ee01f073a2c0ce0a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_november_32.png" +dest_files=["res://.godot/imported/maritime_rect_november_32.png-3c4186f61c20052ee01f073a2c0ce0a9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_novenine_32.png b/tools/configurator/res/flags/maritime_rect_novenine_32.png new file mode 100644 index 00000000..6c524961 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_novenine_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_novenine_32.png.import b/tools/configurator/res/flags/maritime_rect_novenine_32.png.import new file mode 100644 index 00000000..20b36178 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_novenine_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpccga7mf8yv5" +path="res://.godot/imported/maritime_rect_novenine_32.png-8a26d1ea13cb14817a0f0e91a2da4c1c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_novenine_32.png" +dest_files=["res://.godot/imported/maritime_rect_novenine_32.png-8a26d1ea13cb14817a0f0e91a2da4c1c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_oktoeight_32.png b/tools/configurator/res/flags/maritime_rect_oktoeight_32.png new file mode 100644 index 00000000..723999b8 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_oktoeight_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_oktoeight_32.png.import b/tools/configurator/res/flags/maritime_rect_oktoeight_32.png.import new file mode 100644 index 00000000..1338d08c --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_oktoeight_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvl141d1c6arf" +path="res://.godot/imported/maritime_rect_oktoeight_32.png-5fc978c74a5ebb65317eb09fd3e8e7cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_oktoeight_32.png" +dest_files=["res://.godot/imported/maritime_rect_oktoeight_32.png-5fc978c74a5ebb65317eb09fd3e8e7cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_oscar_32.png b/tools/configurator/res/flags/maritime_rect_oscar_32.png new file mode 100644 index 00000000..302f5a49 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_oscar_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_oscar_32.png.import b/tools/configurator/res/flags/maritime_rect_oscar_32.png.import new file mode 100644 index 00000000..5ef9a14c --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_oscar_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxp7hpk5akxhw" +path="res://.godot/imported/maritime_rect_oscar_32.png-47f8cb577d1d244aa33912c4caf60821.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_oscar_32.png" +dest_files=["res://.godot/imported/maritime_rect_oscar_32.png-47f8cb577d1d244aa33912c4caf60821.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_pantafive_32.png b/tools/configurator/res/flags/maritime_rect_pantafive_32.png new file mode 100644 index 00000000..e74ee548 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_pantafive_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_pantafive_32.png.import b/tools/configurator/res/flags/maritime_rect_pantafive_32.png.import new file mode 100644 index 00000000..0afdb73c --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_pantafive_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl7unvwuridqp" +path="res://.godot/imported/maritime_rect_pantafive_32.png-4e730360d9c81da21d5f2b6a95a63c1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_pantafive_32.png" +dest_files=["res://.godot/imported/maritime_rect_pantafive_32.png-4e730360d9c81da21d5f2b6a95a63c1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_papa_32.png b/tools/configurator/res/flags/maritime_rect_papa_32.png new file mode 100644 index 00000000..da4ec03f Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_papa_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_papa_32.png.import b/tools/configurator/res/flags/maritime_rect_papa_32.png.import new file mode 100644 index 00000000..96a5b8f4 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_papa_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dicav0o2ch776" +path="res://.godot/imported/maritime_rect_papa_32.png-fa5f994f62215200ba3e5c69fe6085d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_papa_32.png" +dest_files=["res://.godot/imported/maritime_rect_papa_32.png-fa5f994f62215200ba3e5c69fe6085d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_quebec_32.png b/tools/configurator/res/flags/maritime_rect_quebec_32.png new file mode 100644 index 00000000..db484fb1 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_quebec_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_quebec_32.png.import b/tools/configurator/res/flags/maritime_rect_quebec_32.png.import new file mode 100644 index 00000000..88db155b --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_quebec_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cc6y4a58dm6uo" +path="res://.godot/imported/maritime_rect_quebec_32.png-e6a0dd398655bf6c681fdd34434ab866.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_quebec_32.png" +dest_files=["res://.godot/imported/maritime_rect_quebec_32.png-e6a0dd398655bf6c681fdd34434ab866.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_romeo_32.png b/tools/configurator/res/flags/maritime_rect_romeo_32.png new file mode 100644 index 00000000..b86729e2 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_romeo_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_romeo_32.png.import b/tools/configurator/res/flags/maritime_rect_romeo_32.png.import new file mode 100644 index 00000000..1b7fe39b --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_romeo_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ct0n5li5u3qm6" +path="res://.godot/imported/maritime_rect_romeo_32.png-4cbda7c95b167d58cd0614dd84c7524a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_romeo_32.png" +dest_files=["res://.godot/imported/maritime_rect_romeo_32.png-4cbda7c95b167d58cd0614dd84c7524a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_second_sub_32.png b/tools/configurator/res/flags/maritime_rect_second_sub_32.png new file mode 100644 index 00000000..562e58fa Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_second_sub_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_second_sub_32.png.import b/tools/configurator/res/flags/maritime_rect_second_sub_32.png.import new file mode 100644 index 00000000..3475d998 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_second_sub_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxvrfg7nia4ag" +path="res://.godot/imported/maritime_rect_second_sub_32.png-d95908d7bdc0aaf0999052934967024c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_second_sub_32.png" +dest_files=["res://.godot/imported/maritime_rect_second_sub_32.png-d95908d7bdc0aaf0999052934967024c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_setteseven_32.png b/tools/configurator/res/flags/maritime_rect_setteseven_32.png new file mode 100644 index 00000000..300a596d Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_setteseven_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_setteseven_32.png.import b/tools/configurator/res/flags/maritime_rect_setteseven_32.png.import new file mode 100644 index 00000000..14ee93e2 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_setteseven_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djolaucqmm2gc" +path="res://.godot/imported/maritime_rect_setteseven_32.png-83c94b710e20ea32cad0bfe0fd30d00c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_setteseven_32.png" +dest_files=["res://.godot/imported/maritime_rect_setteseven_32.png-83c94b710e20ea32cad0bfe0fd30d00c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_sierra_32.png b/tools/configurator/res/flags/maritime_rect_sierra_32.png new file mode 100644 index 00000000..f2af6832 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_sierra_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_sierra_32.png.import b/tools/configurator/res/flags/maritime_rect_sierra_32.png.import new file mode 100644 index 00000000..3c8d957d --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_sierra_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpdjokrxmfw3q" +path="res://.godot/imported/maritime_rect_sierra_32.png-d0546a520aa4347b67ecd5e2334287ad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_sierra_32.png" +dest_files=["res://.godot/imported/maritime_rect_sierra_32.png-d0546a520aa4347b67ecd5e2334287ad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_soxisix_32.png b/tools/configurator/res/flags/maritime_rect_soxisix_32.png new file mode 100644 index 00000000..f0b94ebd Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_soxisix_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_soxisix_32.png.import b/tools/configurator/res/flags/maritime_rect_soxisix_32.png.import new file mode 100644 index 00000000..c6fc31a3 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_soxisix_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmh447bhyi8f8" +path="res://.godot/imported/maritime_rect_soxisix_32.png-4e3ea71ec101fdc3da590150820e9afe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_soxisix_32.png" +dest_files=["res://.godot/imported/maritime_rect_soxisix_32.png-4e3ea71ec101fdc3da590150820e9afe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_tango_32.png b/tools/configurator/res/flags/maritime_rect_tango_32.png new file mode 100644 index 00000000..7fd2db4e Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_tango_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_tango_32.png.import b/tools/configurator/res/flags/maritime_rect_tango_32.png.import new file mode 100644 index 00000000..0eb7651c --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_tango_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://plpheob0kbtf" +path="res://.godot/imported/maritime_rect_tango_32.png-9822b039e69ac51652f52f1c0e791d28.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_tango_32.png" +dest_files=["res://.godot/imported/maritime_rect_tango_32.png-9822b039e69ac51652f52f1c0e791d28.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_terrathree_32.png b/tools/configurator/res/flags/maritime_rect_terrathree_32.png new file mode 100644 index 00000000..2eff3828 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_terrathree_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_terrathree_32.png.import b/tools/configurator/res/flags/maritime_rect_terrathree_32.png.import new file mode 100644 index 00000000..c927297f --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_terrathree_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mbulqk3t8cmg" +path="res://.godot/imported/maritime_rect_terrathree_32.png-98639f2e423ae1500d73d1a34378827c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_terrathree_32.png" +dest_files=["res://.godot/imported/maritime_rect_terrathree_32.png-98639f2e423ae1500d73d1a34378827c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_third_sub_32.png b/tools/configurator/res/flags/maritime_rect_third_sub_32.png new file mode 100644 index 00000000..0c6a5948 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_third_sub_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_third_sub_32.png.import b/tools/configurator/res/flags/maritime_rect_third_sub_32.png.import new file mode 100644 index 00000000..6a1657e3 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_third_sub_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwhjmaab085pj" +path="res://.godot/imported/maritime_rect_third_sub_32.png-59baa258e668fe9bc4bf2c9925d8d31f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_third_sub_32.png" +dest_files=["res://.godot/imported/maritime_rect_third_sub_32.png-59baa258e668fe9bc4bf2c9925d8d31f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_unaone_32.png b/tools/configurator/res/flags/maritime_rect_unaone_32.png new file mode 100644 index 00000000..76a30ba2 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_unaone_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_unaone_32.png.import b/tools/configurator/res/flags/maritime_rect_unaone_32.png.import new file mode 100644 index 00000000..3437b04e --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_unaone_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gaga1y8v6epw" +path="res://.godot/imported/maritime_rect_unaone_32.png-42c0d2d0297d8c2f9b25be801a292065.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_unaone_32.png" +dest_files=["res://.godot/imported/maritime_rect_unaone_32.png-42c0d2d0297d8c2f9b25be801a292065.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_uniform_32.png b/tools/configurator/res/flags/maritime_rect_uniform_32.png new file mode 100644 index 00000000..a418edd0 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_uniform_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_uniform_32.png.import b/tools/configurator/res/flags/maritime_rect_uniform_32.png.import new file mode 100644 index 00000000..7478420f --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_uniform_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e7a0mrpgg1pc" +path="res://.godot/imported/maritime_rect_uniform_32.png-4476d931c02ce4033300504a68c02468.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_uniform_32.png" +dest_files=["res://.godot/imported/maritime_rect_uniform_32.png-4476d931c02ce4033300504a68c02468.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_victor_32.png b/tools/configurator/res/flags/maritime_rect_victor_32.png new file mode 100644 index 00000000..588fd746 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_victor_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_victor_32.png.import b/tools/configurator/res/flags/maritime_rect_victor_32.png.import new file mode 100644 index 00000000..4064ac13 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_victor_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqcph1bef6yij" +path="res://.godot/imported/maritime_rect_victor_32.png-2bb28119ccd996cd5e336335b0ace92d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_victor_32.png" +dest_files=["res://.godot/imported/maritime_rect_victor_32.png-2bb28119ccd996cd5e336335b0ace92d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_whiskey_32.png b/tools/configurator/res/flags/maritime_rect_whiskey_32.png new file mode 100644 index 00000000..dd06997e Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_whiskey_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_whiskey_32.png.import b/tools/configurator/res/flags/maritime_rect_whiskey_32.png.import new file mode 100644 index 00000000..120f21fc --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_whiskey_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyhtuo1eddh8q" +path="res://.godot/imported/maritime_rect_whiskey_32.png-36a03aef317f0abe926f8e6de736bada.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_whiskey_32.png" +dest_files=["res://.godot/imported/maritime_rect_whiskey_32.png-36a03aef317f0abe926f8e6de736bada.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_xray_32.png b/tools/configurator/res/flags/maritime_rect_xray_32.png new file mode 100644 index 00000000..65bd5a28 Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_xray_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_xray_32.png.import b/tools/configurator/res/flags/maritime_rect_xray_32.png.import new file mode 100644 index 00000000..0d8f1b18 --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_xray_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jfi3wte56skd" +path="res://.godot/imported/maritime_rect_xray_32.png-7f63721ab5ea4ee7a11597abf53dc1b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_xray_32.png" +dest_files=["res://.godot/imported/maritime_rect_xray_32.png-7f63721ab5ea4ee7a11597abf53dc1b2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_yankee_32.png b/tools/configurator/res/flags/maritime_rect_yankee_32.png new file mode 100644 index 00000000..4201d37f Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_yankee_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_yankee_32.png.import b/tools/configurator/res/flags/maritime_rect_yankee_32.png.import new file mode 100644 index 00000000..fe1e97ff --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_yankee_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ep1qfpwb027s" +path="res://.godot/imported/maritime_rect_yankee_32.png-ed28a3dbfa0c08ce2b737d851625ac37.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_yankee_32.png" +dest_files=["res://.godot/imported/maritime_rect_yankee_32.png-ed28a3dbfa0c08ce2b737d851625ac37.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_rect_zulu_32.png b/tools/configurator/res/flags/maritime_rect_zulu_32.png new file mode 100644 index 00000000..4a88f8fb Binary files /dev/null and b/tools/configurator/res/flags/maritime_rect_zulu_32.png differ diff --git a/tools/configurator/res/flags/maritime_rect_zulu_32.png.import b/tools/configurator/res/flags/maritime_rect_zulu_32.png.import new file mode 100644 index 00000000..eef2adad --- /dev/null +++ b/tools/configurator/res/flags/maritime_rect_zulu_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dprk26dctm0co" +path="res://.godot/imported/maritime_rect_zulu_32.png-c389698cfdbdb1ccc6f6f8fc0a1c1cf5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_rect_zulu_32.png" +dest_files=["res://.godot/imported/maritime_rect_zulu_32.png-c389698cfdbdb1ccc6f6f8fc0a1c1cf5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_alfa_32.png b/tools/configurator/res/flags/maritime_square_alfa_32.png new file mode 100644 index 00000000..84baae6a Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_alfa_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_alfa_32.png.import b/tools/configurator/res/flags/maritime_square_alfa_32.png.import new file mode 100644 index 00000000..56377d01 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_alfa_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnkwd8ogxx5ix" +path="res://.godot/imported/maritime_square_alfa_32.png-fffecf6c1b5ceccd4e96c053f96c0d6f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_alfa_32.png" +dest_files=["res://.godot/imported/maritime_square_alfa_32.png-fffecf6c1b5ceccd4e96c053f96c0d6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_bravo_32.png b/tools/configurator/res/flags/maritime_square_bravo_32.png new file mode 100644 index 00000000..f35ddb09 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_bravo_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_bravo_32.png.import b/tools/configurator/res/flags/maritime_square_bravo_32.png.import new file mode 100644 index 00000000..b4c50650 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_bravo_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctdrnb3h38aaw" +path="res://.godot/imported/maritime_square_bravo_32.png-5c85e8fd6d9c56673030787bbf0d6f8a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_bravo_32.png" +dest_files=["res://.godot/imported/maritime_square_bravo_32.png-5c85e8fd6d9c56673030787bbf0d6f8a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_charlie_32.png b/tools/configurator/res/flags/maritime_square_charlie_32.png new file mode 100644 index 00000000..f56a0b30 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_charlie_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_charlie_32.png.import b/tools/configurator/res/flags/maritime_square_charlie_32.png.import new file mode 100644 index 00000000..01d43419 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_charlie_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw0ntysri8llx" +path="res://.godot/imported/maritime_square_charlie_32.png-ac122b5de573f2ffe3d7de8bba8baabe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_charlie_32.png" +dest_files=["res://.godot/imported/maritime_square_charlie_32.png-ac122b5de573f2ffe3d7de8bba8baabe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_delta_32.png b/tools/configurator/res/flags/maritime_square_delta_32.png new file mode 100644 index 00000000..aaa22b6a Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_delta_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_delta_32.png.import b/tools/configurator/res/flags/maritime_square_delta_32.png.import new file mode 100644 index 00000000..026798ec --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_delta_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gplptn0nvl58" +path="res://.godot/imported/maritime_square_delta_32.png-882bbc144e1b16ddd8e5bd607a974fa2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_delta_32.png" +dest_files=["res://.godot/imported/maritime_square_delta_32.png-882bbc144e1b16ddd8e5bd607a974fa2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_echo_32.png b/tools/configurator/res/flags/maritime_square_echo_32.png new file mode 100644 index 00000000..3262729e Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_echo_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_echo_32.png.import b/tools/configurator/res/flags/maritime_square_echo_32.png.import new file mode 100644 index 00000000..d42fe70a --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_echo_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://codmxlsffndgf" +path="res://.godot/imported/maritime_square_echo_32.png-5cb4dd76532d9c19ab514a6794878f1c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_echo_32.png" +dest_files=["res://.godot/imported/maritime_square_echo_32.png-5cb4dd76532d9c19ab514a6794878f1c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_foxtrot_32.png b/tools/configurator/res/flags/maritime_square_foxtrot_32.png new file mode 100644 index 00000000..a0db0697 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_foxtrot_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_foxtrot_32.png.import b/tools/configurator/res/flags/maritime_square_foxtrot_32.png.import new file mode 100644 index 00000000..9795a4f6 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_foxtrot_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcj5yh7hyd1gs" +path="res://.godot/imported/maritime_square_foxtrot_32.png-1416400c706f684bda3dece2fb5843c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_foxtrot_32.png" +dest_files=["res://.godot/imported/maritime_square_foxtrot_32.png-1416400c706f684bda3dece2fb5843c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_golf_32.png b/tools/configurator/res/flags/maritime_square_golf_32.png new file mode 100644 index 00000000..0982bfb9 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_golf_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_golf_32.png.import b/tools/configurator/res/flags/maritime_square_golf_32.png.import new file mode 100644 index 00000000..6ccaa5de --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_golf_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4jl2xn6wqedo" +path="res://.godot/imported/maritime_square_golf_32.png-a0c04bfcb7bda3232efc3eb7c14660de.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_golf_32.png" +dest_files=["res://.godot/imported/maritime_square_golf_32.png-a0c04bfcb7bda3232efc3eb7c14660de.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_hotel_32.png b/tools/configurator/res/flags/maritime_square_hotel_32.png new file mode 100644 index 00000000..fc1196c7 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_hotel_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_hotel_32.png.import b/tools/configurator/res/flags/maritime_square_hotel_32.png.import new file mode 100644 index 00000000..73785cba --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_hotel_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df4onigltp4ox" +path="res://.godot/imported/maritime_square_hotel_32.png-fe5747eb420725604ec7a375dbc3618f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_hotel_32.png" +dest_files=["res://.godot/imported/maritime_square_hotel_32.png-fe5747eb420725604ec7a375dbc3618f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_india_32.png b/tools/configurator/res/flags/maritime_square_india_32.png new file mode 100644 index 00000000..697342ea Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_india_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_india_32.png.import b/tools/configurator/res/flags/maritime_square_india_32.png.import new file mode 100644 index 00000000..fc99c929 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_india_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxbtphcuwqwd" +path="res://.godot/imported/maritime_square_india_32.png-e33e31922005517daf1a7a0b0f7efe3c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_india_32.png" +dest_files=["res://.godot/imported/maritime_square_india_32.png-e33e31922005517daf1a7a0b0f7efe3c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_juliett_32.png b/tools/configurator/res/flags/maritime_square_juliett_32.png new file mode 100644 index 00000000..3f54f201 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_juliett_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_juliett_32.png.import b/tools/configurator/res/flags/maritime_square_juliett_32.png.import new file mode 100644 index 00000000..12129567 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_juliett_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1l2p4ee3obn7" +path="res://.godot/imported/maritime_square_juliett_32.png-6023bbc461507f10f0c44cc477f2a652.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_juliett_32.png" +dest_files=["res://.godot/imported/maritime_square_juliett_32.png-6023bbc461507f10f0c44cc477f2a652.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_kilo_32.png b/tools/configurator/res/flags/maritime_square_kilo_32.png new file mode 100644 index 00000000..b0759e37 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_kilo_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_kilo_32.png.import b/tools/configurator/res/flags/maritime_square_kilo_32.png.import new file mode 100644 index 00000000..47a323b1 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_kilo_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy4qarctaxtcg" +path="res://.godot/imported/maritime_square_kilo_32.png-89304fcde6f17e1bcf71efb6be90749f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_kilo_32.png" +dest_files=["res://.godot/imported/maritime_square_kilo_32.png-89304fcde6f17e1bcf71efb6be90749f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_lima_32.png b/tools/configurator/res/flags/maritime_square_lima_32.png new file mode 100644 index 00000000..c6e17491 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_lima_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_lima_32.png.import b/tools/configurator/res/flags/maritime_square_lima_32.png.import new file mode 100644 index 00000000..67f1a162 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_lima_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bd8rwv4i2h8mt" +path="res://.godot/imported/maritime_square_lima_32.png-7eff7a6bd06427bb2893de455cfb801c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_lima_32.png" +dest_files=["res://.godot/imported/maritime_square_lima_32.png-7eff7a6bd06427bb2893de455cfb801c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_mike_32.png b/tools/configurator/res/flags/maritime_square_mike_32.png new file mode 100644 index 00000000..c751c698 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_mike_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_mike_32.png.import b/tools/configurator/res/flags/maritime_square_mike_32.png.import new file mode 100644 index 00000000..7a660d17 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_mike_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc2ihrckil5d3" +path="res://.godot/imported/maritime_square_mike_32.png-591956860b9ba0419face32b06319e5a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_mike_32.png" +dest_files=["res://.godot/imported/maritime_square_mike_32.png-591956860b9ba0419face32b06319e5a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_nato_eight_32.png b/tools/configurator/res/flags/maritime_square_nato_eight_32.png new file mode 100644 index 00000000..6a18c24d Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_nato_eight_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_nato_eight_32.png.import b/tools/configurator/res/flags/maritime_square_nato_eight_32.png.import new file mode 100644 index 00000000..3afe9b14 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_nato_eight_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuxcqbajflo7x" +path="res://.godot/imported/maritime_square_nato_eight_32.png-a56d0aad7fbf5f36ef94ace5e99135eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_nato_eight_32.png" +dest_files=["res://.godot/imported/maritime_square_nato_eight_32.png-a56d0aad7fbf5f36ef94ace5e99135eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_nato_five_32.png b/tools/configurator/res/flags/maritime_square_nato_five_32.png new file mode 100644 index 00000000..0b207659 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_nato_five_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_nato_five_32.png.import b/tools/configurator/res/flags/maritime_square_nato_five_32.png.import new file mode 100644 index 00000000..1bf8d3f0 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_nato_five_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgb2v5mgpye1p" +path="res://.godot/imported/maritime_square_nato_five_32.png-0d8b44c46df8ea6df98bea75994fcb73.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_nato_five_32.png" +dest_files=["res://.godot/imported/maritime_square_nato_five_32.png-0d8b44c46df8ea6df98bea75994fcb73.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_nato_four_32.png b/tools/configurator/res/flags/maritime_square_nato_four_32.png new file mode 100644 index 00000000..3316fa8e Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_nato_four_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_nato_four_32.png.import b/tools/configurator/res/flags/maritime_square_nato_four_32.png.import new file mode 100644 index 00000000..3c22888d --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_nato_four_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cufq2uh6bytas" +path="res://.godot/imported/maritime_square_nato_four_32.png-58d099d2c181832a7c79fd23a8d870d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_nato_four_32.png" +dest_files=["res://.godot/imported/maritime_square_nato_four_32.png-58d099d2c181832a7c79fd23a8d870d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_nato_nine_32.png b/tools/configurator/res/flags/maritime_square_nato_nine_32.png new file mode 100644 index 00000000..3c5a840b Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_nato_nine_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_nato_nine_32.png.import b/tools/configurator/res/flags/maritime_square_nato_nine_32.png.import new file mode 100644 index 00000000..307ec343 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_nato_nine_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwd1qef8m0q7f" +path="res://.godot/imported/maritime_square_nato_nine_32.png-512f35078d24ca9948f134175d5b15b3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_nato_nine_32.png" +dest_files=["res://.godot/imported/maritime_square_nato_nine_32.png-512f35078d24ca9948f134175d5b15b3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_nato_one_32.png b/tools/configurator/res/flags/maritime_square_nato_one_32.png new file mode 100644 index 00000000..5fc6f372 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_nato_one_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_nato_one_32.png.import b/tools/configurator/res/flags/maritime_square_nato_one_32.png.import new file mode 100644 index 00000000..37725045 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_nato_one_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3m6sfsvf4hjm" +path="res://.godot/imported/maritime_square_nato_one_32.png-1749fbd521cc8b20d80087b51591fd24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_nato_one_32.png" +dest_files=["res://.godot/imported/maritime_square_nato_one_32.png-1749fbd521cc8b20d80087b51591fd24.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_nato_seven_32.png b/tools/configurator/res/flags/maritime_square_nato_seven_32.png new file mode 100644 index 00000000..c04b9a83 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_nato_seven_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_nato_seven_32.png.import b/tools/configurator/res/flags/maritime_square_nato_seven_32.png.import new file mode 100644 index 00000000..18756fc1 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_nato_seven_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdd8gn0yhpe2t" +path="res://.godot/imported/maritime_square_nato_seven_32.png-568c9d5192c1477c0b20f5a84b59e4e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_nato_seven_32.png" +dest_files=["res://.godot/imported/maritime_square_nato_seven_32.png-568c9d5192c1477c0b20f5a84b59e4e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_nato_six_32.png b/tools/configurator/res/flags/maritime_square_nato_six_32.png new file mode 100644 index 00000000..85868c22 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_nato_six_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_nato_six_32.png.import b/tools/configurator/res/flags/maritime_square_nato_six_32.png.import new file mode 100644 index 00000000..dd171ae0 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_nato_six_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ujrqlxyrffrk" +path="res://.godot/imported/maritime_square_nato_six_32.png-3db1e9a87cf26a705fe3bdd4bb4130d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_nato_six_32.png" +dest_files=["res://.godot/imported/maritime_square_nato_six_32.png-3db1e9a87cf26a705fe3bdd4bb4130d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_nato_three_32.png b/tools/configurator/res/flags/maritime_square_nato_three_32.png new file mode 100644 index 00000000..2bb57c6d Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_nato_three_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_nato_three_32.png.import b/tools/configurator/res/flags/maritime_square_nato_three_32.png.import new file mode 100644 index 00000000..b468b654 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_nato_three_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vbauxb1wk3h7" +path="res://.godot/imported/maritime_square_nato_three_32.png-9c1f870be90ae1b96be1e20d0341ce27.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_nato_three_32.png" +dest_files=["res://.godot/imported/maritime_square_nato_three_32.png-9c1f870be90ae1b96be1e20d0341ce27.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_nato_two_32.png b/tools/configurator/res/flags/maritime_square_nato_two_32.png new file mode 100644 index 00000000..11f38e12 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_nato_two_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_nato_two_32.png.import b/tools/configurator/res/flags/maritime_square_nato_two_32.png.import new file mode 100644 index 00000000..5a7aac4a --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_nato_two_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b736vat6v3xef" +path="res://.godot/imported/maritime_square_nato_two_32.png-6cc9124e2e2e9efff40823de1824c28b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_nato_two_32.png" +dest_files=["res://.godot/imported/maritime_square_nato_two_32.png-6cc9124e2e2e9efff40823de1824c28b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_nato_zero_32.png b/tools/configurator/res/flags/maritime_square_nato_zero_32.png new file mode 100644 index 00000000..a56f1697 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_nato_zero_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_nato_zero_32.png.import b/tools/configurator/res/flags/maritime_square_nato_zero_32.png.import new file mode 100644 index 00000000..d1be09a9 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_nato_zero_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7p31ax5vjcip" +path="res://.godot/imported/maritime_square_nato_zero_32.png-d75a12df28e85abc0b05ec88083f5936.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_nato_zero_32.png" +dest_files=["res://.godot/imported/maritime_square_nato_zero_32.png-d75a12df28e85abc0b05ec88083f5936.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_november_32.png b/tools/configurator/res/flags/maritime_square_november_32.png new file mode 100644 index 00000000..7a93085c Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_november_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_november_32.png.import b/tools/configurator/res/flags/maritime_square_november_32.png.import new file mode 100644 index 00000000..3b2fa59c --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_november_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvba7imkpqa4s" +path="res://.godot/imported/maritime_square_november_32.png-838c4a8c64fa4333c2ca6c1b9549d74b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_november_32.png" +dest_files=["res://.godot/imported/maritime_square_november_32.png-838c4a8c64fa4333c2ca6c1b9549d74b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_oscar_32.png b/tools/configurator/res/flags/maritime_square_oscar_32.png new file mode 100644 index 00000000..00c6e9e4 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_oscar_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_oscar_32.png.import b/tools/configurator/res/flags/maritime_square_oscar_32.png.import new file mode 100644 index 00000000..be0a900f --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_oscar_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ce02w1702cgd2" +path="res://.godot/imported/maritime_square_oscar_32.png-631180b41de40fe9e19e45f2b0c9c013.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_oscar_32.png" +dest_files=["res://.godot/imported/maritime_square_oscar_32.png-631180b41de40fe9e19e45f2b0c9c013.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_papa_32.png b/tools/configurator/res/flags/maritime_square_papa_32.png new file mode 100644 index 00000000..2c5ea13f Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_papa_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_papa_32.png.import b/tools/configurator/res/flags/maritime_square_papa_32.png.import new file mode 100644 index 00000000..144a4eb5 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_papa_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chgywlpyvmnq2" +path="res://.godot/imported/maritime_square_papa_32.png-42f3de22abd7a1c28e8769bf20e3626a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_papa_32.png" +dest_files=["res://.godot/imported/maritime_square_papa_32.png-42f3de22abd7a1c28e8769bf20e3626a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_quebec_32.png b/tools/configurator/res/flags/maritime_square_quebec_32.png new file mode 100644 index 00000000..f360f950 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_quebec_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_quebec_32.png.import b/tools/configurator/res/flags/maritime_square_quebec_32.png.import new file mode 100644 index 00000000..295029ad --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_quebec_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxli0s2psxof5" +path="res://.godot/imported/maritime_square_quebec_32.png-a0ba7cc8ddfe3146df33f043a62d7c93.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_quebec_32.png" +dest_files=["res://.godot/imported/maritime_square_quebec_32.png-a0ba7cc8ddfe3146df33f043a62d7c93.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_romeo_32.png b/tools/configurator/res/flags/maritime_square_romeo_32.png new file mode 100644 index 00000000..2f4e4838 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_romeo_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_romeo_32.png.import b/tools/configurator/res/flags/maritime_square_romeo_32.png.import new file mode 100644 index 00000000..d60e2946 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_romeo_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5xbc5y732gh" +path="res://.godot/imported/maritime_square_romeo_32.png-ff7dc8a595e23ab912abf35b91b04e38.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_romeo_32.png" +dest_files=["res://.godot/imported/maritime_square_romeo_32.png-ff7dc8a595e23ab912abf35b91b04e38.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_sierra_32.png b/tools/configurator/res/flags/maritime_square_sierra_32.png new file mode 100644 index 00000000..1032b335 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_sierra_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_sierra_32.png.import b/tools/configurator/res/flags/maritime_square_sierra_32.png.import new file mode 100644 index 00000000..2be915d4 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_sierra_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhjov6chdfy2u" +path="res://.godot/imported/maritime_square_sierra_32.png-6be9636ae87dd3eb29bba82948c55a86.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_sierra_32.png" +dest_files=["res://.godot/imported/maritime_square_sierra_32.png-6be9636ae87dd3eb29bba82948c55a86.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_tango_32.png b/tools/configurator/res/flags/maritime_square_tango_32.png new file mode 100644 index 00000000..41d2ec3a Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_tango_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_tango_32.png.import b/tools/configurator/res/flags/maritime_square_tango_32.png.import new file mode 100644 index 00000000..c49cb9bc --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_tango_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo23kjeagslpd" +path="res://.godot/imported/maritime_square_tango_32.png-f06ce7c30a11ac206ae0e105d418c762.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_tango_32.png" +dest_files=["res://.godot/imported/maritime_square_tango_32.png-f06ce7c30a11ac206ae0e105d418c762.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_uniform_32.png b/tools/configurator/res/flags/maritime_square_uniform_32.png new file mode 100644 index 00000000..e2e05f51 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_uniform_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_uniform_32.png.import b/tools/configurator/res/flags/maritime_square_uniform_32.png.import new file mode 100644 index 00000000..700eed94 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_uniform_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lroe8xf8s6yb" +path="res://.godot/imported/maritime_square_uniform_32.png-99af2d093d6ad5df35727bc81b6e82b3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_uniform_32.png" +dest_files=["res://.godot/imported/maritime_square_uniform_32.png-99af2d093d6ad5df35727bc81b6e82b3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_victor_32.png b/tools/configurator/res/flags/maritime_square_victor_32.png new file mode 100644 index 00000000..f1df7a85 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_victor_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_victor_32.png.import b/tools/configurator/res/flags/maritime_square_victor_32.png.import new file mode 100644 index 00000000..166c8048 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_victor_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tfrgms4qfjik" +path="res://.godot/imported/maritime_square_victor_32.png-6404f27d44a62a48f1667ff3aa314284.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_victor_32.png" +dest_files=["res://.godot/imported/maritime_square_victor_32.png-6404f27d44a62a48f1667ff3aa314284.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_whiskey_32.png b/tools/configurator/res/flags/maritime_square_whiskey_32.png new file mode 100644 index 00000000..f6533022 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_whiskey_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_whiskey_32.png.import b/tools/configurator/res/flags/maritime_square_whiskey_32.png.import new file mode 100644 index 00000000..fde3ccde --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_whiskey_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxk122svmbvf0" +path="res://.godot/imported/maritime_square_whiskey_32.png-7b55feef05cc200dc30c37cb3cf04699.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_whiskey_32.png" +dest_files=["res://.godot/imported/maritime_square_whiskey_32.png-7b55feef05cc200dc30c37cb3cf04699.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_xray_32.png b/tools/configurator/res/flags/maritime_square_xray_32.png new file mode 100644 index 00000000..b8f4a8d6 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_xray_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_xray_32.png.import b/tools/configurator/res/flags/maritime_square_xray_32.png.import new file mode 100644 index 00000000..7af8b382 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_xray_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6383ay3dc4f4" +path="res://.godot/imported/maritime_square_xray_32.png-52642a3fc8a3411e4b0cfd3b5980b63f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_xray_32.png" +dest_files=["res://.godot/imported/maritime_square_xray_32.png-52642a3fc8a3411e4b0cfd3b5980b63f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_yankee_32.png b/tools/configurator/res/flags/maritime_square_yankee_32.png new file mode 100644 index 00000000..d188d3d3 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_yankee_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_yankee_32.png.import b/tools/configurator/res/flags/maritime_square_yankee_32.png.import new file mode 100644 index 00000000..aa9705b0 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_yankee_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b85c2ao6i6ir3" +path="res://.godot/imported/maritime_square_yankee_32.png-4a705eccacb915f184c1d9195cb990ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_yankee_32.png" +dest_files=["res://.godot/imported/maritime_square_yankee_32.png-4a705eccacb915f184c1d9195cb990ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/maritime_square_zulu_32.png b/tools/configurator/res/flags/maritime_square_zulu_32.png new file mode 100644 index 00000000..30fa21c8 Binary files /dev/null and b/tools/configurator/res/flags/maritime_square_zulu_32.png differ diff --git a/tools/configurator/res/flags/maritime_square_zulu_32.png.import b/tools/configurator/res/flags/maritime_square_zulu_32.png.import new file mode 100644 index 00000000..8e891499 --- /dev/null +++ b/tools/configurator/res/flags/maritime_square_zulu_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f22duih5phpe" +path="res://.godot/imported/maritime_square_zulu_32.png-73fc3704ba032834f6ea6be71be27b45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/maritime_square_zulu_32.png" +dest_files=["res://.godot/imported/maritime_square_zulu_32.png-73fc3704ba032834f6ea6be71be27b45.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/melanesia_fiji_32.png b/tools/configurator/res/flags/melanesia_fiji_32.png new file mode 100644 index 00000000..b3dab36b Binary files /dev/null and b/tools/configurator/res/flags/melanesia_fiji_32.png differ diff --git a/tools/configurator/res/flags/melanesia_fiji_32.png.import b/tools/configurator/res/flags/melanesia_fiji_32.png.import new file mode 100644 index 00000000..80c6e6c1 --- /dev/null +++ b/tools/configurator/res/flags/melanesia_fiji_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bba5vaku37pj6" +path="res://.godot/imported/melanesia_fiji_32.png-18a5cd7029df7ce3f4331df8d7973e79.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/melanesia_fiji_32.png" +dest_files=["res://.godot/imported/melanesia_fiji_32.png-18a5cd7029df7ce3f4331df8d7973e79.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/melanesia_new_caledonia_32.png b/tools/configurator/res/flags/melanesia_new_caledonia_32.png new file mode 100644 index 00000000..90a7135b Binary files /dev/null and b/tools/configurator/res/flags/melanesia_new_caledonia_32.png differ diff --git a/tools/configurator/res/flags/melanesia_new_caledonia_32.png.import b/tools/configurator/res/flags/melanesia_new_caledonia_32.png.import new file mode 100644 index 00000000..2f5313f6 --- /dev/null +++ b/tools/configurator/res/flags/melanesia_new_caledonia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ryaoqytnwhw4" +path="res://.godot/imported/melanesia_new_caledonia_32.png-47a1fc15a55be52c3342b9953101eef7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/melanesia_new_caledonia_32.png" +dest_files=["res://.godot/imported/melanesia_new_caledonia_32.png-47a1fc15a55be52c3342b9953101eef7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/melanesia_papua_new_guinea_32.png b/tools/configurator/res/flags/melanesia_papua_new_guinea_32.png new file mode 100644 index 00000000..ab8c4d60 Binary files /dev/null and b/tools/configurator/res/flags/melanesia_papua_new_guinea_32.png differ diff --git a/tools/configurator/res/flags/melanesia_papua_new_guinea_32.png.import b/tools/configurator/res/flags/melanesia_papua_new_guinea_32.png.import new file mode 100644 index 00000000..39c5dc44 --- /dev/null +++ b/tools/configurator/res/flags/melanesia_papua_new_guinea_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diccwwd0k6k6j" +path="res://.godot/imported/melanesia_papua_new_guinea_32.png-6d78f386a794bfaef3fb65b9087f01d3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/melanesia_papua_new_guinea_32.png" +dest_files=["res://.godot/imported/melanesia_papua_new_guinea_32.png-6d78f386a794bfaef3fb65b9087f01d3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_32.png b/tools/configurator/res/flags/melanesia_solomon_islands_32.png new file mode 100644 index 00000000..b129e9df Binary files /dev/null and b/tools/configurator/res/flags/melanesia_solomon_islands_32.png differ diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_32.png.import b/tools/configurator/res/flags/melanesia_solomon_islands_32.png.import new file mode 100644 index 00000000..1e390d52 --- /dev/null +++ b/tools/configurator/res/flags/melanesia_solomon_islands_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvry8oqekxdqg" +path="res://.godot/imported/melanesia_solomon_islands_32.png-4f81540399f8ec61c613119cdf02622d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/melanesia_solomon_islands_32.png" +dest_files=["res://.godot/imported/melanesia_solomon_islands_32.png-4f81540399f8ec61c613119cdf02622d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_capital_32.png b/tools/configurator/res/flags/melanesia_solomon_islands_capital_32.png new file mode 100644 index 00000000..73dbb8cc Binary files /dev/null and b/tools/configurator/res/flags/melanesia_solomon_islands_capital_32.png differ diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_capital_32.png.import b/tools/configurator/res/flags/melanesia_solomon_islands_capital_32.png.import new file mode 100644 index 00000000..70e6b7ab --- /dev/null +++ b/tools/configurator/res/flags/melanesia_solomon_islands_capital_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://eifd1as52nuv" +path="res://.godot/imported/melanesia_solomon_islands_capital_32.png-55f200229b6abc755fc4725185ec118f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/melanesia_solomon_islands_capital_32.png" +dest_files=["res://.godot/imported/melanesia_solomon_islands_capital_32.png-55f200229b6abc755fc4725185ec118f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_central_province_32.png b/tools/configurator/res/flags/melanesia_solomon_islands_central_province_32.png new file mode 100644 index 00000000..85c521a7 Binary files /dev/null and b/tools/configurator/res/flags/melanesia_solomon_islands_central_province_32.png differ diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_central_province_32.png.import b/tools/configurator/res/flags/melanesia_solomon_islands_central_province_32.png.import new file mode 100644 index 00000000..05aac5e1 --- /dev/null +++ b/tools/configurator/res/flags/melanesia_solomon_islands_central_province_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsf078qu1w57" +path="res://.godot/imported/melanesia_solomon_islands_central_province_32.png-20828d40deab0e5b419104bfac9fed9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/melanesia_solomon_islands_central_province_32.png" +dest_files=["res://.godot/imported/melanesia_solomon_islands_central_province_32.png-20828d40deab0e5b419104bfac9fed9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_choiseul_32.png b/tools/configurator/res/flags/melanesia_solomon_islands_choiseul_32.png new file mode 100644 index 00000000..6cd948c3 Binary files /dev/null and b/tools/configurator/res/flags/melanesia_solomon_islands_choiseul_32.png differ diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_choiseul_32.png.import b/tools/configurator/res/flags/melanesia_solomon_islands_choiseul_32.png.import new file mode 100644 index 00000000..4c7f48c3 --- /dev/null +++ b/tools/configurator/res/flags/melanesia_solomon_islands_choiseul_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddlgun20sk0e0" +path="res://.godot/imported/melanesia_solomon_islands_choiseul_32.png-7230c408c09c7d571f5fbed73f1d17d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/melanesia_solomon_islands_choiseul_32.png" +dest_files=["res://.godot/imported/melanesia_solomon_islands_choiseul_32.png-7230c408c09c7d571f5fbed73f1d17d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_guadalcanal_32.png b/tools/configurator/res/flags/melanesia_solomon_islands_guadalcanal_32.png new file mode 100644 index 00000000..8703f988 Binary files /dev/null and b/tools/configurator/res/flags/melanesia_solomon_islands_guadalcanal_32.png differ diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_guadalcanal_32.png.import b/tools/configurator/res/flags/melanesia_solomon_islands_guadalcanal_32.png.import new file mode 100644 index 00000000..ac16920f --- /dev/null +++ b/tools/configurator/res/flags/melanesia_solomon_islands_guadalcanal_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bas865p3dvmij" +path="res://.godot/imported/melanesia_solomon_islands_guadalcanal_32.png-b041b52df2308efba7d1521e784fd6d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/melanesia_solomon_islands_guadalcanal_32.png" +dest_files=["res://.godot/imported/melanesia_solomon_islands_guadalcanal_32.png-b041b52df2308efba7d1521e784fd6d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_isabel_32.png b/tools/configurator/res/flags/melanesia_solomon_islands_isabel_32.png new file mode 100644 index 00000000..126537cc Binary files /dev/null and b/tools/configurator/res/flags/melanesia_solomon_islands_isabel_32.png differ diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_isabel_32.png.import b/tools/configurator/res/flags/melanesia_solomon_islands_isabel_32.png.import new file mode 100644 index 00000000..79746dfd --- /dev/null +++ b/tools/configurator/res/flags/melanesia_solomon_islands_isabel_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nn136pekante" +path="res://.godot/imported/melanesia_solomon_islands_isabel_32.png-67b91b9b8bf59385af869ff7fe9c64f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/melanesia_solomon_islands_isabel_32.png" +dest_files=["res://.godot/imported/melanesia_solomon_islands_isabel_32.png-67b91b9b8bf59385af869ff7fe9c64f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_makira_ulawa_32.png b/tools/configurator/res/flags/melanesia_solomon_islands_makira_ulawa_32.png new file mode 100644 index 00000000..ed7fa363 Binary files /dev/null and b/tools/configurator/res/flags/melanesia_solomon_islands_makira_ulawa_32.png differ diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_makira_ulawa_32.png.import b/tools/configurator/res/flags/melanesia_solomon_islands_makira_ulawa_32.png.import new file mode 100644 index 00000000..ca6dcafc --- /dev/null +++ b/tools/configurator/res/flags/melanesia_solomon_islands_makira_ulawa_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkn5j8t6ocr6i" +path="res://.godot/imported/melanesia_solomon_islands_makira_ulawa_32.png-0dc80486fded458e14dda70cba7faab6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/melanesia_solomon_islands_makira_ulawa_32.png" +dest_files=["res://.godot/imported/melanesia_solomon_islands_makira_ulawa_32.png-0dc80486fded458e14dda70cba7faab6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_malaita_32.png b/tools/configurator/res/flags/melanesia_solomon_islands_malaita_32.png new file mode 100644 index 00000000..15162023 Binary files /dev/null and b/tools/configurator/res/flags/melanesia_solomon_islands_malaita_32.png differ diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_malaita_32.png.import b/tools/configurator/res/flags/melanesia_solomon_islands_malaita_32.png.import new file mode 100644 index 00000000..f6f7cb3b --- /dev/null +++ b/tools/configurator/res/flags/melanesia_solomon_islands_malaita_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byy004c7b0g6x" +path="res://.godot/imported/melanesia_solomon_islands_malaita_32.png-11c6c3df3bf54d84604050333a8c30e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/melanesia_solomon_islands_malaita_32.png" +dest_files=["res://.godot/imported/melanesia_solomon_islands_malaita_32.png-11c6c3df3bf54d84604050333a8c30e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_rennel_and_bellona_32.png b/tools/configurator/res/flags/melanesia_solomon_islands_rennel_and_bellona_32.png new file mode 100644 index 00000000..c7546f67 Binary files /dev/null and b/tools/configurator/res/flags/melanesia_solomon_islands_rennel_and_bellona_32.png differ diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_rennel_and_bellona_32.png.import b/tools/configurator/res/flags/melanesia_solomon_islands_rennel_and_bellona_32.png.import new file mode 100644 index 00000000..1f5f9b22 --- /dev/null +++ b/tools/configurator/res/flags/melanesia_solomon_islands_rennel_and_bellona_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://die5iopk7kyq6" +path="res://.godot/imported/melanesia_solomon_islands_rennel_and_bellona_32.png-f7f5f488af11dba6ab5088c51fd17f64.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/melanesia_solomon_islands_rennel_and_bellona_32.png" +dest_files=["res://.godot/imported/melanesia_solomon_islands_rennel_and_bellona_32.png-f7f5f488af11dba6ab5088c51fd17f64.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_temotu_32.png b/tools/configurator/res/flags/melanesia_solomon_islands_temotu_32.png new file mode 100644 index 00000000..61574671 Binary files /dev/null and b/tools/configurator/res/flags/melanesia_solomon_islands_temotu_32.png differ diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_temotu_32.png.import b/tools/configurator/res/flags/melanesia_solomon_islands_temotu_32.png.import new file mode 100644 index 00000000..16bd8e02 --- /dev/null +++ b/tools/configurator/res/flags/melanesia_solomon_islands_temotu_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gdcc4eeiyggo" +path="res://.godot/imported/melanesia_solomon_islands_temotu_32.png-96f6a28bf4188480beacf392b9309b76.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/melanesia_solomon_islands_temotu_32.png" +dest_files=["res://.godot/imported/melanesia_solomon_islands_temotu_32.png-96f6a28bf4188480beacf392b9309b76.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_western_province_32.png b/tools/configurator/res/flags/melanesia_solomon_islands_western_province_32.png new file mode 100644 index 00000000..8e0b13c1 Binary files /dev/null and b/tools/configurator/res/flags/melanesia_solomon_islands_western_province_32.png differ diff --git a/tools/configurator/res/flags/melanesia_solomon_islands_western_province_32.png.import b/tools/configurator/res/flags/melanesia_solomon_islands_western_province_32.png.import new file mode 100644 index 00000000..b0d59010 --- /dev/null +++ b/tools/configurator/res/flags/melanesia_solomon_islands_western_province_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://x4geqanxf4h5" +path="res://.godot/imported/melanesia_solomon_islands_western_province_32.png-84b2582af9bddc775b9eed7297e69b3f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/melanesia_solomon_islands_western_province_32.png" +dest_files=["res://.godot/imported/melanesia_solomon_islands_western_province_32.png-84b2582af9bddc775b9eed7297e69b3f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/melanesia_vanuatu_32.png b/tools/configurator/res/flags/melanesia_vanuatu_32.png new file mode 100644 index 00000000..2dd2822b Binary files /dev/null and b/tools/configurator/res/flags/melanesia_vanuatu_32.png differ diff --git a/tools/configurator/res/flags/melanesia_vanuatu_32.png.import b/tools/configurator/res/flags/melanesia_vanuatu_32.png.import new file mode 100644 index 00000000..8f140b99 --- /dev/null +++ b/tools/configurator/res/flags/melanesia_vanuatu_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://douohdg6crt0e" +path="res://.godot/imported/melanesia_vanuatu_32.png-e1d0cad83d77bd35006e244f2afc40eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/melanesia_vanuatu_32.png" +dest_files=["res://.godot/imported/melanesia_vanuatu_32.png-e1d0cad83d77bd35006e244f2afc40eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/micronesia_32.png b/tools/configurator/res/flags/micronesia_32.png new file mode 100644 index 00000000..f91104cc Binary files /dev/null and b/tools/configurator/res/flags/micronesia_32.png differ diff --git a/tools/configurator/res/flags/micronesia_32.png.import b/tools/configurator/res/flags/micronesia_32.png.import new file mode 100644 index 00000000..451bc348 --- /dev/null +++ b/tools/configurator/res/flags/micronesia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blwr2qxj6jo5p" +path="res://.godot/imported/micronesia_32.png-dba674e15654ab0dc1da8cf66c1f2e30.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/micronesia_32.png" +dest_files=["res://.godot/imported/micronesia_32.png-dba674e15654ab0dc1da8cf66c1f2e30.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/micronesia_chuuk_32.png b/tools/configurator/res/flags/micronesia_chuuk_32.png new file mode 100644 index 00000000..2812dcbd Binary files /dev/null and b/tools/configurator/res/flags/micronesia_chuuk_32.png differ diff --git a/tools/configurator/res/flags/micronesia_chuuk_32.png.import b/tools/configurator/res/flags/micronesia_chuuk_32.png.import new file mode 100644 index 00000000..2d108d89 --- /dev/null +++ b/tools/configurator/res/flags/micronesia_chuuk_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgt61yg8shw2v" +path="res://.godot/imported/micronesia_chuuk_32.png-c6e4e864a7fc2933dc508b388ff0ac3a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/micronesia_chuuk_32.png" +dest_files=["res://.godot/imported/micronesia_chuuk_32.png-c6e4e864a7fc2933dc508b388ff0ac3a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/micronesia_kiribati_32.png b/tools/configurator/res/flags/micronesia_kiribati_32.png new file mode 100644 index 00000000..e04ae157 Binary files /dev/null and b/tools/configurator/res/flags/micronesia_kiribati_32.png differ diff --git a/tools/configurator/res/flags/micronesia_kiribati_32.png.import b/tools/configurator/res/flags/micronesia_kiribati_32.png.import new file mode 100644 index 00000000..9ca9e5e1 --- /dev/null +++ b/tools/configurator/res/flags/micronesia_kiribati_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwi5xjq7f7l6r" +path="res://.godot/imported/micronesia_kiribati_32.png-570276c8ad47447f7487781f0b34cf80.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/micronesia_kiribati_32.png" +dest_files=["res://.godot/imported/micronesia_kiribati_32.png-570276c8ad47447f7487781f0b34cf80.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/micronesia_kosrae_32.png b/tools/configurator/res/flags/micronesia_kosrae_32.png new file mode 100644 index 00000000..179b1ef2 Binary files /dev/null and b/tools/configurator/res/flags/micronesia_kosrae_32.png differ diff --git a/tools/configurator/res/flags/micronesia_kosrae_32.png.import b/tools/configurator/res/flags/micronesia_kosrae_32.png.import new file mode 100644 index 00000000..cf728fb0 --- /dev/null +++ b/tools/configurator/res/flags/micronesia_kosrae_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlx4whsjeuysy" +path="res://.godot/imported/micronesia_kosrae_32.png-0a7b078aadbfb8c758a22518a6587341.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/micronesia_kosrae_32.png" +dest_files=["res://.godot/imported/micronesia_kosrae_32.png-0a7b078aadbfb8c758a22518a6587341.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/micronesia_marshall_islands_32.png b/tools/configurator/res/flags/micronesia_marshall_islands_32.png new file mode 100644 index 00000000..4ee78073 Binary files /dev/null and b/tools/configurator/res/flags/micronesia_marshall_islands_32.png differ diff --git a/tools/configurator/res/flags/micronesia_marshall_islands_32.png.import b/tools/configurator/res/flags/micronesia_marshall_islands_32.png.import new file mode 100644 index 00000000..887b0ce6 --- /dev/null +++ b/tools/configurator/res/flags/micronesia_marshall_islands_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iwwidyaq4odu" +path="res://.godot/imported/micronesia_marshall_islands_32.png-f21e1a15521c2e40aa659ae80e4d0c8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/micronesia_marshall_islands_32.png" +dest_files=["res://.godot/imported/micronesia_marshall_islands_32.png-f21e1a15521c2e40aa659ae80e4d0c8e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/micronesia_nauru_32.png b/tools/configurator/res/flags/micronesia_nauru_32.png new file mode 100644 index 00000000..05b5d58b Binary files /dev/null and b/tools/configurator/res/flags/micronesia_nauru_32.png differ diff --git a/tools/configurator/res/flags/micronesia_nauru_32.png.import b/tools/configurator/res/flags/micronesia_nauru_32.png.import new file mode 100644 index 00000000..051fbfc9 --- /dev/null +++ b/tools/configurator/res/flags/micronesia_nauru_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byyfkb087jax5" +path="res://.godot/imported/micronesia_nauru_32.png-95abfd25f29b3cae497ee0bdf88ad542.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/micronesia_nauru_32.png" +dest_files=["res://.godot/imported/micronesia_nauru_32.png-95abfd25f29b3cae497ee0bdf88ad542.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/micronesia_palau_32.png b/tools/configurator/res/flags/micronesia_palau_32.png new file mode 100644 index 00000000..20fe87f1 Binary files /dev/null and b/tools/configurator/res/flags/micronesia_palau_32.png differ diff --git a/tools/configurator/res/flags/micronesia_palau_32.png.import b/tools/configurator/res/flags/micronesia_palau_32.png.import new file mode 100644 index 00000000..855a453f --- /dev/null +++ b/tools/configurator/res/flags/micronesia_palau_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chpk8r2qf4exj" +path="res://.godot/imported/micronesia_palau_32.png-063f9886d0a8218762c5b933134be3b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/micronesia_palau_32.png" +dest_files=["res://.godot/imported/micronesia_palau_32.png-063f9886d0a8218762c5b933134be3b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/micronesia_pohnpei_32.png b/tools/configurator/res/flags/micronesia_pohnpei_32.png new file mode 100644 index 00000000..f1fa0c3c Binary files /dev/null and b/tools/configurator/res/flags/micronesia_pohnpei_32.png differ diff --git a/tools/configurator/res/flags/micronesia_pohnpei_32.png.import b/tools/configurator/res/flags/micronesia_pohnpei_32.png.import new file mode 100644 index 00000000..0395384a --- /dev/null +++ b/tools/configurator/res/flags/micronesia_pohnpei_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du4o5a4q3eut5" +path="res://.godot/imported/micronesia_pohnpei_32.png-b175ba37b71335ad711506e6972d132a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/micronesia_pohnpei_32.png" +dest_files=["res://.godot/imported/micronesia_pohnpei_32.png-b175ba37b71335ad711506e6972d132a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/micronesia_yap_32.png b/tools/configurator/res/flags/micronesia_yap_32.png new file mode 100644 index 00000000..101a2313 Binary files /dev/null and b/tools/configurator/res/flags/micronesia_yap_32.png differ diff --git a/tools/configurator/res/flags/micronesia_yap_32.png.import b/tools/configurator/res/flags/micronesia_yap_32.png.import new file mode 100644 index 00000000..a4e98025 --- /dev/null +++ b/tools/configurator/res/flags/micronesia_yap_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oq78gywf2rn0" +path="res://.godot/imported/micronesia_yap_32.png-0eca937e8648dacaa4721859453824c1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/micronesia_yap_32.png" +dest_files=["res://.godot/imported/micronesia_yap_32.png-0eca937e8648dacaa4721859453824c1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/moldova_32.png b/tools/configurator/res/flags/moldova_32.png new file mode 100644 index 00000000..8d7b17ec Binary files /dev/null and b/tools/configurator/res/flags/moldova_32.png differ diff --git a/tools/configurator/res/flags/moldova_32.png.import b/tools/configurator/res/flags/moldova_32.png.import new file mode 100644 index 00000000..b558af73 --- /dev/null +++ b/tools/configurator/res/flags/moldova_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qwlsnxwgunds" +path="res://.godot/imported/moldova_32.png-0342d7e67bc21ab09d9b4711bf47d39a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/moldova_32.png" +dest_files=["res://.godot/imported/moldova_32.png-0342d7e67bc21ab09d9b4711bf47d39a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/monaco_32.png b/tools/configurator/res/flags/monaco_32.png new file mode 100644 index 00000000..79cdf3d2 Binary files /dev/null and b/tools/configurator/res/flags/monaco_32.png differ diff --git a/tools/configurator/res/flags/monaco_32.png.import b/tools/configurator/res/flags/monaco_32.png.import new file mode 100644 index 00000000..a64baaa0 --- /dev/null +++ b/tools/configurator/res/flags/monaco_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blshqtv76aito" +path="res://.godot/imported/monaco_32.png-d3365a5e613811257536398417aa90af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/monaco_32.png" +dest_files=["res://.godot/imported/monaco_32.png-d3365a5e613811257536398417aa90af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/mongolia_32.png b/tools/configurator/res/flags/mongolia_32.png new file mode 100644 index 00000000..17da4fc9 Binary files /dev/null and b/tools/configurator/res/flags/mongolia_32.png differ diff --git a/tools/configurator/res/flags/mongolia_32.png.import b/tools/configurator/res/flags/mongolia_32.png.import new file mode 100644 index 00000000..a9f24930 --- /dev/null +++ b/tools/configurator/res/flags/mongolia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv1mh8h35qpak" +path="res://.godot/imported/mongolia_32.png-a6c0b2160f40ada93035dacd8167c5d3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/mongolia_32.png" +dest_files=["res://.godot/imported/mongolia_32.png-a6c0b2160f40ada93035dacd8167c5d3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/montenegro_32.png b/tools/configurator/res/flags/montenegro_32.png new file mode 100644 index 00000000..0d419a01 Binary files /dev/null and b/tools/configurator/res/flags/montenegro_32.png differ diff --git a/tools/configurator/res/flags/montenegro_32.png.import b/tools/configurator/res/flags/montenegro_32.png.import new file mode 100644 index 00000000..54ceab11 --- /dev/null +++ b/tools/configurator/res/flags/montenegro_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6fcelfy1oh8c" +path="res://.godot/imported/montenegro_32.png-113116eaaaf4ad92c281b5a9707d4961.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/montenegro_32.png" +dest_files=["res://.godot/imported/montenegro_32.png-113116eaaaf4ad92c281b5a9707d4961.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/myanmar_32.png b/tools/configurator/res/flags/myanmar_32.png new file mode 100644 index 00000000..0807ac83 Binary files /dev/null and b/tools/configurator/res/flags/myanmar_32.png differ diff --git a/tools/configurator/res/flags/myanmar_32.png.import b/tools/configurator/res/flags/myanmar_32.png.import new file mode 100644 index 00000000..45ea2eb4 --- /dev/null +++ b/tools/configurator/res/flags/myanmar_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqynigp7a5iyx" +path="res://.godot/imported/myanmar_32.png-c26cc6f0d96bfb07889112672456759b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/myanmar_32.png" +dest_files=["res://.godot/imported/myanmar_32.png-c26cc6f0d96bfb07889112672456759b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/nepal_32.png b/tools/configurator/res/flags/nepal_32.png new file mode 100644 index 00000000..9c285c33 Binary files /dev/null and b/tools/configurator/res/flags/nepal_32.png differ diff --git a/tools/configurator/res/flags/nepal_32.png.import b/tools/configurator/res/flags/nepal_32.png.import new file mode 100644 index 00000000..f1a7256d --- /dev/null +++ b/tools/configurator/res/flags/nepal_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3ddcn107nqa7" +path="res://.godot/imported/nepal_32.png-d2bcbc07869caff3396bd97128cdf68f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/nepal_32.png" +dest_files=["res://.godot/imported/nepal_32.png-d2bcbc07869caff3396bd97128cdf68f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/netherlands_32.png b/tools/configurator/res/flags/netherlands_32.png new file mode 100644 index 00000000..57f203bb Binary files /dev/null and b/tools/configurator/res/flags/netherlands_32.png differ diff --git a/tools/configurator/res/flags/netherlands_32.png.import b/tools/configurator/res/flags/netherlands_32.png.import new file mode 100644 index 00000000..c5c7df7b --- /dev/null +++ b/tools/configurator/res/flags/netherlands_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc45iolmbxywl" +path="res://.godot/imported/netherlands_32.png-5480a1a9fca3e41f974c637b3368a1f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/netherlands_32.png" +dest_files=["res://.godot/imported/netherlands_32.png-5480a1a9fca3e41f974c637b3368a1f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/netherlands_bonaire_32.png b/tools/configurator/res/flags/netherlands_bonaire_32.png new file mode 100644 index 00000000..6f17edd0 Binary files /dev/null and b/tools/configurator/res/flags/netherlands_bonaire_32.png differ diff --git a/tools/configurator/res/flags/netherlands_bonaire_32.png.import b/tools/configurator/res/flags/netherlands_bonaire_32.png.import new file mode 100644 index 00000000..0cc22314 --- /dev/null +++ b/tools/configurator/res/flags/netherlands_bonaire_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg5bkjox4w2p6" +path="res://.godot/imported/netherlands_bonaire_32.png-d7a7345f89498a92980354f73934806e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/netherlands_bonaire_32.png" +dest_files=["res://.godot/imported/netherlands_bonaire_32.png-d7a7345f89498a92980354f73934806e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/netherlands_drenthe_32.png b/tools/configurator/res/flags/netherlands_drenthe_32.png new file mode 100644 index 00000000..6100a96c Binary files /dev/null and b/tools/configurator/res/flags/netherlands_drenthe_32.png differ diff --git a/tools/configurator/res/flags/netherlands_drenthe_32.png.import b/tools/configurator/res/flags/netherlands_drenthe_32.png.import new file mode 100644 index 00000000..698e05aa --- /dev/null +++ b/tools/configurator/res/flags/netherlands_drenthe_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2nn31pxw2ycf" +path="res://.godot/imported/netherlands_drenthe_32.png-e81b6c391d0f0db722ee812da5c5b93d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/netherlands_drenthe_32.png" +dest_files=["res://.godot/imported/netherlands_drenthe_32.png-e81b6c391d0f0db722ee812da5c5b93d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/netherlands_flevoland_32.png b/tools/configurator/res/flags/netherlands_flevoland_32.png new file mode 100644 index 00000000..e3954caf Binary files /dev/null and b/tools/configurator/res/flags/netherlands_flevoland_32.png differ diff --git a/tools/configurator/res/flags/netherlands_flevoland_32.png.import b/tools/configurator/res/flags/netherlands_flevoland_32.png.import new file mode 100644 index 00000000..0ebe167d --- /dev/null +++ b/tools/configurator/res/flags/netherlands_flevoland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b33ikgpcg57m0" +path="res://.godot/imported/netherlands_flevoland_32.png-3df9dfa5725dbad0aeccea192ba8fd5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/netherlands_flevoland_32.png" +dest_files=["res://.godot/imported/netherlands_flevoland_32.png-3df9dfa5725dbad0aeccea192ba8fd5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/netherlands_frisian_32.png b/tools/configurator/res/flags/netherlands_frisian_32.png new file mode 100644 index 00000000..f86f4354 Binary files /dev/null and b/tools/configurator/res/flags/netherlands_frisian_32.png differ diff --git a/tools/configurator/res/flags/netherlands_frisian_32.png.import b/tools/configurator/res/flags/netherlands_frisian_32.png.import new file mode 100644 index 00000000..91ee1a37 --- /dev/null +++ b/tools/configurator/res/flags/netherlands_frisian_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgwyqn2e4o0qu" +path="res://.godot/imported/netherlands_frisian_32.png-255f3923b3934765413dd977579966de.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/netherlands_frisian_32.png" +dest_files=["res://.godot/imported/netherlands_frisian_32.png-255f3923b3934765413dd977579966de.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/netherlands_gelderland_32.png b/tools/configurator/res/flags/netherlands_gelderland_32.png new file mode 100644 index 00000000..f501b94a Binary files /dev/null and b/tools/configurator/res/flags/netherlands_gelderland_32.png differ diff --git a/tools/configurator/res/flags/netherlands_gelderland_32.png.import b/tools/configurator/res/flags/netherlands_gelderland_32.png.import new file mode 100644 index 00000000..f95fd922 --- /dev/null +++ b/tools/configurator/res/flags/netherlands_gelderland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4guouo38abtr" +path="res://.godot/imported/netherlands_gelderland_32.png-f48059c2eda3b316a6e6c1ee38254679.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/netherlands_gelderland_32.png" +dest_files=["res://.godot/imported/netherlands_gelderland_32.png-f48059c2eda3b316a6e6c1ee38254679.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/netherlands_groningen_32.png b/tools/configurator/res/flags/netherlands_groningen_32.png new file mode 100644 index 00000000..d5c8b084 Binary files /dev/null and b/tools/configurator/res/flags/netherlands_groningen_32.png differ diff --git a/tools/configurator/res/flags/netherlands_groningen_32.png.import b/tools/configurator/res/flags/netherlands_groningen_32.png.import new file mode 100644 index 00000000..a02eddd7 --- /dev/null +++ b/tools/configurator/res/flags/netherlands_groningen_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjefo3fespd3i" +path="res://.godot/imported/netherlands_groningen_32.png-2cc3a6604f7c117261bf51beae2d7e62.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/netherlands_groningen_32.png" +dest_files=["res://.godot/imported/netherlands_groningen_32.png-2cc3a6604f7c117261bf51beae2d7e62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/netherlands_limburg_32.png b/tools/configurator/res/flags/netherlands_limburg_32.png new file mode 100644 index 00000000..33107030 Binary files /dev/null and b/tools/configurator/res/flags/netherlands_limburg_32.png differ diff --git a/tools/configurator/res/flags/netherlands_limburg_32.png.import b/tools/configurator/res/flags/netherlands_limburg_32.png.import new file mode 100644 index 00000000..87232566 --- /dev/null +++ b/tools/configurator/res/flags/netherlands_limburg_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpygsmki8crh" +path="res://.godot/imported/netherlands_limburg_32.png-a0dc2266996e15025038489ecf4a0ebb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/netherlands_limburg_32.png" +dest_files=["res://.godot/imported/netherlands_limburg_32.png-a0dc2266996e15025038489ecf4a0ebb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/netherlands_north_brabant_32.png b/tools/configurator/res/flags/netherlands_north_brabant_32.png new file mode 100644 index 00000000..fdb57a0e Binary files /dev/null and b/tools/configurator/res/flags/netherlands_north_brabant_32.png differ diff --git a/tools/configurator/res/flags/netherlands_north_brabant_32.png.import b/tools/configurator/res/flags/netherlands_north_brabant_32.png.import new file mode 100644 index 00000000..afa3cd91 --- /dev/null +++ b/tools/configurator/res/flags/netherlands_north_brabant_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7hx6kqslx7st" +path="res://.godot/imported/netherlands_north_brabant_32.png-c31ac9c0add5244d045d0d6c0f1c072b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/netherlands_north_brabant_32.png" +dest_files=["res://.godot/imported/netherlands_north_brabant_32.png-c31ac9c0add5244d045d0d6c0f1c072b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/netherlands_north_holland_32.png b/tools/configurator/res/flags/netherlands_north_holland_32.png new file mode 100644 index 00000000..8eb8a2cc Binary files /dev/null and b/tools/configurator/res/flags/netherlands_north_holland_32.png differ diff --git a/tools/configurator/res/flags/netherlands_north_holland_32.png.import b/tools/configurator/res/flags/netherlands_north_holland_32.png.import new file mode 100644 index 00000000..9967db7f --- /dev/null +++ b/tools/configurator/res/flags/netherlands_north_holland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d7s03yglrk2r" +path="res://.godot/imported/netherlands_north_holland_32.png-41835d5acac83dbe56a4efd890a91193.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/netherlands_north_holland_32.png" +dest_files=["res://.godot/imported/netherlands_north_holland_32.png-41835d5acac83dbe56a4efd890a91193.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/netherlands_overijssel_32.png b/tools/configurator/res/flags/netherlands_overijssel_32.png new file mode 100644 index 00000000..f0422ea6 Binary files /dev/null and b/tools/configurator/res/flags/netherlands_overijssel_32.png differ diff --git a/tools/configurator/res/flags/netherlands_overijssel_32.png.import b/tools/configurator/res/flags/netherlands_overijssel_32.png.import new file mode 100644 index 00000000..78b80eb7 --- /dev/null +++ b/tools/configurator/res/flags/netherlands_overijssel_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk881obpuwm1a" +path="res://.godot/imported/netherlands_overijssel_32.png-1efd1588699e58eb030571c19ddc5bf3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/netherlands_overijssel_32.png" +dest_files=["res://.godot/imported/netherlands_overijssel_32.png-1efd1588699e58eb030571c19ddc5bf3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/netherlands_saba_32.png b/tools/configurator/res/flags/netherlands_saba_32.png new file mode 100644 index 00000000..bd425eb6 Binary files /dev/null and b/tools/configurator/res/flags/netherlands_saba_32.png differ diff --git a/tools/configurator/res/flags/netherlands_saba_32.png.import b/tools/configurator/res/flags/netherlands_saba_32.png.import new file mode 100644 index 00000000..0d10bf67 --- /dev/null +++ b/tools/configurator/res/flags/netherlands_saba_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck5fjlpedb8em" +path="res://.godot/imported/netherlands_saba_32.png-aa0d55126d4e7693bba2a1c128aa2d53.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/netherlands_saba_32.png" +dest_files=["res://.godot/imported/netherlands_saba_32.png-aa0d55126d4e7693bba2a1c128aa2d53.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/netherlands_sint_eustatius_32.png b/tools/configurator/res/flags/netherlands_sint_eustatius_32.png new file mode 100644 index 00000000..18cb81ed Binary files /dev/null and b/tools/configurator/res/flags/netherlands_sint_eustatius_32.png differ diff --git a/tools/configurator/res/flags/netherlands_sint_eustatius_32.png.import b/tools/configurator/res/flags/netherlands_sint_eustatius_32.png.import new file mode 100644 index 00000000..aa8bc2eb --- /dev/null +++ b/tools/configurator/res/flags/netherlands_sint_eustatius_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://begx7g7a7mwqh" +path="res://.godot/imported/netherlands_sint_eustatius_32.png-3c0be0d4282a348e71d524b47b0e8388.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/netherlands_sint_eustatius_32.png" +dest_files=["res://.godot/imported/netherlands_sint_eustatius_32.png-3c0be0d4282a348e71d524b47b0e8388.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/netherlands_utrecht_32.png b/tools/configurator/res/flags/netherlands_utrecht_32.png new file mode 100644 index 00000000..6fcc3a9f Binary files /dev/null and b/tools/configurator/res/flags/netherlands_utrecht_32.png differ diff --git a/tools/configurator/res/flags/netherlands_utrecht_32.png.import b/tools/configurator/res/flags/netherlands_utrecht_32.png.import new file mode 100644 index 00000000..5098d8c2 --- /dev/null +++ b/tools/configurator/res/flags/netherlands_utrecht_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dttgft8ncym2h" +path="res://.godot/imported/netherlands_utrecht_32.png-9d7790d2c925f9d77e131eec4c3407f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/netherlands_utrecht_32.png" +dest_files=["res://.godot/imported/netherlands_utrecht_32.png-9d7790d2c925f9d77e131eec4c3407f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/netherlands_zeeland_32.png b/tools/configurator/res/flags/netherlands_zeeland_32.png new file mode 100644 index 00000000..eb9e191b Binary files /dev/null and b/tools/configurator/res/flags/netherlands_zeeland_32.png differ diff --git a/tools/configurator/res/flags/netherlands_zeeland_32.png.import b/tools/configurator/res/flags/netherlands_zeeland_32.png.import new file mode 100644 index 00000000..3a76a1bd --- /dev/null +++ b/tools/configurator/res/flags/netherlands_zeeland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdxnq7f8qc2td" +path="res://.godot/imported/netherlands_zeeland_32.png-81a00030fea75288734c2200fd8d1b02.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/netherlands_zeeland_32.png" +dest_files=["res://.godot/imported/netherlands_zeeland_32.png-81a00030fea75288734c2200fd8d1b02.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/netherlands_zuid_holland_32.png b/tools/configurator/res/flags/netherlands_zuid_holland_32.png new file mode 100644 index 00000000..421183cb Binary files /dev/null and b/tools/configurator/res/flags/netherlands_zuid_holland_32.png differ diff --git a/tools/configurator/res/flags/netherlands_zuid_holland_32.png.import b/tools/configurator/res/flags/netherlands_zuid_holland_32.png.import new file mode 100644 index 00000000..cdc92bd8 --- /dev/null +++ b/tools/configurator/res/flags/netherlands_zuid_holland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7fh5pil2sxft" +path="res://.godot/imported/netherlands_zuid_holland_32.png-117cbebd7ed366a6d49ef8cbc07f92ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/netherlands_zuid_holland_32.png" +dest_files=["res://.godot/imported/netherlands_zuid_holland_32.png-117cbebd7ed366a6d49ef8cbc07f92ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/new_zealand_32.png b/tools/configurator/res/flags/new_zealand_32.png new file mode 100644 index 00000000..dc8c2abf Binary files /dev/null and b/tools/configurator/res/flags/new_zealand_32.png differ diff --git a/tools/configurator/res/flags/new_zealand_32.png.import b/tools/configurator/res/flags/new_zealand_32.png.import new file mode 100644 index 00000000..cf50fb4d --- /dev/null +++ b/tools/configurator/res/flags/new_zealand_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drrqtkq5mtrbv" +path="res://.godot/imported/new_zealand_32.png-36c86cbcdf452d44f7323f5d97a8d954.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/new_zealand_32.png" +dest_files=["res://.godot/imported/new_zealand_32.png-36c86cbcdf452d44f7323f5d97a8d954.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/new_zealand_cook_islands_32.png b/tools/configurator/res/flags/new_zealand_cook_islands_32.png new file mode 100644 index 00000000..98dfadaa Binary files /dev/null and b/tools/configurator/res/flags/new_zealand_cook_islands_32.png differ diff --git a/tools/configurator/res/flags/new_zealand_cook_islands_32.png.import b/tools/configurator/res/flags/new_zealand_cook_islands_32.png.import new file mode 100644 index 00000000..7463a48c --- /dev/null +++ b/tools/configurator/res/flags/new_zealand_cook_islands_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmgiem652eg3f" +path="res://.godot/imported/new_zealand_cook_islands_32.png-8b3ae5c9d446ba5c73c871938a7c53da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/new_zealand_cook_islands_32.png" +dest_files=["res://.godot/imported/new_zealand_cook_islands_32.png-8b3ae5c9d446ba5c73c871938a7c53da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/new_zealand_nelson_32.png b/tools/configurator/res/flags/new_zealand_nelson_32.png new file mode 100644 index 00000000..a60b539f Binary files /dev/null and b/tools/configurator/res/flags/new_zealand_nelson_32.png differ diff --git a/tools/configurator/res/flags/new_zealand_nelson_32.png.import b/tools/configurator/res/flags/new_zealand_nelson_32.png.import new file mode 100644 index 00000000..cd900acf --- /dev/null +++ b/tools/configurator/res/flags/new_zealand_nelson_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvma7ho1dnlc2" +path="res://.godot/imported/new_zealand_nelson_32.png-603630321996d5e3630113d148cc9c3c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/new_zealand_nelson_32.png" +dest_files=["res://.godot/imported/new_zealand_nelson_32.png-603630321996d5e3630113d148cc9c3c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/new_zealand_niue_32.png b/tools/configurator/res/flags/new_zealand_niue_32.png new file mode 100644 index 00000000..c25e127a Binary files /dev/null and b/tools/configurator/res/flags/new_zealand_niue_32.png differ diff --git a/tools/configurator/res/flags/new_zealand_niue_32.png.import b/tools/configurator/res/flags/new_zealand_niue_32.png.import new file mode 100644 index 00000000..604018e1 --- /dev/null +++ b/tools/configurator/res/flags/new_zealand_niue_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by0o5lmddbrqv" +path="res://.godot/imported/new_zealand_niue_32.png-e527f9a192009154853b0b6af7d0c04c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/new_zealand_niue_32.png" +dest_files=["res://.godot/imported/new_zealand_niue_32.png-e527f9a192009154853b0b6af7d0c04c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/new_zealand_otago_32.png b/tools/configurator/res/flags/new_zealand_otago_32.png new file mode 100644 index 00000000..6b488c48 Binary files /dev/null and b/tools/configurator/res/flags/new_zealand_otago_32.png differ diff --git a/tools/configurator/res/flags/new_zealand_otago_32.png.import b/tools/configurator/res/flags/new_zealand_otago_32.png.import new file mode 100644 index 00000000..838a1b96 --- /dev/null +++ b/tools/configurator/res/flags/new_zealand_otago_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxu4duo7rjnk7" +path="res://.godot/imported/new_zealand_otago_32.png-9935b3e57b11d6fcea682e3064dbeb80.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/new_zealand_otago_32.png" +dest_files=["res://.godot/imported/new_zealand_otago_32.png-9935b3e57b11d6fcea682e3064dbeb80.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/new_zealand_tokelau_32.png b/tools/configurator/res/flags/new_zealand_tokelau_32.png new file mode 100644 index 00000000..dee5e470 Binary files /dev/null and b/tools/configurator/res/flags/new_zealand_tokelau_32.png differ diff --git a/tools/configurator/res/flags/new_zealand_tokelau_32.png.import b/tools/configurator/res/flags/new_zealand_tokelau_32.png.import new file mode 100644 index 00000000..905c391f --- /dev/null +++ b/tools/configurator/res/flags/new_zealand_tokelau_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtgw4uyryd2ap" +path="res://.godot/imported/new_zealand_tokelau_32.png-721582369dd3fe55c250bfc1d16c7bb5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/new_zealand_tokelau_32.png" +dest_files=["res://.godot/imported/new_zealand_tokelau_32.png-721582369dd3fe55c250bfc1d16c7bb5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/north_korea_32.png b/tools/configurator/res/flags/north_korea_32.png new file mode 100644 index 00000000..5fa2f42a Binary files /dev/null and b/tools/configurator/res/flags/north_korea_32.png differ diff --git a/tools/configurator/res/flags/north_korea_32.png.import b/tools/configurator/res/flags/north_korea_32.png.import new file mode 100644 index 00000000..d2e010ce --- /dev/null +++ b/tools/configurator/res/flags/north_korea_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctuov6cgvda48" +path="res://.godot/imported/north_korea_32.png-bfa6a03ac2d1f04aca1720822ac40774.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/north_korea_32.png" +dest_files=["res://.godot/imported/north_korea_32.png-bfa6a03ac2d1f04aca1720822ac40774.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/north_macedonia_32.png b/tools/configurator/res/flags/north_macedonia_32.png new file mode 100644 index 00000000..1d02fee6 Binary files /dev/null and b/tools/configurator/res/flags/north_macedonia_32.png differ diff --git a/tools/configurator/res/flags/north_macedonia_32.png.import b/tools/configurator/res/flags/north_macedonia_32.png.import new file mode 100644 index 00000000..e604c2f3 --- /dev/null +++ b/tools/configurator/res/flags/north_macedonia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8y6twx568n6d" +path="res://.godot/imported/north_macedonia_32.png-c6f1664c70a9d031012ecfc4abeb8114.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/north_macedonia_32.png" +dest_files=["res://.godot/imported/north_macedonia_32.png-c6f1664c70a9d031012ecfc4abeb8114.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/norway_32.png b/tools/configurator/res/flags/norway_32.png new file mode 100644 index 00000000..88a6b801 Binary files /dev/null and b/tools/configurator/res/flags/norway_32.png differ diff --git a/tools/configurator/res/flags/norway_32.png.import b/tools/configurator/res/flags/norway_32.png.import new file mode 100644 index 00000000..1553453e --- /dev/null +++ b/tools/configurator/res/flags/norway_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfmgnestdcpl8" +path="res://.godot/imported/norway_32.png-1e4118e9a001fe6be0f53dfa310c6973.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/norway_32.png" +dest_files=["res://.godot/imported/norway_32.png-1e4118e9a001fe6be0f53dfa310c6973.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/oman_32.png b/tools/configurator/res/flags/oman_32.png new file mode 100644 index 00000000..3286abf9 Binary files /dev/null and b/tools/configurator/res/flags/oman_32.png differ diff --git a/tools/configurator/res/flags/oman_32.png.import b/tools/configurator/res/flags/oman_32.png.import new file mode 100644 index 00000000..eb7dbb19 --- /dev/null +++ b/tools/configurator/res/flags/oman_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bddfuraddhe5" +path="res://.godot/imported/oman_32.png-f9276f14907736b0ebe69b9ea6c5fdc0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/oman_32.png" +dest_files=["res://.godot/imported/oman_32.png-f9276f14907736b0ebe69b9ea6c5fdc0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/pakistan_32.png b/tools/configurator/res/flags/pakistan_32.png new file mode 100644 index 00000000..5a6ba053 Binary files /dev/null and b/tools/configurator/res/flags/pakistan_32.png differ diff --git a/tools/configurator/res/flags/pakistan_32.png.import b/tools/configurator/res/flags/pakistan_32.png.import new file mode 100644 index 00000000..253c7ae7 --- /dev/null +++ b/tools/configurator/res/flags/pakistan_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ib8goh8yrahx" +path="res://.godot/imported/pakistan_32.png-aa7c31bc9f544fd4bcdbcbc359152b27.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/pakistan_32.png" +dest_files=["res://.godot/imported/pakistan_32.png-aa7c31bc9f544fd4bcdbcbc359152b27.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/philippines_32.png b/tools/configurator/res/flags/philippines_32.png new file mode 100644 index 00000000..25877ba9 Binary files /dev/null and b/tools/configurator/res/flags/philippines_32.png differ diff --git a/tools/configurator/res/flags/philippines_32.png.import b/tools/configurator/res/flags/philippines_32.png.import new file mode 100644 index 00000000..4d77897e --- /dev/null +++ b/tools/configurator/res/flags/philippines_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcm0vvx4mjowr" +path="res://.godot/imported/philippines_32.png-d91e49c76bf5b5645abb20be4ea4cb68.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/philippines_32.png" +dest_files=["res://.godot/imported/philippines_32.png-d91e49c76bf5b5645abb20be4ea4cb68.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/poland_32.png b/tools/configurator/res/flags/poland_32.png new file mode 100644 index 00000000..558d71bd Binary files /dev/null and b/tools/configurator/res/flags/poland_32.png differ diff --git a/tools/configurator/res/flags/poland_32.png.import b/tools/configurator/res/flags/poland_32.png.import new file mode 100644 index 00000000..4749b4c3 --- /dev/null +++ b/tools/configurator/res/flags/poland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drl0cwg5dcwhm" +path="res://.godot/imported/poland_32.png-e38afa9dfbd7e1854bdda2118a9a310e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/poland_32.png" +dest_files=["res://.godot/imported/poland_32.png-e38afa9dfbd7e1854bdda2118a9a310e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/portugal_32.png b/tools/configurator/res/flags/portugal_32.png new file mode 100644 index 00000000..8104d595 Binary files /dev/null and b/tools/configurator/res/flags/portugal_32.png differ diff --git a/tools/configurator/res/flags/portugal_32.png.import b/tools/configurator/res/flags/portugal_32.png.import new file mode 100644 index 00000000..0e170f38 --- /dev/null +++ b/tools/configurator/res/flags/portugal_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmr5xes1yrwod" +path="res://.godot/imported/portugal_32.png-6f2cd1745f65a0e7b7e0fd19881bce1e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/portugal_32.png" +dest_files=["res://.godot/imported/portugal_32.png-6f2cd1745f65a0e7b7e0fd19881bce1e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/qatar_32.png b/tools/configurator/res/flags/qatar_32.png new file mode 100644 index 00000000..d2059075 Binary files /dev/null and b/tools/configurator/res/flags/qatar_32.png differ diff --git a/tools/configurator/res/flags/qatar_32.png.import b/tools/configurator/res/flags/qatar_32.png.import new file mode 100644 index 00000000..2fdeec05 --- /dev/null +++ b/tools/configurator/res/flags/qatar_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baebkfdwh57ue" +path="res://.godot/imported/qatar_32.png-29f215c9b584e48eeebceea5deb820f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/qatar_32.png" +dest_files=["res://.godot/imported/qatar_32.png-29f215c9b584e48eeebceea5deb820f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/romania_32.png b/tools/configurator/res/flags/romania_32.png new file mode 100644 index 00000000..a4d0b5b4 Binary files /dev/null and b/tools/configurator/res/flags/romania_32.png differ diff --git a/tools/configurator/res/flags/romania_32.png.import b/tools/configurator/res/flags/romania_32.png.import new file mode 100644 index 00000000..9fe91f59 --- /dev/null +++ b/tools/configurator/res/flags/romania_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cml4qsx77tp2x" +path="res://.godot/imported/romania_32.png-6984e8875ef9f925ed367f820b9f0844.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/romania_32.png" +dest_files=["res://.godot/imported/romania_32.png-6984e8875ef9f925ed367f820b9f0844.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/samoa_32.png b/tools/configurator/res/flags/samoa_32.png new file mode 100644 index 00000000..df0a08f8 Binary files /dev/null and b/tools/configurator/res/flags/samoa_32.png differ diff --git a/tools/configurator/res/flags/samoa_32.png.import b/tools/configurator/res/flags/samoa_32.png.import new file mode 100644 index 00000000..a61c63dd --- /dev/null +++ b/tools/configurator/res/flags/samoa_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3nj01itjhert" +path="res://.godot/imported/samoa_32.png-66985a8ba6aa3beaea054c89172566d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/samoa_32.png" +dest_files=["res://.godot/imported/samoa_32.png-66985a8ba6aa3beaea054c89172566d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/san_marino_32.png b/tools/configurator/res/flags/san_marino_32.png new file mode 100644 index 00000000..adf112b8 Binary files /dev/null and b/tools/configurator/res/flags/san_marino_32.png differ diff --git a/tools/configurator/res/flags/san_marino_32.png.import b/tools/configurator/res/flags/san_marino_32.png.import new file mode 100644 index 00000000..25a9146c --- /dev/null +++ b/tools/configurator/res/flags/san_marino_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfr4igdnqh1kb" +path="res://.godot/imported/san_marino_32.png-8c7280d1b976e427b0aef60a7203eae2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/san_marino_32.png" +dest_files=["res://.godot/imported/san_marino_32.png-8c7280d1b976e427b0aef60a7203eae2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/saudi_arabia_32.png b/tools/configurator/res/flags/saudi_arabia_32.png new file mode 100644 index 00000000..6b5de639 Binary files /dev/null and b/tools/configurator/res/flags/saudi_arabia_32.png differ diff --git a/tools/configurator/res/flags/saudi_arabia_32.png.import b/tools/configurator/res/flags/saudi_arabia_32.png.import new file mode 100644 index 00000000..60ad8ecb --- /dev/null +++ b/tools/configurator/res/flags/saudi_arabia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7jcx7kcuj4cd" +path="res://.godot/imported/saudi_arabia_32.png-db510511c709068072a657804cb09b2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/saudi_arabia_32.png" +dest_files=["res://.godot/imported/saudi_arabia_32.png-db510511c709068072a657804cb09b2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/serbia_32.png b/tools/configurator/res/flags/serbia_32.png new file mode 100644 index 00000000..355ed7d7 Binary files /dev/null and b/tools/configurator/res/flags/serbia_32.png differ diff --git a/tools/configurator/res/flags/serbia_32.png.import b/tools/configurator/res/flags/serbia_32.png.import new file mode 100644 index 00000000..116b141a --- /dev/null +++ b/tools/configurator/res/flags/serbia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceii872ossr0w" +path="res://.godot/imported/serbia_32.png-c5d4b695928c471e5abc46321ece2586.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/serbia_32.png" +dest_files=["res://.godot/imported/serbia_32.png-c5d4b695928c471e5abc46321ece2586.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/serbia_kosovo_32.png b/tools/configurator/res/flags/serbia_kosovo_32.png new file mode 100644 index 00000000..32a4a310 Binary files /dev/null and b/tools/configurator/res/flags/serbia_kosovo_32.png differ diff --git a/tools/configurator/res/flags/serbia_kosovo_32.png.import b/tools/configurator/res/flags/serbia_kosovo_32.png.import new file mode 100644 index 00000000..984e39c0 --- /dev/null +++ b/tools/configurator/res/flags/serbia_kosovo_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coi262opwsx5t" +path="res://.godot/imported/serbia_kosovo_32.png-94d45a7155224b79eb6a998561b7f0a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/serbia_kosovo_32.png" +dest_files=["res://.godot/imported/serbia_kosovo_32.png-94d45a7155224b79eb6a998561b7f0a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/singapore_32.png b/tools/configurator/res/flags/singapore_32.png new file mode 100644 index 00000000..ad9a84b9 Binary files /dev/null and b/tools/configurator/res/flags/singapore_32.png differ diff --git a/tools/configurator/res/flags/singapore_32.png.import b/tools/configurator/res/flags/singapore_32.png.import new file mode 100644 index 00000000..c46ff553 --- /dev/null +++ b/tools/configurator/res/flags/singapore_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byr21erjlv7xs" +path="res://.godot/imported/singapore_32.png-07b440f413548376d6b105926a36cb1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/singapore_32.png" +dest_files=["res://.godot/imported/singapore_32.png-07b440f413548376d6b105926a36cb1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/slovakia_32.png b/tools/configurator/res/flags/slovakia_32.png new file mode 100644 index 00000000..58d795e9 Binary files /dev/null and b/tools/configurator/res/flags/slovakia_32.png differ diff --git a/tools/configurator/res/flags/slovakia_32.png.import b/tools/configurator/res/flags/slovakia_32.png.import new file mode 100644 index 00000000..04726982 --- /dev/null +++ b/tools/configurator/res/flags/slovakia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crbxr7wyewguk" +path="res://.godot/imported/slovakia_32.png-9d23038e35bae59494ad71d984a0b6d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/slovakia_32.png" +dest_files=["res://.godot/imported/slovakia_32.png-9d23038e35bae59494ad71d984a0b6d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/slovenia_32.png b/tools/configurator/res/flags/slovenia_32.png new file mode 100644 index 00000000..6539aea1 Binary files /dev/null and b/tools/configurator/res/flags/slovenia_32.png differ diff --git a/tools/configurator/res/flags/slovenia_32.png.import b/tools/configurator/res/flags/slovenia_32.png.import new file mode 100644 index 00000000..68a3122c --- /dev/null +++ b/tools/configurator/res/flags/slovenia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cy32g8lidxds2" +path="res://.godot/imported/slovenia_32.png-c97f1398d26c0164bd16b97f741162ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/slovenia_32.png" +dest_files=["res://.godot/imported/slovenia_32.png-c97f1398d26c0164bd16b97f741162ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/south_korea_32.png b/tools/configurator/res/flags/south_korea_32.png new file mode 100644 index 00000000..15d099f0 Binary files /dev/null and b/tools/configurator/res/flags/south_korea_32.png differ diff --git a/tools/configurator/res/flags/south_korea_32.png.import b/tools/configurator/res/flags/south_korea_32.png.import new file mode 100644 index 00000000..1d2e860b --- /dev/null +++ b/tools/configurator/res/flags/south_korea_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0tp63dq5r0v2" +path="res://.godot/imported/south_korea_32.png-9be8325e730241d5d3d9181dc212540f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/south_korea_32.png" +dest_files=["res://.godot/imported/south_korea_32.png-9be8325e730241d5d3d9181dc212540f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_32.png b/tools/configurator/res/flags/spain_32.png new file mode 100644 index 00000000..e3e488b7 Binary files /dev/null and b/tools/configurator/res/flags/spain_32.png differ diff --git a/tools/configurator/res/flags/spain_32.png.import b/tools/configurator/res/flags/spain_32.png.import new file mode 100644 index 00000000..bff0b4b3 --- /dev/null +++ b/tools/configurator/res/flags/spain_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfqmlo3wjcgdk" +path="res://.godot/imported/spain_32.png-97acdf0bc01847529be8ccaa1e2c265d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_32.png" +dest_files=["res://.godot/imported/spain_32.png-97acdf0bc01847529be8ccaa1e2c265d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_andalusia_32.png b/tools/configurator/res/flags/spain_andalusia_32.png new file mode 100644 index 00000000..d99b3ea8 Binary files /dev/null and b/tools/configurator/res/flags/spain_andalusia_32.png differ diff --git a/tools/configurator/res/flags/spain_andalusia_32.png.import b/tools/configurator/res/flags/spain_andalusia_32.png.import new file mode 100644 index 00000000..d1fd684d --- /dev/null +++ b/tools/configurator/res/flags/spain_andalusia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://y5vtqoceaxep" +path="res://.godot/imported/spain_andalusia_32.png-acd161b48e3e247e4b52c1d7826b4669.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_andalusia_32.png" +dest_files=["res://.godot/imported/spain_andalusia_32.png-acd161b48e3e247e4b52c1d7826b4669.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_aragon_32.png b/tools/configurator/res/flags/spain_aragon_32.png new file mode 100644 index 00000000..600054d3 Binary files /dev/null and b/tools/configurator/res/flags/spain_aragon_32.png differ diff --git a/tools/configurator/res/flags/spain_aragon_32.png.import b/tools/configurator/res/flags/spain_aragon_32.png.import new file mode 100644 index 00000000..0a6e0dfe --- /dev/null +++ b/tools/configurator/res/flags/spain_aragon_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uehdpe7sddgm" +path="res://.godot/imported/spain_aragon_32.png-472226d65f59eceb40d252bbad6bb6a1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_aragon_32.png" +dest_files=["res://.godot/imported/spain_aragon_32.png-472226d65f59eceb40d252bbad6bb6a1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_asturias_32.png b/tools/configurator/res/flags/spain_asturias_32.png new file mode 100644 index 00000000..c193c7fd Binary files /dev/null and b/tools/configurator/res/flags/spain_asturias_32.png differ diff --git a/tools/configurator/res/flags/spain_asturias_32.png.import b/tools/configurator/res/flags/spain_asturias_32.png.import new file mode 100644 index 00000000..32570511 --- /dev/null +++ b/tools/configurator/res/flags/spain_asturias_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjg34s80flbye" +path="res://.godot/imported/spain_asturias_32.png-5aa229b44b21f932d13b6d7ddb95f06b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_asturias_32.png" +dest_files=["res://.godot/imported/spain_asturias_32.png-5aa229b44b21f932d13b6d7ddb95f06b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_balearic_islands_32.png b/tools/configurator/res/flags/spain_balearic_islands_32.png new file mode 100644 index 00000000..d9982dec Binary files /dev/null and b/tools/configurator/res/flags/spain_balearic_islands_32.png differ diff --git a/tools/configurator/res/flags/spain_balearic_islands_32.png.import b/tools/configurator/res/flags/spain_balearic_islands_32.png.import new file mode 100644 index 00000000..348fb9a4 --- /dev/null +++ b/tools/configurator/res/flags/spain_balearic_islands_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmr2lbvg0s11w" +path="res://.godot/imported/spain_balearic_islands_32.png-75de1355eb2f449d249235e229a3e51b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_balearic_islands_32.png" +dest_files=["res://.godot/imported/spain_balearic_islands_32.png-75de1355eb2f449d249235e229a3e51b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_basque_32.png b/tools/configurator/res/flags/spain_basque_32.png new file mode 100644 index 00000000..35fa6181 Binary files /dev/null and b/tools/configurator/res/flags/spain_basque_32.png differ diff --git a/tools/configurator/res/flags/spain_basque_32.png.import b/tools/configurator/res/flags/spain_basque_32.png.import new file mode 100644 index 00000000..1267913e --- /dev/null +++ b/tools/configurator/res/flags/spain_basque_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1mscxg4k8nki" +path="res://.godot/imported/spain_basque_32.png-13635d95e5abae0dc4f6fddef43b27ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_basque_32.png" +dest_files=["res://.godot/imported/spain_basque_32.png-13635d95e5abae0dc4f6fddef43b27ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_canary_islands_32.png b/tools/configurator/res/flags/spain_canary_islands_32.png new file mode 100644 index 00000000..55956047 Binary files /dev/null and b/tools/configurator/res/flags/spain_canary_islands_32.png differ diff --git a/tools/configurator/res/flags/spain_canary_islands_32.png.import b/tools/configurator/res/flags/spain_canary_islands_32.png.import new file mode 100644 index 00000000..a25e2497 --- /dev/null +++ b/tools/configurator/res/flags/spain_canary_islands_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bm1vdw8csdwye" +path="res://.godot/imported/spain_canary_islands_32.png-748f447b05776de50b9d6d8db92349c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_canary_islands_32.png" +dest_files=["res://.godot/imported/spain_canary_islands_32.png-748f447b05776de50b9d6d8db92349c0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_cantabria_32.png b/tools/configurator/res/flags/spain_cantabria_32.png new file mode 100644 index 00000000..41be1c10 Binary files /dev/null and b/tools/configurator/res/flags/spain_cantabria_32.png differ diff --git a/tools/configurator/res/flags/spain_cantabria_32.png.import b/tools/configurator/res/flags/spain_cantabria_32.png.import new file mode 100644 index 00000000..84b88160 --- /dev/null +++ b/tools/configurator/res/flags/spain_cantabria_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg5up11ynh3ts" +path="res://.godot/imported/spain_cantabria_32.png-c456341d1b3a536d7218fde384550f6f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_cantabria_32.png" +dest_files=["res://.godot/imported/spain_cantabria_32.png-c456341d1b3a536d7218fde384550f6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_castile_lamancha_32.png b/tools/configurator/res/flags/spain_castile_lamancha_32.png new file mode 100644 index 00000000..b93bf2d4 Binary files /dev/null and b/tools/configurator/res/flags/spain_castile_lamancha_32.png differ diff --git a/tools/configurator/res/flags/spain_castile_lamancha_32.png.import b/tools/configurator/res/flags/spain_castile_lamancha_32.png.import new file mode 100644 index 00000000..8b753128 --- /dev/null +++ b/tools/configurator/res/flags/spain_castile_lamancha_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csrfcdnmvokjv" +path="res://.godot/imported/spain_castile_lamancha_32.png-87f3d22830895d262a92c22c865c71b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_castile_lamancha_32.png" +dest_files=["res://.godot/imported/spain_castile_lamancha_32.png-87f3d22830895d262a92c22c865c71b2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_castile_leon_32.png b/tools/configurator/res/flags/spain_castile_leon_32.png new file mode 100644 index 00000000..1c008831 Binary files /dev/null and b/tools/configurator/res/flags/spain_castile_leon_32.png differ diff --git a/tools/configurator/res/flags/spain_castile_leon_32.png.import b/tools/configurator/res/flags/spain_castile_leon_32.png.import new file mode 100644 index 00000000..f5d1e101 --- /dev/null +++ b/tools/configurator/res/flags/spain_castile_leon_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ow6xq4rea1nv" +path="res://.godot/imported/spain_castile_leon_32.png-0d8b06436d17c40ae1a032432013a796.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_castile_leon_32.png" +dest_files=["res://.godot/imported/spain_castile_leon_32.png-0d8b06436d17c40ae1a032432013a796.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_catalonia_32.png b/tools/configurator/res/flags/spain_catalonia_32.png new file mode 100644 index 00000000..54876bee Binary files /dev/null and b/tools/configurator/res/flags/spain_catalonia_32.png differ diff --git a/tools/configurator/res/flags/spain_catalonia_32.png.import b/tools/configurator/res/flags/spain_catalonia_32.png.import new file mode 100644 index 00000000..49668817 --- /dev/null +++ b/tools/configurator/res/flags/spain_catalonia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwveybtvb7dgj" +path="res://.godot/imported/spain_catalonia_32.png-adcc47467ba60d7f547a5833c9d3213c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_catalonia_32.png" +dest_files=["res://.godot/imported/spain_catalonia_32.png-adcc47467ba60d7f547a5833c9d3213c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_ceuta_32.png b/tools/configurator/res/flags/spain_ceuta_32.png new file mode 100644 index 00000000..142c957d Binary files /dev/null and b/tools/configurator/res/flags/spain_ceuta_32.png differ diff --git a/tools/configurator/res/flags/spain_ceuta_32.png.import b/tools/configurator/res/flags/spain_ceuta_32.png.import new file mode 100644 index 00000000..95ee3653 --- /dev/null +++ b/tools/configurator/res/flags/spain_ceuta_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daujc746e40pm" +path="res://.godot/imported/spain_ceuta_32.png-a4d4218ce69f8337d77193293d984b59.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_ceuta_32.png" +dest_files=["res://.godot/imported/spain_ceuta_32.png-a4d4218ce69f8337d77193293d984b59.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_extremadura_32.png b/tools/configurator/res/flags/spain_extremadura_32.png new file mode 100644 index 00000000..04e924ff Binary files /dev/null and b/tools/configurator/res/flags/spain_extremadura_32.png differ diff --git a/tools/configurator/res/flags/spain_extremadura_32.png.import b/tools/configurator/res/flags/spain_extremadura_32.png.import new file mode 100644 index 00000000..1e733b3f --- /dev/null +++ b/tools/configurator/res/flags/spain_extremadura_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://com1cx2kohs7w" +path="res://.godot/imported/spain_extremadura_32.png-cc6991c3e898a703b2edc2d626c48354.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_extremadura_32.png" +dest_files=["res://.godot/imported/spain_extremadura_32.png-cc6991c3e898a703b2edc2d626c48354.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_galicia_32.png b/tools/configurator/res/flags/spain_galicia_32.png new file mode 100644 index 00000000..d67287f8 Binary files /dev/null and b/tools/configurator/res/flags/spain_galicia_32.png differ diff --git a/tools/configurator/res/flags/spain_galicia_32.png.import b/tools/configurator/res/flags/spain_galicia_32.png.import new file mode 100644 index 00000000..a86b2642 --- /dev/null +++ b/tools/configurator/res/flags/spain_galicia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr5e8nvfxptun" +path="res://.godot/imported/spain_galicia_32.png-a5204f9e75f574a374142e4329af8faa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_galicia_32.png" +dest_files=["res://.godot/imported/spain_galicia_32.png-a5204f9e75f574a374142e4329af8faa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_la_rioja_32.png b/tools/configurator/res/flags/spain_la_rioja_32.png new file mode 100644 index 00000000..2ea31503 Binary files /dev/null and b/tools/configurator/res/flags/spain_la_rioja_32.png differ diff --git a/tools/configurator/res/flags/spain_la_rioja_32.png.import b/tools/configurator/res/flags/spain_la_rioja_32.png.import new file mode 100644 index 00000000..87becc19 --- /dev/null +++ b/tools/configurator/res/flags/spain_la_rioja_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://booffa5iru6ou" +path="res://.godot/imported/spain_la_rioja_32.png-54e90dead512b807aa4be7672d65f830.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_la_rioja_32.png" +dest_files=["res://.godot/imported/spain_la_rioja_32.png-54e90dead512b807aa4be7672d65f830.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_madrid_32.png b/tools/configurator/res/flags/spain_madrid_32.png new file mode 100644 index 00000000..20d69c92 Binary files /dev/null and b/tools/configurator/res/flags/spain_madrid_32.png differ diff --git a/tools/configurator/res/flags/spain_madrid_32.png.import b/tools/configurator/res/flags/spain_madrid_32.png.import new file mode 100644 index 00000000..e96bc5a8 --- /dev/null +++ b/tools/configurator/res/flags/spain_madrid_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0bxmsmjubtlg" +path="res://.godot/imported/spain_madrid_32.png-8fcb538bc85cb1cb56a6d55851628b58.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_madrid_32.png" +dest_files=["res://.godot/imported/spain_madrid_32.png-8fcb538bc85cb1cb56a6d55851628b58.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_melilla_32.png b/tools/configurator/res/flags/spain_melilla_32.png new file mode 100644 index 00000000..5305d66c Binary files /dev/null and b/tools/configurator/res/flags/spain_melilla_32.png differ diff --git a/tools/configurator/res/flags/spain_melilla_32.png.import b/tools/configurator/res/flags/spain_melilla_32.png.import new file mode 100644 index 00000000..f2e118e5 --- /dev/null +++ b/tools/configurator/res/flags/spain_melilla_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6y35cana5605" +path="res://.godot/imported/spain_melilla_32.png-fe386a0692e46a7a127cd68e9a4360c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_melilla_32.png" +dest_files=["res://.godot/imported/spain_melilla_32.png-fe386a0692e46a7a127cd68e9a4360c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_murcia_32.png b/tools/configurator/res/flags/spain_murcia_32.png new file mode 100644 index 00000000..0beb7bd7 Binary files /dev/null and b/tools/configurator/res/flags/spain_murcia_32.png differ diff --git a/tools/configurator/res/flags/spain_murcia_32.png.import b/tools/configurator/res/flags/spain_murcia_32.png.import new file mode 100644 index 00000000..6f3d8659 --- /dev/null +++ b/tools/configurator/res/flags/spain_murcia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rwgwrqhpnsr6" +path="res://.godot/imported/spain_murcia_32.png-aa9a8a0be0e565d07279a3f962b8c274.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_murcia_32.png" +dest_files=["res://.godot/imported/spain_murcia_32.png-aa9a8a0be0e565d07279a3f962b8c274.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_navarre_32.png b/tools/configurator/res/flags/spain_navarre_32.png new file mode 100644 index 00000000..2d70bbdc Binary files /dev/null and b/tools/configurator/res/flags/spain_navarre_32.png differ diff --git a/tools/configurator/res/flags/spain_navarre_32.png.import b/tools/configurator/res/flags/spain_navarre_32.png.import new file mode 100644 index 00000000..b380a14c --- /dev/null +++ b/tools/configurator/res/flags/spain_navarre_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b86v1t50p03r1" +path="res://.godot/imported/spain_navarre_32.png-d87f8c095668744ee80894630220922b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_navarre_32.png" +dest_files=["res://.godot/imported/spain_navarre_32.png-d87f8c095668744ee80894630220922b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/spain_valencia_32.png b/tools/configurator/res/flags/spain_valencia_32.png new file mode 100644 index 00000000..36d4c5c6 Binary files /dev/null and b/tools/configurator/res/flags/spain_valencia_32.png differ diff --git a/tools/configurator/res/flags/spain_valencia_32.png.import b/tools/configurator/res/flags/spain_valencia_32.png.import new file mode 100644 index 00000000..0c4f2e96 --- /dev/null +++ b/tools/configurator/res/flags/spain_valencia_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4jdebggpvurf" +path="res://.godot/imported/spain_valencia_32.png-400d354ef9e45cebcaa84ee3f5b245f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/spain_valencia_32.png" +dest_files=["res://.godot/imported/spain_valencia_32.png-400d354ef9e45cebcaa84ee3f5b245f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/sri_lanka_32.png b/tools/configurator/res/flags/sri_lanka_32.png new file mode 100644 index 00000000..c679fb2a Binary files /dev/null and b/tools/configurator/res/flags/sri_lanka_32.png differ diff --git a/tools/configurator/res/flags/sri_lanka_32.png.import b/tools/configurator/res/flags/sri_lanka_32.png.import new file mode 100644 index 00000000..e2c49471 --- /dev/null +++ b/tools/configurator/res/flags/sri_lanka_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5kocyh8tp8r6" +path="res://.godot/imported/sri_lanka_32.png-2f4213b1ec894e08dc8c6d4b0f72b2f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/sri_lanka_32.png" +dest_files=["res://.godot/imported/sri_lanka_32.png-2f4213b1ec894e08dc8c6d4b0f72b2f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/suriname_32.png b/tools/configurator/res/flags/suriname_32.png new file mode 100644 index 00000000..a917c138 Binary files /dev/null and b/tools/configurator/res/flags/suriname_32.png differ diff --git a/tools/configurator/res/flags/suriname_32.png.import b/tools/configurator/res/flags/suriname_32.png.import new file mode 100644 index 00000000..d9523db4 --- /dev/null +++ b/tools/configurator/res/flags/suriname_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2lks0bmbea3w" +path="res://.godot/imported/suriname_32.png-266b4e588a9ba5f04e9a62492b612553.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/suriname_32.png" +dest_files=["res://.godot/imported/suriname_32.png-266b4e588a9ba5f04e9a62492b612553.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/sweden_32.png b/tools/configurator/res/flags/sweden_32.png new file mode 100644 index 00000000..080a3ce5 Binary files /dev/null and b/tools/configurator/res/flags/sweden_32.png differ diff --git a/tools/configurator/res/flags/sweden_32.png.import b/tools/configurator/res/flags/sweden_32.png.import new file mode 100644 index 00000000..1ed61d07 --- /dev/null +++ b/tools/configurator/res/flags/sweden_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bns0ot5pbf03h" +path="res://.godot/imported/sweden_32.png-7462eeedfd706848eeba21169eb30240.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/sweden_32.png" +dest_files=["res://.godot/imported/sweden_32.png-7462eeedfd706848eeba21169eb30240.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/switzerland_32.png b/tools/configurator/res/flags/switzerland_32.png new file mode 100644 index 00000000..04ae68a2 Binary files /dev/null and b/tools/configurator/res/flags/switzerland_32.png differ diff --git a/tools/configurator/res/flags/switzerland_32.png.import b/tools/configurator/res/flags/switzerland_32.png.import new file mode 100644 index 00000000..0fdedf13 --- /dev/null +++ b/tools/configurator/res/flags/switzerland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvy7m0veswebr" +path="res://.godot/imported/switzerland_32.png-087e246b450385c20eca5d564f8061ed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/switzerland_32.png" +dest_files=["res://.godot/imported/switzerland_32.png-087e246b450385c20eca5d564f8061ed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/syria_32.png b/tools/configurator/res/flags/syria_32.png new file mode 100644 index 00000000..ec24f229 Binary files /dev/null and b/tools/configurator/res/flags/syria_32.png differ diff --git a/tools/configurator/res/flags/syria_32.png.import b/tools/configurator/res/flags/syria_32.png.import new file mode 100644 index 00000000..4f3ab8a0 --- /dev/null +++ b/tools/configurator/res/flags/syria_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqguglq7ddgd7" +path="res://.godot/imported/syria_32.png-f69ee7228697ff00ccce485d82584a47.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/syria_32.png" +dest_files=["res://.godot/imported/syria_32.png-f69ee7228697ff00ccce485d82584a47.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/tajikistan_32.png b/tools/configurator/res/flags/tajikistan_32.png new file mode 100644 index 00000000..794908ef Binary files /dev/null and b/tools/configurator/res/flags/tajikistan_32.png differ diff --git a/tools/configurator/res/flags/tajikistan_32.png.import b/tools/configurator/res/flags/tajikistan_32.png.import new file mode 100644 index 00000000..509a8882 --- /dev/null +++ b/tools/configurator/res/flags/tajikistan_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du4vgf4w5rl0u" +path="res://.godot/imported/tajikistan_32.png-2d699afc6c9e9e397d815e99eb45593a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/tajikistan_32.png" +dest_files=["res://.godot/imported/tajikistan_32.png-2d699afc6c9e9e397d815e99eb45593a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/thailand_32.png b/tools/configurator/res/flags/thailand_32.png new file mode 100644 index 00000000..dcd828e2 Binary files /dev/null and b/tools/configurator/res/flags/thailand_32.png differ diff --git a/tools/configurator/res/flags/thailand_32.png.import b/tools/configurator/res/flags/thailand_32.png.import new file mode 100644 index 00000000..6e00c1b0 --- /dev/null +++ b/tools/configurator/res/flags/thailand_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1y28q4r8jni0" +path="res://.godot/imported/thailand_32.png-6c6e0199709d591d737ad00e4e7f8e9c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/thailand_32.png" +dest_files=["res://.godot/imported/thailand_32.png-6c6e0199709d591d737ad00e4e7f8e9c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/tonga_32.png b/tools/configurator/res/flags/tonga_32.png new file mode 100644 index 00000000..1b60745c Binary files /dev/null and b/tools/configurator/res/flags/tonga_32.png differ diff --git a/tools/configurator/res/flags/tonga_32.png.import b/tools/configurator/res/flags/tonga_32.png.import new file mode 100644 index 00000000..16b0fde0 --- /dev/null +++ b/tools/configurator/res/flags/tonga_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c455klrib43j5" +path="res://.godot/imported/tonga_32.png-97130c6d35831e410e4089a5662f48a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/tonga_32.png" +dest_files=["res://.godot/imported/tonga_32.png-97130c6d35831e410e4089a5662f48a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/turkiye_32.png b/tools/configurator/res/flags/turkiye_32.png new file mode 100644 index 00000000..d546bf0f Binary files /dev/null and b/tools/configurator/res/flags/turkiye_32.png differ diff --git a/tools/configurator/res/flags/turkiye_32.png.import b/tools/configurator/res/flags/turkiye_32.png.import new file mode 100644 index 00000000..6e366157 --- /dev/null +++ b/tools/configurator/res/flags/turkiye_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckpl8ujvrb13f" +path="res://.godot/imported/turkiye_32.png-bfdb75be52cb2e5ba43f56148eecbdae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/turkiye_32.png" +dest_files=["res://.godot/imported/turkiye_32.png-bfdb75be52cb2e5ba43f56148eecbdae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/turkmenistan_32.png b/tools/configurator/res/flags/turkmenistan_32.png new file mode 100644 index 00000000..61f4afa4 Binary files /dev/null and b/tools/configurator/res/flags/turkmenistan_32.png differ diff --git a/tools/configurator/res/flags/turkmenistan_32.png.import b/tools/configurator/res/flags/turkmenistan_32.png.import new file mode 100644 index 00000000..db3c566c --- /dev/null +++ b/tools/configurator/res/flags/turkmenistan_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqhb2r65sfn76" +path="res://.godot/imported/turkmenistan_32.png-08666287a2a69b68e97e680cb54b7cc6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/turkmenistan_32.png" +dest_files=["res://.godot/imported/turkmenistan_32.png-08666287a2a69b68e97e680cb54b7cc6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/tuvalu_32.png b/tools/configurator/res/flags/tuvalu_32.png new file mode 100644 index 00000000..6ffe8425 Binary files /dev/null and b/tools/configurator/res/flags/tuvalu_32.png differ diff --git a/tools/configurator/res/flags/tuvalu_32.png.import b/tools/configurator/res/flags/tuvalu_32.png.import new file mode 100644 index 00000000..00497670 --- /dev/null +++ b/tools/configurator/res/flags/tuvalu_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdr0wemrh0eat" +path="res://.godot/imported/tuvalu_32.png-006073aabdade0f0f32f48aba9523b7f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/tuvalu_32.png" +dest_files=["res://.godot/imported/tuvalu_32.png-006073aabdade0f0f32f48aba9523b7f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/ukraine_32.png b/tools/configurator/res/flags/ukraine_32.png new file mode 100644 index 00000000..fbe51fca Binary files /dev/null and b/tools/configurator/res/flags/ukraine_32.png differ diff --git a/tools/configurator/res/flags/ukraine_32.png.import b/tools/configurator/res/flags/ukraine_32.png.import new file mode 100644 index 00000000..0afd7597 --- /dev/null +++ b/tools/configurator/res/flags/ukraine_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhsorn3kcfdcv" +path="res://.godot/imported/ukraine_32.png-79135d5c34b180310b5154fd5a5543ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/ukraine_32.png" +dest_files=["res://.godot/imported/ukraine_32.png-79135d5c34b180310b5154fd5a5543ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/united_arab_emirates_32.png b/tools/configurator/res/flags/united_arab_emirates_32.png new file mode 100644 index 00000000..04fe87f0 Binary files /dev/null and b/tools/configurator/res/flags/united_arab_emirates_32.png differ diff --git a/tools/configurator/res/flags/united_arab_emirates_32.png.import b/tools/configurator/res/flags/united_arab_emirates_32.png.import new file mode 100644 index 00000000..b780745f --- /dev/null +++ b/tools/configurator/res/flags/united_arab_emirates_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nfyk8qcq8sel" +path="res://.godot/imported/united_arab_emirates_32.png-855618fa9d97d3d2b638ad10541f0557.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/united_arab_emirates_32.png" +dest_files=["res://.godot/imported/united_arab_emirates_32.png-855618fa9d97d3d2b638ad10541f0557.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/united_kingdom_32.png b/tools/configurator/res/flags/united_kingdom_32.png new file mode 100644 index 00000000..145c48ec Binary files /dev/null and b/tools/configurator/res/flags/united_kingdom_32.png differ diff --git a/tools/configurator/res/flags/united_kingdom_32.png.import b/tools/configurator/res/flags/united_kingdom_32.png.import new file mode 100644 index 00000000..667ae9e1 --- /dev/null +++ b/tools/configurator/res/flags/united_kingdom_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxdhjp18rgmr4" +path="res://.godot/imported/united_kingdom_32.png-0e447afcde461005ef992082aa84cdc8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/united_kingdom_32.png" +dest_files=["res://.godot/imported/united_kingdom_32.png-0e447afcde461005ef992082aa84cdc8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/united_kingdom_anguilla_32.png b/tools/configurator/res/flags/united_kingdom_anguilla_32.png new file mode 100644 index 00000000..99da7514 Binary files /dev/null and b/tools/configurator/res/flags/united_kingdom_anguilla_32.png differ diff --git a/tools/configurator/res/flags/united_kingdom_anguilla_32.png.import b/tools/configurator/res/flags/united_kingdom_anguilla_32.png.import new file mode 100644 index 00000000..cbf31336 --- /dev/null +++ b/tools/configurator/res/flags/united_kingdom_anguilla_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dco1ubb6q7tcl" +path="res://.godot/imported/united_kingdom_anguilla_32.png-8d54616067e24caca6deb0161a0441eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/united_kingdom_anguilla_32.png" +dest_files=["res://.godot/imported/united_kingdom_anguilla_32.png-8d54616067e24caca6deb0161a0441eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/united_kingdom_ascension_island_32.png b/tools/configurator/res/flags/united_kingdom_ascension_island_32.png new file mode 100644 index 00000000..9a4d0f82 Binary files /dev/null and b/tools/configurator/res/flags/united_kingdom_ascension_island_32.png differ diff --git a/tools/configurator/res/flags/united_kingdom_ascension_island_32.png.import b/tools/configurator/res/flags/united_kingdom_ascension_island_32.png.import new file mode 100644 index 00000000..c4621e8d --- /dev/null +++ b/tools/configurator/res/flags/united_kingdom_ascension_island_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwnjofns2h3hs" +path="res://.godot/imported/united_kingdom_ascension_island_32.png-e6f474b1020a3f7977201692fc373e61.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/united_kingdom_ascension_island_32.png" +dest_files=["res://.godot/imported/united_kingdom_ascension_island_32.png-e6f474b1020a3f7977201692fc373e61.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/united_kingdom_bermuda_32.png b/tools/configurator/res/flags/united_kingdom_bermuda_32.png new file mode 100644 index 00000000..d8f396b3 Binary files /dev/null and b/tools/configurator/res/flags/united_kingdom_bermuda_32.png differ diff --git a/tools/configurator/res/flags/united_kingdom_bermuda_32.png.import b/tools/configurator/res/flags/united_kingdom_bermuda_32.png.import new file mode 100644 index 00000000..6d2183ed --- /dev/null +++ b/tools/configurator/res/flags/united_kingdom_bermuda_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4rhdfsfqqfs" +path="res://.godot/imported/united_kingdom_bermuda_32.png-74e4680336e487ba45a418afba47d439.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/united_kingdom_bermuda_32.png" +dest_files=["res://.godot/imported/united_kingdom_bermuda_32.png-74e4680336e487ba45a418afba47d439.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/united_kingdom_british_virgin_islands_32.png b/tools/configurator/res/flags/united_kingdom_british_virgin_islands_32.png new file mode 100644 index 00000000..e44fe7c4 Binary files /dev/null and b/tools/configurator/res/flags/united_kingdom_british_virgin_islands_32.png differ diff --git a/tools/configurator/res/flags/united_kingdom_british_virgin_islands_32.png.import b/tools/configurator/res/flags/united_kingdom_british_virgin_islands_32.png.import new file mode 100644 index 00000000..6901d899 --- /dev/null +++ b/tools/configurator/res/flags/united_kingdom_british_virgin_islands_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u3lxswnfgj55" +path="res://.godot/imported/united_kingdom_british_virgin_islands_32.png-85da8d1edffb58196e352c7fae2055ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/united_kingdom_british_virgin_islands_32.png" +dest_files=["res://.godot/imported/united_kingdom_british_virgin_islands_32.png-85da8d1edffb58196e352c7fae2055ec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/united_kingdom_cayman_islands_32.png b/tools/configurator/res/flags/united_kingdom_cayman_islands_32.png new file mode 100644 index 00000000..1e23ae29 Binary files /dev/null and b/tools/configurator/res/flags/united_kingdom_cayman_islands_32.png differ diff --git a/tools/configurator/res/flags/united_kingdom_cayman_islands_32.png.import b/tools/configurator/res/flags/united_kingdom_cayman_islands_32.png.import new file mode 100644 index 00000000..977fe7f1 --- /dev/null +++ b/tools/configurator/res/flags/united_kingdom_cayman_islands_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c11o6aodw8eh6" +path="res://.godot/imported/united_kingdom_cayman_islands_32.png-898b153749b922bd764247833badc925.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/united_kingdom_cayman_islands_32.png" +dest_files=["res://.godot/imported/united_kingdom_cayman_islands_32.png-898b153749b922bd764247833badc925.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/united_kingdom_england_32.png b/tools/configurator/res/flags/united_kingdom_england_32.png new file mode 100644 index 00000000..07dcf465 Binary files /dev/null and b/tools/configurator/res/flags/united_kingdom_england_32.png differ diff --git a/tools/configurator/res/flags/united_kingdom_england_32.png.import b/tools/configurator/res/flags/united_kingdom_england_32.png.import new file mode 100644 index 00000000..23465646 --- /dev/null +++ b/tools/configurator/res/flags/united_kingdom_england_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kmkti0k4nswh" +path="res://.godot/imported/united_kingdom_england_32.png-5f66073548b96ecc401abf74181312a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/united_kingdom_england_32.png" +dest_files=["res://.godot/imported/united_kingdom_england_32.png-5f66073548b96ecc401abf74181312a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/united_kingdom_falkland_islands_32.png b/tools/configurator/res/flags/united_kingdom_falkland_islands_32.png new file mode 100644 index 00000000..f3eb2e51 Binary files /dev/null and b/tools/configurator/res/flags/united_kingdom_falkland_islands_32.png differ diff --git a/tools/configurator/res/flags/united_kingdom_falkland_islands_32.png.import b/tools/configurator/res/flags/united_kingdom_falkland_islands_32.png.import new file mode 100644 index 00000000..cd4e3762 --- /dev/null +++ b/tools/configurator/res/flags/united_kingdom_falkland_islands_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8teurfy3hr84" +path="res://.godot/imported/united_kingdom_falkland_islands_32.png-d1acc9b1ad43eb4b452cc147b27c7be3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/united_kingdom_falkland_islands_32.png" +dest_files=["res://.godot/imported/united_kingdom_falkland_islands_32.png-d1acc9b1ad43eb4b452cc147b27c7be3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/united_kingdom_gibraltar_32.png b/tools/configurator/res/flags/united_kingdom_gibraltar_32.png new file mode 100644 index 00000000..cc980a16 Binary files /dev/null and b/tools/configurator/res/flags/united_kingdom_gibraltar_32.png differ diff --git a/tools/configurator/res/flags/united_kingdom_gibraltar_32.png.import b/tools/configurator/res/flags/united_kingdom_gibraltar_32.png.import new file mode 100644 index 00000000..07d82417 --- /dev/null +++ b/tools/configurator/res/flags/united_kingdom_gibraltar_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6c8413dpgv36" +path="res://.godot/imported/united_kingdom_gibraltar_32.png-b896528b6a8210ab48d14c58e592cdca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/united_kingdom_gibraltar_32.png" +dest_files=["res://.godot/imported/united_kingdom_gibraltar_32.png-b896528b6a8210ab48d14c58e592cdca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/united_kingdom_greater_london_32.png b/tools/configurator/res/flags/united_kingdom_greater_london_32.png new file mode 100644 index 00000000..6641a14d Binary files /dev/null and b/tools/configurator/res/flags/united_kingdom_greater_london_32.png differ diff --git a/tools/configurator/res/flags/united_kingdom_greater_london_32.png.import b/tools/configurator/res/flags/united_kingdom_greater_london_32.png.import new file mode 100644 index 00000000..b47dbd8c --- /dev/null +++ b/tools/configurator/res/flags/united_kingdom_greater_london_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i5p5p07chy8" +path="res://.godot/imported/united_kingdom_greater_london_32.png-485e2c2ca218a16472a4187d2a620d88.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/united_kingdom_greater_london_32.png" +dest_files=["res://.godot/imported/united_kingdom_greater_london_32.png-485e2c2ca218a16472a4187d2a620d88.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/united_kingdom_montserrat_32.png b/tools/configurator/res/flags/united_kingdom_montserrat_32.png new file mode 100644 index 00000000..b34212dd Binary files /dev/null and b/tools/configurator/res/flags/united_kingdom_montserrat_32.png differ diff --git a/tools/configurator/res/flags/united_kingdom_montserrat_32.png.import b/tools/configurator/res/flags/united_kingdom_montserrat_32.png.import new file mode 100644 index 00000000..f196692e --- /dev/null +++ b/tools/configurator/res/flags/united_kingdom_montserrat_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dexg6fv1fuvcs" +path="res://.godot/imported/united_kingdom_montserrat_32.png-9fd3aa02507e33e3015aecc52e1c716d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/united_kingdom_montserrat_32.png" +dest_files=["res://.godot/imported/united_kingdom_montserrat_32.png-9fd3aa02507e33e3015aecc52e1c716d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/united_kingdom_pitcairn_islands_32.png b/tools/configurator/res/flags/united_kingdom_pitcairn_islands_32.png new file mode 100644 index 00000000..2e5f2186 Binary files /dev/null and b/tools/configurator/res/flags/united_kingdom_pitcairn_islands_32.png differ diff --git a/tools/configurator/res/flags/united_kingdom_pitcairn_islands_32.png.import b/tools/configurator/res/flags/united_kingdom_pitcairn_islands_32.png.import new file mode 100644 index 00000000..421d0051 --- /dev/null +++ b/tools/configurator/res/flags/united_kingdom_pitcairn_islands_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6v0i5n2nih6w" +path="res://.godot/imported/united_kingdom_pitcairn_islands_32.png-db0a11d9307f2caa92737e3c06411aa0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/united_kingdom_pitcairn_islands_32.png" +dest_files=["res://.godot/imported/united_kingdom_pitcairn_islands_32.png-db0a11d9307f2caa92737e3c06411aa0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/united_kingdom_saint_helena_32.png b/tools/configurator/res/flags/united_kingdom_saint_helena_32.png new file mode 100644 index 00000000..72a35f6e Binary files /dev/null and b/tools/configurator/res/flags/united_kingdom_saint_helena_32.png differ diff --git a/tools/configurator/res/flags/united_kingdom_saint_helena_32.png.import b/tools/configurator/res/flags/united_kingdom_saint_helena_32.png.import new file mode 100644 index 00000000..37d0431d --- /dev/null +++ b/tools/configurator/res/flags/united_kingdom_saint_helena_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mkmqsanhta2f" +path="res://.godot/imported/united_kingdom_saint_helena_32.png-46c0b8fdc46e22ed85ed5367d6e9fd37.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/united_kingdom_saint_helena_32.png" +dest_files=["res://.godot/imported/united_kingdom_saint_helena_32.png-46c0b8fdc46e22ed85ed5367d6e9fd37.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/united_kingdom_scotland_32.png b/tools/configurator/res/flags/united_kingdom_scotland_32.png new file mode 100644 index 00000000..80ee9d1f Binary files /dev/null and b/tools/configurator/res/flags/united_kingdom_scotland_32.png differ diff --git a/tools/configurator/res/flags/united_kingdom_scotland_32.png.import b/tools/configurator/res/flags/united_kingdom_scotland_32.png.import new file mode 100644 index 00000000..36582630 --- /dev/null +++ b/tools/configurator/res/flags/united_kingdom_scotland_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://55hxfxp7tta2" +path="res://.godot/imported/united_kingdom_scotland_32.png-3808cc3168deb44e31e50b95d5d8b50d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/united_kingdom_scotland_32.png" +dest_files=["res://.godot/imported/united_kingdom_scotland_32.png-3808cc3168deb44e31e50b95d5d8b50d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/united_kingdom_turks_and_caicos_islands_32.png b/tools/configurator/res/flags/united_kingdom_turks_and_caicos_islands_32.png new file mode 100644 index 00000000..71b4b538 Binary files /dev/null and b/tools/configurator/res/flags/united_kingdom_turks_and_caicos_islands_32.png differ diff --git a/tools/configurator/res/flags/united_kingdom_turks_and_caicos_islands_32.png.import b/tools/configurator/res/flags/united_kingdom_turks_and_caicos_islands_32.png.import new file mode 100644 index 00000000..a4fa2ce3 --- /dev/null +++ b/tools/configurator/res/flags/united_kingdom_turks_and_caicos_islands_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2h8hqfvlorxv" +path="res://.godot/imported/united_kingdom_turks_and_caicos_islands_32.png-7dbc9a2b178d4e692c739201019de012.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/united_kingdom_turks_and_caicos_islands_32.png" +dest_files=["res://.godot/imported/united_kingdom_turks_and_caicos_islands_32.png-7dbc9a2b178d4e692c739201019de012.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/uzbekistan_32.png b/tools/configurator/res/flags/uzbekistan_32.png new file mode 100644 index 00000000..db6832df Binary files /dev/null and b/tools/configurator/res/flags/uzbekistan_32.png differ diff --git a/tools/configurator/res/flags/uzbekistan_32.png.import b/tools/configurator/res/flags/uzbekistan_32.png.import new file mode 100644 index 00000000..7ea1e9d9 --- /dev/null +++ b/tools/configurator/res/flags/uzbekistan_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1xfoe53il5i8" +path="res://.godot/imported/uzbekistan_32.png-271f8b0afb482f7d05e971a8a20221a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/uzbekistan_32.png" +dest_files=["res://.godot/imported/uzbekistan_32.png-271f8b0afb482f7d05e971a8a20221a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/vatican_city_32.png b/tools/configurator/res/flags/vatican_city_32.png new file mode 100644 index 00000000..78b594b6 Binary files /dev/null and b/tools/configurator/res/flags/vatican_city_32.png differ diff --git a/tools/configurator/res/flags/vatican_city_32.png.import b/tools/configurator/res/flags/vatican_city_32.png.import new file mode 100644 index 00000000..541b02ac --- /dev/null +++ b/tools/configurator/res/flags/vatican_city_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clmp4bapen85q" +path="res://.godot/imported/vatican_city_32.png-766c70c77eaa3d988c711603c966d6e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/vatican_city_32.png" +dest_files=["res://.godot/imported/vatican_city_32.png-766c70c77eaa3d988c711603c966d6e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/vietnam_32.png b/tools/configurator/res/flags/vietnam_32.png new file mode 100644 index 00000000..8a7d9af7 Binary files /dev/null and b/tools/configurator/res/flags/vietnam_32.png differ diff --git a/tools/configurator/res/flags/vietnam_32.png.import b/tools/configurator/res/flags/vietnam_32.png.import new file mode 100644 index 00000000..c7e23fd3 --- /dev/null +++ b/tools/configurator/res/flags/vietnam_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbdq5m7udwcrg" +path="res://.godot/imported/vietnam_32.png-17015070c2d54d43aedcef59712adaf0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/vietnam_32.png" +dest_files=["res://.godot/imported/vietnam_32.png-17015070c2d54d43aedcef59712adaf0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/flags/yemen_32.png b/tools/configurator/res/flags/yemen_32.png new file mode 100644 index 00000000..fb0944a6 Binary files /dev/null and b/tools/configurator/res/flags/yemen_32.png differ diff --git a/tools/configurator/res/flags/yemen_32.png.import b/tools/configurator/res/flags/yemen_32.png.import new file mode 100644 index 00000000..6a12ee3e --- /dev/null +++ b/tools/configurator/res/flags/yemen_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6ybkoywgshsq" +path="res://.godot/imported/yemen_32.png-26bb5483951e4afee07684297e4e4009.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/flags/yemen_32.png" +dest_files=["res://.godot/imported/yemen_32.png-26bb5483951e4afee07684297e4e4009.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/pixel_ui_theme/5x7-type-2.otf b/tools/configurator/res/pixel_ui_theme/5x7-type-2.otf new file mode 100644 index 00000000..e2aa376e Binary files /dev/null and b/tools/configurator/res/pixel_ui_theme/5x7-type-2.otf differ diff --git a/tools/configurator/res/pixel_ui_theme/5x7-type-2.otf.import b/tools/configurator/res/pixel_ui_theme/5x7-type-2.otf.import new file mode 100644 index 00000000..cf7fdca5 --- /dev/null +++ b/tools/configurator/res/pixel_ui_theme/5x7-type-2.otf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://bgisu2empwlrl" +path="res://.godot/imported/5x7-type-2.otf-3c44ff011919a1da1dced39350b943a4.fontdata" + +[deps] + +source_file="res://res/pixel_ui_theme/5x7-type-2.otf" +dest_files=["res://.godot/imported/5x7-type-2.otf-3c44ff011919a1da1dced39350b943a4.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/tools/configurator/res/pixel_ui_theme/8x8_ui_elements.png b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements.png new file mode 100755 index 00000000..88d9eaeb Binary files /dev/null and b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements.png differ diff --git a/tools/configurator/res/pixel_ui_theme/8x8_ui_elements.png.import b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements.png.import new file mode 100644 index 00000000..c16a53fa --- /dev/null +++ b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx0u5hiwxfgu5" +path="res://.godot/imported/8x8_ui_elements.png-99fdc940ef9c2e12efc652877db45f6e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/pixel_ui_theme/8x8_ui_elements.png" +dest_files=["res://.godot/imported/8x8_ui_elements.png-99fdc940ef9c2e12efc652877db45f6e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=1 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/tools/configurator/res/pixel_ui_theme/8x8_ui_elements.png~ b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements.png~ new file mode 100755 index 00000000..f914c037 Binary files /dev/null and b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements.png~ differ diff --git a/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x.png b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x.png new file mode 100644 index 00000000..a14c5435 Binary files /dev/null and b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x.png differ diff --git a/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x.png.import b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x.png.import new file mode 100644 index 00000000..8e60ce14 --- /dev/null +++ b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4vntk8yri4yw" +path="res://.godot/imported/8x8_ui_elements2x.png-49d4190754cd0b40f3ef4343ba003cfc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/pixel_ui_theme/8x8_ui_elements2x.png" +dest_files=["res://.godot/imported/8x8_ui_elements2x.png-49d4190754cd0b40f3ef4343ba003cfc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x_de.png b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x_de.png new file mode 100644 index 00000000..57782219 Binary files /dev/null and b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x_de.png differ diff --git a/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x_de.png.import b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x_de.png.import new file mode 100644 index 00000000..6d5f2231 --- /dev/null +++ b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x_de.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tnt4xdvptk05" +path="res://.godot/imported/8x8_ui_elements2x_de.png-582cc2feae86dd150993f829aa5d78a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/pixel_ui_theme/8x8_ui_elements2x_de.png" +dest_files=["res://.godot/imported/8x8_ui_elements2x_de.png-582cc2feae86dd150993f829aa5d78a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x_sv.png b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x_sv.png new file mode 100644 index 00000000..c201a407 Binary files /dev/null and b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x_sv.png differ diff --git a/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x_sv.png.import b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x_sv.png.import new file mode 100644 index 00000000..7d8f5be3 --- /dev/null +++ b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements2x_sv.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6qodaspy44kq" +path="res://.godot/imported/8x8_ui_elements2x_sv.png-cb942b04d7580bcfa5e2bd625ab98e1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/pixel_ui_theme/8x8_ui_elements2x_sv.png" +dest_files=["res://.godot/imported/8x8_ui_elements2x_sv.png-cb942b04d7580bcfa5e2bd625ab98e1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/pixel_ui_theme/8x8_ui_elements_de.png b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements_de.png new file mode 100644 index 00000000..dbb31d45 Binary files /dev/null and b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements_de.png differ diff --git a/tools/configurator/res/pixel_ui_theme/8x8_ui_elements_de.png.import b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements_de.png.import new file mode 100644 index 00000000..7ef549ff --- /dev/null +++ b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements_de.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdwu4ma60tm8c" +path="res://.godot/imported/8x8_ui_elements_de.png-a4bd3fbe2599a71047fe5b87626f52d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/pixel_ui_theme/8x8_ui_elements_de.png" +dest_files=["res://.godot/imported/8x8_ui_elements_de.png-a4bd3fbe2599a71047fe5b87626f52d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/pixel_ui_theme/8x8_ui_elements_sv.png b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements_sv.png new file mode 100644 index 00000000..cd740daf Binary files /dev/null and b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements_sv.png differ diff --git a/tools/configurator/res/pixel_ui_theme/8x8_ui_elements_sv.png.import b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements_sv.png.import new file mode 100644 index 00000000..3e5c10ba --- /dev/null +++ b/tools/configurator/res/pixel_ui_theme/8x8_ui_elements_sv.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da7h6t366y7y2" +path="res://.godot/imported/8x8_ui_elements_sv.png-6c6ff77bee975360ad92095e77c0a153.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/pixel_ui_theme/8x8_ui_elements_sv.png" +dest_files=["res://.godot/imported/8x8_ui_elements_sv.png-6c6ff77bee975360ad92095e77c0a153.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/pixel_ui_theme/8x8_ui_icons.png b/tools/configurator/res/pixel_ui_theme/8x8_ui_icons.png new file mode 100755 index 00000000..a20edb56 Binary files /dev/null and b/tools/configurator/res/pixel_ui_theme/8x8_ui_icons.png differ diff --git a/tools/configurator/res/pixel_ui_theme/8x8_ui_icons.png.import b/tools/configurator/res/pixel_ui_theme/8x8_ui_icons.png.import new file mode 100644 index 00000000..284e2f19 --- /dev/null +++ b/tools/configurator/res/pixel_ui_theme/8x8_ui_icons.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxyml1owhi6de" +path="res://.godot/imported/8x8_ui_icons.png-876dc86dffacb7caacccaf7b2e03e9af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/pixel_ui_theme/8x8_ui_icons.png" +dest_files=["res://.godot/imported/8x8_ui_icons.png-876dc86dffacb7caacccaf7b2e03e9af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/res/pixel_ui_theme/RetroDECKTheme.new b/tools/configurator/res/pixel_ui_theme/RetroDECKTheme.new new file mode 100644 index 00000000..13c6efe3 --- /dev/null +++ b/tools/configurator/res/pixel_ui_theme/RetroDECKTheme.new @@ -0,0 +1,2921 @@ +[gd_resource type="Theme" load_steps=130 format=4 uid="uid://yqkvsb5q7pab"] + +[ext_resource type="Texture2D" uid="uid://dx0u5hiwxfgu5" path="res://res/pixel_ui_theme/8x8_ui_elements.png" id="1"] +[ext_resource type="Texture2D" uid="uid://cxyml1owhi6de" path="res://res/pixel_ui_theme/8x8_ui_icons.png" id="2"] +[ext_resource type="FontFile" uid="uid://sph0kotu777o" path="res://res/pixel_ui_theme/m5x7.ttf" id="3"] + +[sub_resource type="StyleBoxTexture" id="361"] +content_margin_left = 6.0 +content_margin_top = 4.0 +content_margin_right = 6.0 +content_margin_bottom = 4.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +region_rect = Rect2(0, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="9"] +content_margin_left = 6.0 +content_margin_top = 4.0 +content_margin_right = 6.0 +content_margin_bottom = 4.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +region_rect = Rect2(16, 40, 8, 8) +draw_center = false + +[sub_resource type="StyleBoxTexture" id="6"] +content_margin_left = 6.0 +content_margin_top = 4.0 +content_margin_right = 6.0 +content_margin_bottom = 4.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +region_rect = Rect2(24, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="7"] +content_margin_left = 6.0 +content_margin_top = 4.0 +content_margin_right = 6.0 +content_margin_bottom = 4.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +region_rect = Rect2(8, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="8"] +content_margin_left = 6.0 +content_margin_top = 4.0 +content_margin_right = 6.0 +content_margin_bottom = 4.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +region_rect = Rect2(32, 40, 8, 8) + +[sub_resource type="AtlasTexture" id="337"] +atlas = ExtResource("1") +region = Rect2(40, 40, 16, 16) + +[sub_resource type="AtlasTexture" id="338"] +atlas = ExtResource("1") +region = Rect2(40, 24, 16, 16) + +[sub_resource type="AtlasTexture" id="341"] +atlas = ExtResource("1") +region = Rect2(59, 104, 34, 16) + +[sub_resource type="StyleBoxFlat" id="339"] +content_margin_left = 6.0 +content_margin_top = 5.0 +content_margin_right = 6.0 +content_margin_bottom = 4.0 +bg_color = Color(0.556863, 0.556863, 0.556863, 1) +draw_center = false +anti_aliasing = false + +[sub_resource type="StyleBoxFlat" id="342"] +content_margin_left = 6.0 +content_margin_top = 5.0 +content_margin_right = 6.0 +content_margin_bottom = 4.0 +bg_color = Color(0.556863, 0.556863, 0.556863, 1) +draw_center = false +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +border_color = Color(0.27451, 0.27451, 0.27451, 1) +corner_radius_top_left = 1 +corner_radius_top_right = 1 +corner_radius_bottom_right = 1 +corner_radius_bottom_left = 1 +anti_aliasing = false + +[sub_resource type="StyleBoxFlat" id="343"] +content_margin_left = 6.0 +content_margin_top = 5.0 +content_margin_right = 6.0 +content_margin_bottom = 4.0 +bg_color = Color(0.556863, 0.556863, 0.556863, 1) +draw_center = false +anti_aliasing = false + +[sub_resource type="Image" id="Image_j2oqp"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gv////7///88AAAAAAAAAAAAAAAA////UP////////9OAAAAAAAAAAAAAAAA////Qf////7///8ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8F////5P///////////////////////////////wAAAAAAAAAAAAAAAAAAAAD///8e/////////ygAAAAAAAAAAP///6f///+8AAAAAAAAAAD///8i/////////x0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0j////N////+f///9r///9J////XP///9r////2////x////ysAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5D////C////igAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9b///8w////Mv///9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5P/////////kwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////y////4UAAAAAAAAAAAAAAAD///+Y////wf///5IAAAAAAAAAAAAAAAD///+K////yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1/////K////CP////////9J////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAAAAAAD////Z////YgAAAAD///8E////2////9n///8MAAAAAP///17////YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9u////7////47///8g////yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////2f///zf///8U////nP////P////J////LP///xf///+z////wQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////ygAAAAD////LAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0v///zD///8y////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+a////pv///yb///+o////mgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///98////zgAAAAAAAAAAAAAAAP///9////9K////1wAAAAAAAAAAAAAAAP///9T///95AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0////1kAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5X///+cAAAAAP///0L///+w////oP///04AAAAA////mf///5MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8n///8i////jv////D///9tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9pAAAAAAAAAAD///8s/////////0QAAAAAAAAAAP///0j////zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////c/////////9UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///y7////+////GQAAAAD///8n////4gAAAAD////k////GwAAAAD///8d/////////yoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0n////j////BAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////UP///9UAAAAA////j////2r///9g////lwAAAAD////V////TgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0MAAAAAAAAAAP///yD/////////IAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7T///+t////swAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0n/////////SQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0n/////////SQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9////9hAAAAAP///27///+cAAAAAP///6D///9gAAAAAP///2f////bAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////vv///3YAAAAAAAAAAP//////////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAD///8P////+v///w/////b////Hv///xr////e////EP////r///8OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Sf////////9JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////IP////////8cAAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8h////9f///x3////1////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////tP///63///+zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////tP///63///+zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////kf///6oAAAAA////tv///1UAAAAA////W////6QAAAAA////sP///4wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zL////z////EAAAAAAAAAAA/////////0n///8I////CP///wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////H////X////9IAAAAAAAAAAP///9L///9h////xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+0////rf///7MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///8g/////////xwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4r///+tAAAAAP///67///+JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yH////1////Hf////X///8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yH////1////Hf////X///8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9D////7////wn////y////EQAAAAD///8X////5v///wX////y////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////p///////////////////////////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4P////E////hgAAAAAAAAAA////i////8f///9/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////If////X///8d////9f///yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///yD/////////HAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8I////7P///1QAAAAA////VP///+z///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////iv///60AAAAA////rv///4kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////iv///60AAAAA////rv///4kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wT////v////Z////8gAAAAAAAAAAAAAAAD////R////W////+r///8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD////6////Kv///wj///8I////CP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Pv////////86AAAAAAAAAAD///9E/////////zoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+K////rQAAAAD///+u////iQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////IP////////8cAAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1/////y////CQAAAAD///8I////8f///18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wj////s////VAAAAAD///9U////7P///wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wj////s////VAAAAAD///9U////7P///wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6b////J////gQAAAAAAAAAAAAAAAP///4z////H////ngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////kf///7EAAAAAAAAAAAAAAAAAAAAA/////////0n///8I////CP///wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////CP///+z///9UAAAAAP///1T////s////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yv//////////////////////////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////X/////L///8JAAAAAP///wj////x////XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////X/////L///8JAAAAAP///wj////x////XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////V/////////87AAAAAAAAAAAAAAAA////R/////////9PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xH////0////QAAAAAAAAAAAAAAAAAAAAAD//////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9f////8v///wkAAAAA////CP////H///9fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zX////9////J////wj///8I////CP///yX////9////NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////K///////////////////////////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////K///////////////////////////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8r//////////////////////////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////oP///68AAAAAAAAAAAAAAAAAAAAAAAAAAP///7D///+fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Nf////3///8n////CP///wj///8I////Jf////3///80AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Nf////3///8n////CP///wj///8I////Jf////3///80AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///81/////f///yf///8I////CP///wj///8l/////f///zQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xP////3////PwAAAAAAAAAAAAAAAAAAAAAAAAAA////Q/////f///8TAAAAAAAAAAAAAAAAAAAAAAAAAAD///+g////rwAAAAAAAAAAAAAAAAAAAAAAAAAA////sP///58AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+g////rwAAAAAAAAAAAAAAAAAAAAAAAAAA////sP///58AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6D///+vAAAAAAAAAAAAAAAAAAAAAAAAAAD///+w////nwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////E/////f///8/AAAAAAAAAAAAAAAAAAAAAAAAAAD///9D////9////xMAAAAAAAAAAAAAAAAAAAAA////E/////f///8/AAAAAAAAAAAAAAAAAAAAAAAAAAD///9D////9////xMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8T////9////z8AAAAAAAAAAAAAAAAAAAAAAAAAAP///0P////3////EwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9J/////////0kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+n///+lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+n////6f///xQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7T///+t////swAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+3////j////wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP///+Q////tgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8h////9f///x3////1////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xb////7////QgAAAAAAAAAAAAAAAAAAAAD///9G////+////xYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4r///+tAAAAAP///67///+JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9J/////////0kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9J/////////0kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7b///+XAAAAAAAAAAAAAAAAAAAAAP///5v///+1AAAAAAAAAAAAAAAAAAAAAAAAAAD///8K////1v///3oAAAAAAAAAAAAAAAAAAAAA////bv///9b///8KAAAAAAAAAAAAAAAAAAAAAP///5H////f////2////44AAAAAAAAAAP///yD////k////DgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8I////7P///1QAAAAA////VP///+z///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7T///+t////swAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7T///+t////swAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////E////6H////6AAAAAAAAAAAAAAAA////IP///+T///8OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////n///8RAAAAAAAAAAAAAAAAAAAAAP///wb////r/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////Wf///+n///8DAAAAAAAAAAD///8E////6////1gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8t////8////0EAAAAAAAAAAP///zf////w////LAAAAAAAAAAAAAAAAAAAAAAAAAAA////KP///wP///8s////4wAAAAAAAAAA////pP///28AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1/////y////CQAAAAD///8I////8f///18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8h////9f///x3////1////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8h////9f///x3////1////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+o////W/////YAAAAAAAAAAAAAAAD///+k////bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////yP///2kAAAAAAAAAAAAAAAAAAAAA////VP///8b/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///8K////8v///0IAAAAAAAAAAP///0T////y////CQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9m////6P///xn///8T////4f///2YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////wf///+v///9kAAAAAP///zH////c////BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yv//////////////////////////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4r///+tAAAAAP///67///+JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4r///+tAAAAAP///67///+JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////AAAAAAAAAAA////Mf///9z///8GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////94////yAAAAAAAAAAAAAAAAAAAAAD///+2////bf////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+g////lwAAAAAAAAAA////mf///6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+o////wv///7b///+oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///+0AAAAA////uv///1kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zX////9////J////wj///8I////CP///yX////9////NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8I////7P///1QAAAAA////VP///+z///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8I////7P///1QAAAAA////VP///+z///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////8AAAAAAAAAAD///+6////WQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0P////f////JwAAAAAAAAAA////G////8z///9C/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0T////p////A////wP////q////QwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///w3////k////6v///w4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////HQAAAAD///8p////4////0X////N////Af///1v////6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////oP///68AAAAAAAAAAAAAAAAAAAAAAAAAAP///7D///+fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1/////y////CQAAAAD///8I////8f///18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1/////y////CQAAAAD///8I////8f///18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////wAAAAA////Rf///83///9/////2P///+H///9vAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RP///4P///+FAAAAAAAAAAD///97////bP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Av///+X///9C////Qf///+T///8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Nf////H////1////QgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////J////2////9P///9N////zf///0T///8m////oP////YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xP////3////PwAAAAAAAAAAAAAAAAAAAAAAAAAA////Q/////f///8TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yv//////////////////////////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yv//////////////////////////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////P///wH////N////RP///zn///8J////EP////EAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9E////Jf///+H///8C////Af///9X///8R////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////i////4////+R////igAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wj////X////a////3X////f////DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1r///+5////B////7z///8Y////+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zX////9////J////wj///8I////CP///yX////9////NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zX////9////J////wj///8I////CP///yX////9////NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Wv///7kAAAAAAAAAAAAAAAD///9H////twAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAA////xv///0P///9A////qAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8v////1v///9n///8uAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////jv///7v///8B////A////8v///+WAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8G////3P///zD///+V////VAAAAAD////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////oP///68AAAAAAAAAAAAAAAAAAAAAAAAAAP///7D///+fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////oP///68AAAAAAAAAAAAAAAAAAAAAAAAAAP///7D///+fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wb////c////MAAAAAAAAAAA////Of///7////8TAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAD///9o////of///6P///9FAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////R////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///z7////u////HQAAAAAAAAAA////Lv////n///9BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3D///+jAAAAAP///9f////Y////2P////////+2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xP////3////PwAAAAAAAAAAAAAAAAAAAAAAAAAA////Q/////f///8TAAAAAAAAAAAAAAAAAAAAAP///xP////3////PwAAAAAAAAAAAAAAAAAAAAAAAAAA////Q/////f///8TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////cP///6MAAAAAAAAAAP///0L///+p////DQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAP///xH////t////1////wIAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8L////3f///18AAAAAAAAAAAAAAAAAAAAA////g////97///8LAAAAAAAAAAAAAAAAAAAAAAAAAAD///8O////5f///yAAAAAAAAAAAAAAAAAAAAAA/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///w7////l////IAAAAAAAAAAA////9////9v////Y////2P///zYAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAP///6v///+BAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8/////3f///9r///83AAAAAAAAAAD///8b////4f///w4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8r///9C////Sf///8EAAAAAAAAAAP///57///9uAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9f///wv///8M////8QAAAAD///8s////2v///wYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////z////C////wz////yAAAAAP///7X///9YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xP///+h////+gAAAAAAAAAAAAAAAP///yD////k////DgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9J////tP///7v///+7////tP///0cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////////9v///9L///9+////CQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///x8AAAAAAAAAAAAAAAAAAAAAAAAAAP///xT////5////PAAAAAAAAAAAAAAAAP///zj////6////FQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8T///9C////Sf///8X///9A////zP///0H////d////2v///zcAAAAAAAAAAAAAAAAAAAAA////qP///1v////2AAAAAAAAAAAAAAAA////pP///28AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////g////5v///8TAAAAAAAAAAD///8V////m////38AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Sf///7T///+7////u////7T///9HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////g////9n////4////2f///0f///9x////6P///+r///+X////CgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yv///+l////5f///+v////c////if///w4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8g////T////83////K////CgAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///5v////l////+f///+D///+e////9P///xoAAAAAAAAAAAAAAAAAAAAAAAAAAP///6n///+cAAAAAAAAAAAAAAAA////l////60AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Ov///9v////c////Pf///8r///9C////yv///0L///9J////wQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////wAAAAAAAAAAP///zH////c////BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0v///+oAAAAAP/////////x////5v///3UAAAAA////m////0cAAAAAAAAAAAAAAAAAAAAAAAAAAP///4P///+b////EwAAAAAAAAAA////Ff///5v///9/AAAAAAAAAAAAAAAAAAAAAAAAAAD///9Z////Nf///xH///9m////9v///9j///8s////Hv///8T///+MAAAAAAAAAAAAAAAAAAAAAAAAAAD///9R////2////1b///8IAAAAAP///xb///+Y////0v///w0AAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAA////DP///97///98AAAAAAAAAAAAAAAAAAAAAP///xT////h////r////y////8O////M/////L////i////DgAAAAAAAAAAAAAAAAAAAAAAAAAA////RP////L///8KAAAAAP///wf////v////SwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9Y////tgAAAAD////1////C////wz////xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////AAAAAAAAAAA////uv///1kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////t////xQAAAAA/////////xj///8l/////v///wr///8V////tAAAAAAAAAAAAAAAAAAAAAD///9L////qAAAAAD///8e////wP///+////+yAAAAAP///5v///9HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wT////9////ZgAAAAAAAAAA////VP///+EAAAAAAAAAAAAAAAAAAAAA////IP///+L///8eAAAAAAAAAAAAAAAAAAAAAAAAAAD///+k////hQAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////ev///9QAAAAAAAAAAAAAAAAAAAAA////jf///9j///8CAAAAAAAAAAD///96////3f///9X///+AAAAAAAAAAAAAAAAAAAAAAAAAAAD///8B////3v///14AAAAA////Vv///+b///8DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Bv///9r///8uAAAAAP////P///8L////DP////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////8AAAAAP///0X////N////Af///1v////6AAAAAAAAAAAAAAAAAAAAAAAAAAD///+8AAAAAAAAAAD/////////U////3f////f////AgAAAAD///+7AAAAAAAAAAAAAAAAAAAAAP///7f///8UAAAAAP///7L///+L////Av///yAAAAAA////Ff///7QAAAAAAAAAAAAAAAAAAAAA////HP///6b////h////4f///////////////////////////////gAAAAAAAAAAAAAAAAAAAAD///+Q////dwAAAAD///8l////xv///+T////g////HP///yf////aAAAAAAAAAAAAAAAAAAAAAP//////////////////////////AAAAAAAAAAD///9Q////9wAAAAAAAAAAAAAAAAAAAAD////Z////dwAAAAAAAAAA////LP////f///8+////d////9IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///97////vgAAAAD///+1////iAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9v////oAAAAAAAAAAA////xf///0H///9J////xQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////z///8B////zf///0T///8m////oP////YAAAAAAAAAAAAAAAAAAAAAAAAAAP///7wAAAAAAAAAAP////////+3////6v///ysAAAAAAAAAAP///7sAAAAAAAAAAAAAAAAAAAAA////vAAAAAAAAAAA////8P///yYAAAAAAAAAAAAAAAAAAAAA////uwAAAAAAAAAAAAAAAAAAAAD///+9////rf///w7///8C/////////1f///8I////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAP///9j///8qAAAAAP///77///9qAAAAAP////n///8X////Av////gAAAAAAAAAAAAAAAAAAAAA////CP////////9J////CP///wgAAAAAAAAAAP///1L////0AAAAAAAAAAAAAAAAAAAAAP////j///9WAAAAAP///wT////M////jwAAAAD///9V////9gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xr////6////K/////v///8nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Dv///+P///8dAAAAAAAAAAD///86////2////9z///89AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1r///+5////B////7z///8Y////+wAAAAAAAAAAAAAAAAAAAAAAAAAA////t////xMAAAAA/////////xj///9f////mQAAAAD///8U////tAAAAAAAAAAAAAAAAAAAAAD///+8AAAAAAAAAAD////w////JQAAAAAAAAAAAAAAAAAAAAD///+7AAAAAAAAAAAAAAAAAAAAAP////X///9MAAAAAP///yH/////////hAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9////woAAAAA////9f///x////8M/////////wb///8R////6wAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////gv///80AAAAAAAAAAAAAAAAAAAAA////+P///1UAAAAA////fP///9n///8JAAAAAP///1b////3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7L///+6////xQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8G////3P///zD///+V////VAAAAAD////8AAAAAAAAAAAAAAAAAAAAAAAAAAD///9N////pwAAAAD/////////GP///wH////C////OP///5v///9JAAAAAAAAAAAAAAAAAAAAAP///7f///8TAAAAAP///7H///+K////Av///xQAAAAA////FP///7QAAAAAAAAAAAAAAAAAAAAA////2P///4v///8X////pv///8b////w////V////yH///87////UgAAAAAAAAAAAAAAAAAAAAD////1////DwAAAAD////f////Pv///0b////5////Fv///2f///+qAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAP///xb////o////cwAAAAAAAAAAAAAAAAAAAAD////Z////eP///y3////2////OQAAAAAAAAAA////eP///9MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Tf////////9kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3D///+jAAAAAP///9f////Y////2P////////+2AAAAAAAAAAAAAAAAAAAAAAAAAAD///+H////p////xMAAAAAAAAAAP///xT///+o////gwAAAAAAAAAAAAAAAAAAAAAAAAAA////Tf///6cAAAAA////Hv///7v////v////1wAAAAD///+b////SQAAAAAAAAAAAAAAAAAAAAD///9F////4f////H///+U////BP///3L////h////+////+D///9pAAAAAAAAAAAAAAAAAAAAAP///87///9AAAAAAP///1L////g////2P///0f////P////1f///yIAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////Cf///xz///9c////3v///77///8GAAAAAAAAAAAAAAAAAAAAAP///4/////W////zf///4kAAAAAAAAAAP///wP////Z////gwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9J////9f///w0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8O////5f///yAAAAAAAAAAAAAAAAAAAAAA/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9N////t////7z///+8////t////0sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////h////6f///8TAAAAAAAAAAD///8U////qP///4MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////c////7YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////////8v///8r///9w////BQAAAAAAAAAAAAAAAAAAAAAAAAAA////Fv///+b////3////Nf///w3///8r////uP///9j///8OAAAAAAAAAAAAAAAAAAAAAP///wP///8M////J////9T///+LAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Tf///7f///+8////vP///7f///9LAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8F////vv///6z///8sAAAAAAAAAAD///8W////WQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8V////8P///6v////l////+v///+T///+U////FAAAAAAAAAAAAAAAAAAAAAAAAAAA////HP////j////w////nv///wcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8F////cf///8z////v////7f///93///+ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///27////v////jv///yD////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yf///yL///+O////8P///20AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xX////6////NgAAAAAAAAAAAAAAAP///zf////5////FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+n///+lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///5v////l////+v///+T///+W////FQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///63///+SAAAAAAAAAAAAAAAA////lv///6oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+3////j////wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////W////MP///zL////UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xT////p////pQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xT////h////sP///y////8O////Lf///63////b////DwAAAAAAAAAAAAAAAAAAAAAAAAAA////S////+r///8EAAAAAP///wb////t////RwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9L///8w////Mv///9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////t////4////8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zv////O////9v///9H///89AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9b///8w////Mv///9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+T/////////5MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xT////p////pQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////jf///9r///8DAAAAAAAAAAAAAAAA////Av///9n///+FAAAAAAAAAAAAAAAAAAAAAAAAAAD///8D////5f///0sAAAAA////Uv///+H///8CAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////+f///zwAAAAAAAAAAAAAAAD///84////+v///xUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////3P///4j///8S////i////9sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0v///zD///8y////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////mv///6b///8m////qP///5oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////t////4////8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////Z////dwAAAAAAAAAAAAAAAAAAAAAAAAAA////eP///9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+H////pgAAAAD///+v////gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+p////nAAAAAAAAAAAAAAAAP///5f///+tAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////+f///zwAAAAAAAAAAAAAAAD///84////+v///xUAAAAAAAAAAAAAAAAAAAAA////EP///+////9fAAAAAAAAAAAAAAAA////WP///+7///8PAAAAAAAAAAAAAAAAAAAAAAAAAAD////z////SwAAAAD///9W////6wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////j///9WAAAAAAAAAAAAAAAAAAAAAAAAAAD///9W////9wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yX////x////E/////b///8eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0T////y////CgAAAAD///8H////7////0sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+p////nAAAAAAAAAAAAAAAAP///5f///+tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////fv///9T///8BAAAAAAAAAAD////Q////fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6L////C////R////+b///9qAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8Z////m////+X////6////5P///5b///8VAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///5v////l////+v///+T///+W////FQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xn///+b////5f////r////k////lv///xUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////+P///1YAAAAAAAAAAAAAAAAAAAAAAAAAAP///1b////3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8P///+Y////uQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Af///97///9eAAAAAP///1b////m////AwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0T////y////CgAAAAD///8H////7////0sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8O////7v///00AAAAA////Sv///+z///8NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Lf////z////+////VwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+H///+w////L////w7///8t////rf///9v///8PAAAAAAAAAAAAAAAAAAAAAP///xT////h////sP///y////8O////Lf///63////b////DwAAAAAAAAAAAAAAAAAAAAD///8U////4f///7D///8v////Dv///y3///+t////2////w8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////Y////eAAAAAAAAAAAAAAAAAAAAAAAAAAA////eP///9MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Yf////z///9VAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////e////74AAAAA////tf///4gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Af///97///9eAAAAAP///1b////m////AwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///97////xAAAAAD////D////dwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zv////u////kf///93///+m////AgAAAAD///9s////0gAAAAAAAAAAAAAAAAAAAAD///+N////2v///wMAAAAAAAAAAAAAAAD///8C////2f///4UAAAAAAAAAAAAAAAAAAAAA////jf///9r///8DAAAAAAAAAAAAAAAA////Av///9n///+FAAAAAAAAAAAAAAAAAAAAAP///43////a////AwAAAAAAAAAAAAAAAP///wL////Z////hQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4z////b////AwAAAAAAAAAAAAAAAP///wP////Z////gwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8a////+v///yv////7////JwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////e////74AAAAA////tf///4gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///w3////s////ef///+n///8LAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0v///4IAAAAA////Hv///+D///+e////Gv///+b///9dAAAAAAAAAAAAAAAAAAAAAP///9n///93AAAAAAAAAAAAAAAAAAAAAAAAAAD///94////1AAAAAAAAAAAAAAAAAAAAAD////Z////dwAAAAAAAAAAAAAAAAAAAAAAAAAA////eP///9QAAAAAAAAAAAAAAAAAAAAA////2f///3cAAAAAAAAAAAAAAAAAAAAAAAAAAP///3j////UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+H///+7////LP///w3///8r////uP///9v///8PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+y////uv///8UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8a////+v///yv////7////JwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3f/////////cwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////0////UQAAAAAAAAAA////Iv///+P////z////nQAAAAAAAAAAAAAAAAAAAAAAAAAA////+P///1YAAAAAAAAAAAAAAAAAAAAAAAAAAP///1b////3AAAAAAAAAAAAAAAAAAAAAP////j///9WAAAAAAAAAAAAAAAAAAAAAAAAAAD///9W////9wAAAAAAAAAAAAAAAAAAAAD////4////VgAAAAAAAAAAAAAAAAAAAAAAAAAA////Vv////cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///5v////m////+v///+T///+W////FQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///03/////////ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+y////uv///8UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////If////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7r////I////Mv///yH///9b////3/////j///+MAAAAAAAAAAAAAAAAAAAAAAAAAAD////4////VgAAAAAAAAAAAAAAAAAAAAAAAAAA////Vv////cAAAAAAAAAAAAAAAAAAAAA////+P///1YAAAAAAAAAAAAAAAAAAAAAAAAAAP///1b////3AAAAAAAAAAAAAAAAAAAAAP////j///9WAAAAAAAAAAAAAAAAAAAAAAAAAAD///9W////9wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Sf////X///8NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///03/////////ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gv///6r////r////9////8////9f////Jv///+X///+EAAAAAAAAAAAAAAAAAAAAAP///9j///94AAAAAAAAAAAAAAAAAAAAAAAAAAD///94////0wAAAAAAAAAAAAAAAAAAAAD////Y////eAAAAAAAAAAAAAAAAAAAAAAAAAAA////eP///9MAAAAAAAAAAAAAAAAAAAAA////2P///3gAAAAAAAAAAAAAAAAAAAAAAAAAAP///3j////TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8Z////m////+X////6////5P///5b///8WAAAAAAAAAAAAAAAAAAAAAAAAAAD///8D////DP///yf////U////iwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Sf////X///8NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////jP///9v///8DAAAAAAAAAAAAAAAA////A////9n///+DAAAAAAAAAAAAAAAAAAAAAP///4z////b////AwAAAAAAAAAAAAAAAP///wP////Z////gwAAAAAAAAAAAAAAAAAAAAD///+M////2////wMAAAAAAAAAAAAAAAD///8D////2f///4MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+H///+w////L////w7///8t////rf///93///8QAAAAAAAAAAAAAAAAAAAAAP///xz////4////8P///57///8HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8D////DP///yf////U////iwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////4f///7v///8s////Df///yv///+4////2////w8AAAAAAAAAAAAAAAAAAAAA////FP///+H///+7////LP///w3///8r////uP///9v///8PAAAAAAAAAAAAAAAAAAAAAP///xT////h////u////yz///8N////K////7j////b////DwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+N////2v///wMAAAAAAAAAAAAAAAD///8C////2f///4UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xz////4////8P///57///8HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8Z////m////+b////6////5P///5b///8VAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///5v////m////+v///+T///+W////FQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xn///+b////5v////r////k////lv///xUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////p////+n///8UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9n///93AAAAAAAAAAAAAAAAAAAAAAAAAAD///94////1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8D////kP///7YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////+P///1YAAAAAAAAAAAAAAAAAAAAAAAAAAP///1b////3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////4////VgAAAAAAAAAAAAAAAAAAAAAAAAAA////Vv////EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xn///+b////5f////r////k////lv///xUAAAAAAAAAAAAAAAAAAAAAAAAAAP///9j///94AAAAAAAAAAAAAAAAAAAAAAAAAAD///94////0QAAAAAAAAAAAAAAAAAAAAD///8Q////7////18AAAAAAAAAAAAAAAD///9Y////7v///w8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///8G////dP///87////1////9P///9X///9wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////4f///7D///8v////Dv///y3///+t////2////w8AAAAAAAAAAAAAAAAAAAAA////jP///9v///8DAAAAAAAAAAAAAAAA////A////9n///99AAAAAAAAAAAAAAAAAAAAAAAAAAD///9+////1P///wEAAAAAAAAAAP///9D///98AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///5v////l////+v///+T///+W////FQAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA////Bv///8H////N////Rv///xD///8X////Tv///0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8Z////6gAAAAD///8V////5gAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////////9v///9L///9+////CQAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAD///+g////wf///wgAAAAAAAAAAAAAAAAAAAAA/////P///0IAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///43////a////AwAAAAAAAAAAAAAAAP///wL////Z////hQAAAAAAAAAAAAAAAAAAAAD///8U////4f///7v///8s////Df///yv///+4////0////wwAAAAAAAAAAAAAAAAAAAAAAAAAAP///w7////u////TQAAAAD///9K////7P///w0AAAAAAAAAAAAAAAAAAAAAAAAAAP///xT////h////sP///y////8O////Lf///63////b////DwAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD///93////6////w8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0z///+3AAAAAP///0j///+zAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8g////T////83////K////CgAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAA////hf///87///8OAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////2f///3cAAAAAAAAAAAAAAAAAAAAAAAAAAP///3j////UAAAAAAAAAAAAAAAAAAAAAAAAAAD///8Z////m////+b////8/////////63///8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3v////EAAAAAP///8P///93AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////jf///9r///8DAAAAAAAAAAAAAAAA////Av///9n///+FAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP///9H///+EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////f////4UAAAAA////e////4EAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAA////DP///97///98AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAP///2j////Z////FgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////4////VgAAAAAAAAAAAAAAAAAAAAAAAAAA////Vv////cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+1////zv///wMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Df///+z///95////6f///wsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////Z////dwAAAAAAAAAAAAAAAAAAAAAAAAAA////eP///9QAAAAAAAAAAAAAAAAAAAAA//////////////////////////////////////////8AAAAAAAAAAAAAAAAAAAAA////9v///1oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8P////D////8////8/////D////8////8/////AAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////ev///9QAAAAAAAAAAAAAAAAAAAAA/////////0T///9P////4f///x8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////j///9WAAAAAAAAAAAAAAAAAAAAAAAAAAD///9W////9wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yb////x////sf///wkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////d/////////9zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////j///9WAAAAAAAAAAAAAAAAAAAAAAAAAAD///9W////9wAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8I////CP///wj///9J/////wAAAAAAAAAAAAAAAAAAAAD////3////VgAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+T///8cAAAAAP///+X///8ZAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9Q////9wAAAAAAAAAAAAAAAAAAAAD/////////cv////X///9sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////2P///3gAAAAAAAAAAAAAAAAAAAAAAAAAAP///3j////TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zb///+v////BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8h/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////+P///1YAAAAAAAAAAAAAAAAAAAAAAAAAAP///1b////3AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP///9X///97AAAAAAAAAAAAAAAA////CP///0n/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///8c////4wAAAAD///8a////4gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///1L////0AAAAAAAAAAAAAAAAAAAAAP////////+g////T////+v///8bAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+M////2////wMAAAAAAAAAAAAAAAD///8D////2f///4MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////Y////eAAAAAAAAAAAAAAAAAAAAAAAAAAA////eP///9MAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA////g////+P///8IAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA////8P////P////8////8P////P////8////8P////AAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////gv///80AAAAAAAAAAAAAAAAAAAAA/////////0QAAAAA////lP///73///8BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////P///0kAAAAAAAAAAAAAAAAAAAAA////Sv////sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xT////h////u////yz///8N////K////7j////b////DwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4z////b////AwAAAAAAAAAAAAAAAP///wP////Z////gwAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD///8O////2P///8L///89////D////w3///9f/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////iP///3oAAAAA////gf///3sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAP///xb////o////cwAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAD///8K////2////3YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////W////ewAAAAAAAAAAAAAAAAAAAAD///+A////1QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xn///+b////5v////r////k////lv///xUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+H///+7////LP///w3///8r////uP///9v///8PAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///8T////k////+L////8////9v///9r///+oAAAAAAAAAAAAAAAAAAAAAAAAAAD///+4////RwAAAAD///+0////SQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////Cf///xz///9c////3v///77///8GAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAD///85////9////zMAAAAAAAAAAAAAAAAAAAAAAAAAAP///1T////y////X////xn///8Y////YP////P///9bAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///5v////m////+v///+T///+W////FQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+f///8VAAAAAP///+f///8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////////8v///8r///9w////BQAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAD///+H////2f///wsAAAAAAAAAAAAAAAAAAAAAAAAAAP///03////M////9/////b////I////UwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/////////V////BQAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///+3////m////+j////m////mv///7UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xT////p////pQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////1v///zD///8y////1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////+T///95AAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAP///5////+0////Ev///w////+l////nQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////t////4////8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+n////6f///xQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////k/////////+TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////S////MP///zL////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8c////9P///ygAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8T////9////y0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////pP///7wAAAAAAAAAAAAAAAD///+9////owAAAAAAAAAAAAAAAAAAAAD/////////Yv////L///8hAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////5f///yMAAAAAAAAAAP///w7////rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP///+Q////tgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5r///+m////Jv///6j///+aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///27////v////jv///yD////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5z///+1////qgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+h////lwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////DP///wIAAAAA////wwAAAAD///8B////DAAAAAAAAAAAAAAAAAAAAAD///8O////3v///2IAAAAA////Y////93///8NAAAAAAAAAAAAAAAAAAAAAP////////8+////jv///7UAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAD////n////IgAAAAAAAAAA////Df///9sAAAAAAAAAAAAAAAAAAAAAAAAAAP////z///9CAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////z///9CAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yf///yL///+O////8P///20AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8n////3f///wf////T////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zb////z////DgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///98////6////6X////Q////pf///+r///+BAAAAAAAAAAAAAAAAAAAAAAAAAAD///84////6v///zD////q////NwAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0P///8M////4////1QAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAP///57///+x////EP///w3///+i////mgAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA/////P///0IAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA/////P///0IAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6z///9lAAAAAP///1n///+0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8z///9sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///w7///8o////dP////T///9y////KP///w8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9+////9v///30AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAD///9T////5f///w3///9E/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////tf///53////q////6P///5////+4AAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD/////////1f///wUAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD///80////3f///wQAAAAA////Av///9n///84AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Yf///9UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xf////k////Vf///+P///8XAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5/////k////ngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAD///+1////kf///0D/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP/////////k////eQAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP///7z///9hAAAAAAAAAAAAAAAA////X////70AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8J////7f///0EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Tv///7IAAAAA////rP///1IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9N////4////xn////k////TAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAP///yH////y////Zv////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA/////////2L////y////IQAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+N////qwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////E////+f///9UAAAAAP///1X////n////EgAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAP///3n////o/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD/////////Pv///47///+1AAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yT////5////GgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+p////uQAAAAAAAAAAAAAAAP///7r///+oAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAA////Bf///9X/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////z///9JAAAAAAAAAAAAAAAAAAAAAP///0r////7AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP////z///9JAAAAAAAAAAAAAAAAAAAAAP///0r////7AAAAAAAAAAAAAAAAAAAAAP////////9D////DP///+P///9UAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7j///+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////1v///3sAAAAAAAAAAAAAAAAAAAAA////gP///9UAAAAAAAAAAAAAAAAAAAAA/////P///0kAAAAAAAAAAAAAAAAAAAAA////Sv////sAAAAAAAAAAAAAAAAAAAAA/////P///0kAAAAAAAAAAAAAAAAAAAAA////Sv////sAAAAAAAAAAAAAAAAAAAAA////1v///3sAAAAAAAAAAAAAAAAAAAAA////gP///9UAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAA////U////+X///8N////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Tf///+X///8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9U////8v///1////8Z////GP///2D////z////WwAAAAAAAAAAAAAAAAAAAAD////W////ewAAAAAAAAAAAAAAAAAAAAD///+A////1QAAAAAAAAAAAAAAAAAAAAD////W////ewAAAAAAAAAAAAAAAAAAAAD///+A////1QAAAAAAAAAAAAAAAAAAAAD///9U////8v///1////8Z////GP///2D////z////WwAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAA////tf///5H///9A/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9N////zP////f////2////yP///1MAAAAAAAAAAAAAAAAAAAAAAAAAAP///1T////y////X////xn///8Y////YP////P///9bAAAAAAAAAAAAAAAAAAAAAP///1T////y////X////xn///8Y////YP////P///9bAAAAAAAAAAAAAAAAAAAAAAAAAAD///9N////zP////f////2////yP///1MAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAD///8h////8v///2b/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///03////M////9/////b////I////UwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///03////M////9/////b////I////UwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAD///95////6P////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////KQAAAAAAAAAAAAAAAP///yn///8BAAAAAAAAAAAAAAAAAAAAAP////////////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAP///wX////V/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yP////r////RgAAAAD///9C////6v///ysAAAAAAAAAAAAAAAAAAAAA////CP///wj///8n/////////yr///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////X////AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6j///8FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///z7////r////e////+v///9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAD///8J////x////5wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3T/////////eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yX///+8////9P///+f///+n////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88////Av///6////+z////AwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8/////6////3f////r////RQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////xv///6n///8W////KP///2AAAAAAAAAAAAAAAAAAAAAAAAAAAP//////////////+////+D///+V////EQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////qP///wUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///5P////k////+P///9////+MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9c///////////////////////////////0AAAAAAAAAAAAAAAAAAAAAP///6T//////////////////////////////6wAAAAAAAAAAAAAAAAAAAAA/////////zX///+S////x////woAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////If///+r///9CAAAAAP///z3////q////KQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////3////TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0n///8N////Nv///9P///+mAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///w7////Z////vP///zL///8R////Pf///10AAAAAAAAAAAAAAAAAAAAA////Df///6P////o/////////////////////wAAAAAAAAAAAAAAAAAAAAD///+/////jQAAAAAAAAAAAAAAAP///4P////EAAAAAAAAAAAAAAAAAAAAAP///wL///8I////CP///wj///8I////CP///wcAAAAAAAAAAAAAAAAAAAAA////Bf///wj///8I/////////w////8I////BQAAAAAAAAAAAAAAAAAAAAD/////////k/////////8rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IQAAAAAAAAAAAAAAAP///yMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9b///+XAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAA////W////+0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////hP///+X///8JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+V////////////////////2P///xj////YAAAAAAAAAAAAAAAAAAAAAP///z3////0////EwAAAAD///8H////6v///04AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////+s////pv///7f///8BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Sv////n////B////OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAD///9d////5wAAAAAAAAAAAAAAAAAAAAAAAAAA////pP//////////////////////////////rAAAAAAAAAAAAAAAAAAAAAD////V////gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+X////////////////////UAAAAAP///9QAAAAAAAAAAAAAAAAAAAAAAAAAAP///7r///+DAAAAAP///2H////W////AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////X////AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6j///8FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zz///8N////3////3EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Jv///6/////9////XQAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0n///8N////N////9T///+AAAAAAAAAAAAAAAAAAAAAAAAAAAD///8F////CP///wj/////////D////wj///8FAAAAAAAAAAAAAAAAAAAAAP////j///9YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////P///////////////////9QAAAAA////1AAAAAAAAAAAAAAAAAAAAAAAAAAA////OP///+////8O////z////2EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAD///88////9v///zEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4v////fAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////////////////////bgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////+P///1cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////x////////////////////1AAAAAD////UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////tf///7P////k////BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///+G////2P///wsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Tv////IAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAP///8r///90AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Bf///wj///8I////sP///w3///8I////BQAAAAAAAAAAAAAAAAAAAAD////Y////egAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7r////////////////////UAAAAAP///9QAAAAAAAAAAAAAAAAAAAAA////CP//////////////////////////////HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP///////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xT///9f////Ff///xz///+0////sgAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAA////Uf///+v///8MAAAAAAAAAAAAAAAAAAAAAAAAAAD///+k//////////////////////////////+sAAAAAAAAAAAAAAAAAAAAAP///47////f////BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////L////+H//////////////9QAAAAA////1AAAAAAAAAAAAAAAAAAAAAAAAAAA////CP///wj/////////Sf///wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8C////CP///wj///8I////CP///w//////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Ef///8P////z////8P///67///8YAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAD///8B////1f///3oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Ff///+P////F////Nf///w7///8h////XQAAAAAAAAAAAAAAAAAAAAAAAAAA////CP///zP///80////1AAAAAD////UAAAAAAAAAAAAAAAAAAAAAP///wj//////////////////////////////xwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1H////j////AwAAAAAAAAAAAAAAAAAAAAD///////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////CP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAD///9d////7v///w8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////G////53////m/////f////L///+/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////UAAAAAP///9QAAAAAAAAAAAAAAAAAAAAAAAAAAP///wj///8I/////////0n///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////u////30AAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8F////qAAAAAAAAAAAAAAAAAAAAAD///8o////wP///+b//////////////+b///8SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+q////rgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9QAAAAA////1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yb////5////GAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9L////0f////b////J////LgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8P///9/AAAAAP///37////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xX////yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////1AAAAAD////UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////j////6kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////9n///80////Fv///7D////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9v///0MAAAAA////Q/////QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////////9////+P///+q////IwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////D////yv///2sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////UAAAAAP///9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wn////v////PwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////////////////////wAAAAAAAAAAAAAAAAAAAAD/////////aQAAAAAAAAAA////SP////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////S////k////xL///+T////zQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///13/////////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8P////Mv///73////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9QAAAAA////1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Y////9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0n///8I////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAP////////9DAAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zT////v////+////87///8xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8K////1P////L///8wAAAAAAAAAAAAAAAAAAAAAAAAAAD////0////9P////T////0////9P////T////0AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAA////Uf////UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////M////awAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////X///8iAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4D///+N////9v///zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAA////Bf///yX///+2////ngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP///////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAA////N/////P///8NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///27////v////jv///yD////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////vv//////////////6P///1cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8b////5////xT////+////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//////////////////////////////6P///8DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8C////CP///wj///8I////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAAAAAAD///+h////lwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yf///yL///+O////8P///20AAAAAAAAAAAAAAAAAAAAAAAAAAP///5X///+e////I////yP///9/////4wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6L///98AAAAAP////////8wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wz///8/////2f///5MAAAAAAAAAAAAAAAAAAAAA////NP///7P////x////7P///6n///8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////E/////f///8tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9P///zYAAAAAAAAAAP///zj////wAAAAAAAAAAAAAAAAAAAAAAAAAAD///81////5v///wsAAAAA/////////zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAD///9b////7gAAAAAAAAAAAAAAAAAAAAD///+k////g////yL///8m////v////7MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////k////+T////4////3////4wAAAAAAAAAAAAAAAAAAAAA////QP///////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0v////R////9v///8n///8uAAAAAAAAAAAAAAAAAAAAAAAAAAD////X////bgAAAAD///8K////pP///6sAAAAAAAAAAAAAAAAAAAAAAAAAAP///8T///+G////JP///yT/////////Tf///xsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAP///2H////lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9N////8gAAAAAAAAAAAAAAAAAAAAAAAAAA////Dv///9n///+8////Mv///xH///89////XQAAAAAAAAAAAAAAAAAAAAD///8C////CP///wj///8I////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////2f///zT///8W////sP///8IAAAAAAAAAAAAAAAAAAAAAAAAAAP///zj////N////5f///9////+b////EgAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///w////8+////3P///44AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///2n////VAAAAAAAAAAAAAAAAAAAAAAAAAAD///+E////5f///wkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9pAAAAAAAAAAD///9I////8wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////////////////P///93///+D////BwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8M////2////2cAAAAAAAAAAAAAAAAAAAAAAAAAAP///9X///+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0MAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////A////7D///+v////AQAAAAAAAAAAAAAAAAAAAAAAAAAA////+P///1gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////av////////////////////////9EAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+y////5P///+T////s/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wL///+h////wf///wkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////4////VwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9+////tv///yT///8k////JP///wkAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6H///+qAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8B////mv///8X///8MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9j///96AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yL///+o////5v////n///85AAAAAAAAAAAAAAAAAAAAAP///5L///+UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///86////9P///x0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAP///w7///+g////7f///+j///94AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5P////a////Mv///yT///8k////JP///w4AAAAAAAAAAAAAAAAAAAAA////jv///9////8GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////4////6f///8t////GP///wwAAAAAAAAAAAAAAAAAAAAA////pv///30AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////90////2f////b///+l////BwAAAAAAAAAAAAAAAAAAAAAAAAAA////Av///87///97AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAA////mP///8P///8l////PP///+L///9cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////////////////////////ZAAAAAAAAAAAAAAAAAAAAAD///8V////4////8X///81////Dv///yH///9dAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///33////S////AwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+0////8/////r////m////lv///w0AAAAAAAAAAAAAAAAAAAAA/////////9D///8o////KP///9v///+AAAAAAAAAAAAAAAAAAAAAAAAAAAD///9o////2////wcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////m////SAAAAAAAAAAA////Zf///8IAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///98////6f///+v///+X////CgAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8b////nf///+b////9////8v///78AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yP///3oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xP///8k////Fv///0H////Y////pAAAAAAAAAAAAAAAAAAAAAD/////////YgAAAAAAAAAA////cf///9UAAAAAAAAAAAAAAAAAAAAA////E////+3///9LAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////H///87AAAAAAAAAAD///9G////8QAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Wv///9f///8s////Hv///8T///+MAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////w////gf///9P////z////t////xsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1b////2AAAAAAAAAAAAAAAAAAAAAP////////9BAAAAAAAAAAD///9N////+QAAAAAAAAAAAAAAAAAAAAD///+Y////tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////s////6j///8O////H////73////7AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////H////YwAAAAAAAAAA////VP///+EAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////z////C////JP///xD///+u////sgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////W////+AAAAAAAAAAAAAAAAAAAAAA/////////0MAAAAAAAAAAP///0/////4AAAAAAAAAAAAAAAAAAAAAP////3////u////5P///+T////k////HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8e////uP////T////T////gf///+wAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+7//////////////////////////gAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////Rf////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8////0wAAAAAAAAAAP///z3////xAAAAAAAAAAAAAAAAAAAAAP///3j///8s////Ff///z/////b////hAAAAAAAAAAAAAAAAAAAAAD/////////ZQAAAAAAAAAA////dP///9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Av///4v////u////6////8b///9jAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///95////xgAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8P///1f///8I////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAP////T///9IAAAAAAAAAAD///9s/////wAAAAAAAAAAAAAAAAAAAAD///////////////3////n////kv///xEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////H////aQAAAAAAAAAA////Sf///+UAAAAAAAAAAAAAAAAAAAAA////rf///+7////5////2P///3v///8FAAAAAAAAAAAAAAAAAAAAAP/////////T////KP///yn////e////dgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9z////2////yr///9Z/////////2MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///87///9+AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////J////gwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////xP///6////8W////Nf///9n/////AAAAAAAAAAAAAAAAAAAAAP////////9J////Df///zj////V////pwAAAAAAAAAAAAAAAAAAAAD///8h////sf////D////w////sP///x8AAAAAAAAAAAAAAAAAAAAA////////////////////////////////AAAAAAAAAAAAAAAAAAAAAP///1/////l////Pv///yX////E////mAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////3b////c////9////5z///8GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8////9wAAAAAP///77///+8////yQAAAAAAAAAAAAAAAAAAAAD///8H////Bf///xP///+O////5P///xUAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1b////v////U////x3///82////UQAAAAAAAAAAAAAAAAAAAAD///8w////zv////j////R////TP////8AAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAP///1z////vAAAAAAAAAAAAAAAAAAAAAP///8j///+m////If///yP///+o////zQAAAAAAAAAAAAAAAAAAAAD///8k////JP///yT///8k////jP///8gAAAAAAAAAAAAAAAAAAAAAAAAAAP///33////q////7f///5////8OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8f///03///9C////zP///0z////vAAAAAAAAAAAAAAAAAAAAAP///zb////6////6f///67///8lAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///2T////h/////P///+T///9vAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAA////Yf///+UAAAAAAAAAAAAAAAAAAAAA////8////zwAAAAAAAAAAP///z7////zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP////g////WAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Rf///87////3////5P///4MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////v////Sf///8b///9I////T////+4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8I////BQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////EP///z/////b////kQAAAAAAAAAAAAAAAAAAAAD///+f////rf///wz///8M////s////5UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////V////+P///8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////o////Zf///w////8v////QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8v///+1////wwAAAAD///9y////ygAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////////////+sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA///////////////8////3////4T///8GAAAAAAAAAAAAAAAAAAAAAP///wf///+7////7v///+3///+Z////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////J////eQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////W////MP///zL////UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9b///+c////DwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////b/////////9b////Kv///93///9oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Uv///+j///9E////b////+7///8/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////PP////b///8TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9L///8w////Mv///9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP////v////x////h////wkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9g////y////+7////v////gv///wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Af///4n////v////7P///3sAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////Z////XQAAAAAAAAAA////af///9MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+v////mgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zf////O////9v///9P///9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////T////YP///yr////J////sQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////LQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////////////////////wAAAAAAAAAAAAAAAAAAAAD///9h////5////zH///80////6v///1IAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////T///86AAAAAAAAAAD///8/////8QAAAAAAAAAAAAAAAAAAAAAAAAAA////I/////z///8rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0v///5P///8R////hv///9wAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////P///9JAAAAAP///zr////1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9s////2//////////7////tgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////CP///wj///8I////CP///7T///+pAAAAAAAAAAAAAAAAAAAAAP///77///+BAAAAAAAAAAD///+D////tAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////uP///7D///8h////Jf///7n///+tAAAAAAAAAAAAAAAAAAAAAAAAAAD///+U////uwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////9////QAAAAAD///9J////9gAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////iv///+r///9h////f////74AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Yf////T///9g////HP///yf///86AAAAAAAAAAAAAAAAAAAAAP///03////B////9P///+////+1////JgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9B////9////yAAAAAAAAAAAAAAAAAAAAAA////5P///1MAAAAAAAAAAP///1P////lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8c////sP///+/////s////pP///xQAAAAAAAAAAAAAAAAAAAAA////Ef////T///9LAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAP///5v///+5AAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////TP///8T/////////VwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////R////iAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////kP///23///8o////I////6/////KAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Av///9D///+GAAAAAAAAAAAAAAAAAAAAAAAAAAD////3////QwAAAAAAAAAA////Q/////oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAA////8P///08AAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAD///8d////nP///+D/////////5f///3sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///2v////rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAP////j///9SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Uv////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9k////5////w0AAAAAAAAAAAAAAAAAAAAAAAAAAP////b///9DAAAAAAAAAAD///9H////9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAD////y////WAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///0X/////AAAAAAAAAAAAAAAAAAAAAP///8////+c////Lf////H///8w////QAAAAAAAAAAAAAAAAAAAAAD///8P////Wv///xn///8R////ev///9oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAA////+f///1EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Cv///zv////T////hwAAAAAAAAAAAAAAAAAAAAAAAAAA////Df///+j///9jAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////4f///1QAAAAAAAAAAP///1b////gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAP///4P////y////LwAAAAAAAAAAAAAAAAAAAAD////0////SAAAAAAAAAAA////bP////8AAAAAAAAAAAAAAAAAAAAA////6P///2sAAAAA////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///w/////C////8/////T////C////MwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAD////U////hAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////f///5X///8DAAAAAAAAAAAAAAAAAAAAAAAAAAD///+H////0P///wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+4////iAAAAAAAAAAA////iv///7sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+n///+lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAA////Af///7D////DAAAAAAAAAAAAAAAAAAAAAP///8T///+v////Fv///zX////Z/////wAAAAAAAAAAAAAAAAAAAAD///9H////4v///+P////2////KwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAP///2T////y////XP///xv///8l////TQAAAAAAAAAAAAAAAAAAAAAAAAAA////EP///x3///9Q////4f///50AAAAAAAAAAAAAAAAAAAAA////IP////f///9BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1b////s////Mv///zv////u////YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+3////j////wIAAAAAAAAAAAAAAAAAAAAAAAAAAP///6f////p////FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////k/////////+TAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////R/////cAAAAAAAAAAAAAAAAAAAAA////MP///87////4////0f///0z/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///8E////Pv////z////x////bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////Rf////8AAAAAAAAAAAAAAAAAAAAAAAAAAP///27////b//////////v///+1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9Z////8gAAAAAAAAAAAAAAAAAAAAD///+q////tP///wj///8I////CP///wgAAAAAAAAAAAAAAAAAAAAAAAAAAP///4H////u////7////4r///8BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////A////5D///+2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5r///+m////Jv///6j///+aAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAP///zr///9v////4wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8P///0z////vAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9IAAAAAAAAAAD///9s/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////LQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///13////lAAAAAAAAAAAAAAAAAAAAAP///////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3z////p////6////5f///8KAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAA////zv////L///9kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///99////O////xf////y////j////9gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////6////8W////Nf///93/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+B////MP///xj///9C////3P///44AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9a////1////yz///8e////xP///4wAAAAAAAAAAAAAAAAAAAAAAAAAAP///3z////p////6////5f///8KAAAAAAAAAAAAAAAAAAAAAP///1v////S////9f///9L///87AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///67////j////+v////7////E////MwAAAAAAAAAAAAAAAAAAAAAAAAAA////Pf///83////3////5P///4QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////vv////P////a////Zf////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6T////q////+f///93///+F////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8f///9jAAAAAAAAAAD///9U////4QAAAAAAAAAAAAAAAAAAAAD///9a////1////yz///8e////xP///4wAAAAAAAAAAAAAAAAAAAAA////Qv///zz///8S////kf///88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////f////e////xD///8z////QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////84AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////7v/////////////////////////+AAAAAAAAAAAAAAAAAAAAAP///8f///9jAAAAAAAAAAD///9U////4QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///89////+QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////T////0////9P////T////0////9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+r///91AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+n///+lAAAAAAAAAAAAAAAAAAAAAAAAAAD////w////V////wj///8I////CP///wgAAAAAAAAAAAAAAAAAAAAA////7v/////////////////////////+AAAAAAAAAAAAAAAAAAAAAP///yD///+u////6P////z/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Wf////b///+9////QgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+T/////////5MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Uf///9n////2////pf///wcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+3////j////wIAAAAAAAAAAAAAAAAAAAAAAAAAAP///8n///+DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////w////V////wj///8I////CP///wgAAAAAAAAAAAAAAAAAAAAA////wP///7z///8t////R/////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////GP///4n////4////gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////mv///6b///8m////qP///5oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/////////P////KP///yj////b////gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Vv///+////9T////Hf///zb///9RAAAAAAAAAAAAAAAAAAAAAP///8n///+DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////2////TAAAAAD///9X/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///13////xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8H////of////b////X////Tv////8AAAAAAAAAAAAAAAAAAAAA/////////2IAAAAAAAAAAP///3H////VAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////ZP///+H////8////5P///28AAAAAAAAAAAAAAAAAAAAA////Vv///+////9T////Hf///zb///9RAAAAAAAAAAAAAAAAAAAAAP///9z///+D////G////8D/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8Q////Xf///xn///8S////jv///9IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAP///3/////f////Kv///yz////W/////wAAAAAAAAAAAAAAAAAAAAD/////////QQAAAAAAAAAA////Tf////kAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////ZP///+H////8////5P///28AAAAAAAAAAAAAAAAAAAAA////U////+3////l////TP////gAAAAAAAAAAAAAAAAAAAAAAAAAAP///wf///+h////9v///9n///9x/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////NP///7sAAAAAAAAAAAAAAAAAAAAA////Av///4v////u////7v///4T///8BAAAAAAAAAAAAAAAAAAAAAP///w/////B////8/////T////B////LwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAA////2P///3QAAAAAAAAAAP///2r/////AAAAAAAAAAAAAAAAAAAAAP////////9DAAAAAAAAAAD///9P////+AAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////f////9////8q////LP///9f/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Jv///6r////W////WQAAAAAAAAAAAAAAAAAAAAD///9z////2////yr///8q////2////2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8CAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAD////5////TgAAAAAAAAAA////Rv////8AAAAAAAAAAAAAAAAAAAAA/////////2UAAAAAAAAAAP///3T////UAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////Y////dAAAAAAAAAAA////av////8AAAAAAAAAAAAAAAAAAAAA////Gv///5j////U////W////wIAAAAAAAAAAAAAAAAAAAAAAAAAAP///8////9wAAAAAAAAAAD///9x////yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////bv///+////+O////IP///8gAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAP////L///9NAAAAAAAAAAD///9C/////wAAAAAAAAAAAAAAAAAAAAD/////////0////yj///8p////3v///3YAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///0X/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////n///9OAAAAAAAAAAD///9G/////wAAAAAAAAAAAAAAAAAAAAD////z////tP///wYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8f///00AAAAAAAAAAP///03////uAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////J////Iv///47////w////bQAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////Rf////8AAAAAAAAAAAAAAAAAAAAA////1P///28AAAAAAAAAAP///2X/////AAAAAAAAAAAAAAAAAAAAAP////////92////3P////f///+c////BgAAAAAAAAAAAAAAAAAAAAD////0////SAAAAAAAAAAA////bP////8AAAAAAAAAAAAAAAAAAAAAAAAAAP///6f////p////FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8v///00AAAAAAAAAAP///0L/////AAAAAAAAAAAAAAAAAAAAAP///yn///+r////2P///1z///8DAAAAAAAAAAAAAAAAAAAAAAAAAAD////v////TgAAAAAAAAAA////T////+4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////T///9IAAAAAAAAAAD///9s/////wAAAAAAAAAAAAAAAAAAAAD///96////2v///yj///8l////zf////8AAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8T///+v////Fv///zX////Z/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////A////5D///+2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////lf////L////P////WP///xL///+FAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////U////bwAAAAAAAAAA////Zf////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8x////tf///9j///9cAAAAAAAAAAAAAAAAAAAAAP///8r///9yAAAAAAAAAAD///9y////ygAAAAAAAAAAAAAAAAAAAAD///+7////MwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9b////0v////X////S////OwAAAAAAAAAAAAAAAAAAAAAAAAAA////xP///6////8W////Nf///9n/////AAAAAAAAAAAAAAAAAAAAAP///wj///+l////9////9z///90/////wAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////MP///87////4////0f///0z/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+I////E////1j////T////9P///5cAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3r////a////KP///yX////O/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Of///74AAAAAAAAAAAAAAAAAAAAA////Y////9z///8q////Kv///93///9oAAAAAAAAAAAAAAAAAAAAAP///1n////W////qf///yUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0L///88////Ev///5H////PAAAAAAAAAAAAAAAAAAAAAAAAAAD///8w////zv////j////R////TP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////CP///6X////3////3P///1L/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8B////fv///+/////v////gv///wIAAAAAAAAAAAAAAAAAAAAAAAAAAP///wL///9b////0////5j///8ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Pf////kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9u////0f////b////J////LgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8G////sf////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g////rv///+j////8/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////9r///80////Fv///7D////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8D////XP///9f///+r////KQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8D///+8////Lf///0f/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////aQAAAAAAAAAA////SP////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////XP///9j///+0////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9v///0wAAAAA////V/////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////k/////////+TAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////Rf////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9DAAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///++////OQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////c////g////xv////A/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5r///+m////Jv///6j///+aAAAAAAAAAAAAAAAAAAAAAP////T///9IAAAAAAAAAAD///9s/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////p////+n///8UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///+z////aP///1X///+kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1P////t////5f///0z////4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////bv///+////+O////IP///8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////xP///6////8W////Nf///9n/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///8D////kP///7YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAP///0P////9////8P///yEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////J////Iv///47////w////bQAAAAAAAAAAAAAAAAAAAAAAAAAA////JP///8L////1////2////1sAAAAAAAAAAAAAAAAAAAAA///////////////9////5////5L///8RAAAAAAAAAAAAAAAAAAAAAP///wL///+L////7v///+7///+E////AQAAAAAAAAAAAAAAAAAAAAD///8w////zv////j////R////TP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////rv///0n///+1////mgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////87AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+9////sP///xz///89////MgAAAAAAAAAAAAAAAAAAAAD/////////Sf///w3///84////1f///6cAAAAAAAAAAAAAAAAAAAAA////c////9v///8q////Kv///9v///9oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8C////i////+7////u////hP///wEAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wr////j////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////3L////Z////9v///6X///8HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8C////i////+7////u////hP///wEAAAAAAAAAAAAAAAAAAAAAAAAAAP////b///9KAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAD///9b////7wAAAAAAAAAAAAAAAAAAAAD////P////cAAAAAAAAAAA////cf///8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3P////b////Kv///yr////b////aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////DP///6H////u////3P///7////+eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////z////yj///8o////2////4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////6f///6UAAAAAAAAAAAAAAAAAAAAAAAAAAP///9b///8w////Mv///9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3P////b////Kv///yr////b////aAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAP///2H////lAAAAAAAAAAAAAAAAAAAAAP////H///9NAAAAAAAAAAD///9N////7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////z////3AAAAAAAAAAAP///3H////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+O////0v///yf///8q////1v///9wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9iAAAAAAAAAAD///9x////1QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7f///+P////AgAAAAAAAAAAAAAAAAAAAAAAAAAA////0v///zD///8y////0QAAAAAAAAAAAAAAAAAAAAAAAAAA////1v///zD///8y////1AAAAAAAAAAAAAAAAAAAAAAAAAAA////z////3AAAAAAAAAAAP///3H////IAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Sf///xD///8/////2////5EAAAAAAAAAAAAAAAAAAAAA////7////04AAAAAAAAAAP///0/////uAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////x////TQAAAAAAAAAA////Tf///+4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+D///9iAAAAAAAAAAD///9g////9gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0MAAAAAAAAAAP///03////5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////S////MP///zL////RAAAAAAAAAAAAAAAAAAAAAAAAAAD////x////TQAAAAAAAAAA////Tf///+4AAAAAAAAAAAAAAAAAAAAA////+P/////////9/////P////wAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////P///9////+E////BgAAAAAAAAAAAAAAAAAAAAD////K////cgAAAAAAAAAA////cv///8oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////6f///6UAAAAAAAAAAAAAAAAAAAAAAAAAAP///+////9OAAAAAAAAAAD///9P////7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9////0kAAAAAAAAAAP///0z////rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////QwAAAAAAAAAA////T/////gAAAAAAAAAAAAAAAAAAAAA////W////9L////1////0v///zsAAAAAAAAAAAAAAAAAAAAA////W////9L////1////0v///zsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+////9OAAAAAAAAAAD///9P////7gAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///2P////c////Kv///yr////d////aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7f///+P////AgAAAAAAAAAAAAAAAAAAAAAAAAAA////yv///3IAAAAAAAAAAP///3L////KAAAAAAAAAAAAAAAAAAAAAAAAAAD////W////MP///zL////UAAAAAAAAAAAAAAAAAAAAAAAAAAD////a////YwAAAAAAAAAA////bf///8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9lAAAAAAAAAAD///90////1AAAAAAAAAAAAAAAAAAAAAD///9C////PP///xL///+R////zwAAAAAAAAAAAAAAAAAAAAD///9C////PP///xL///+R////zwAAAAAAAAAAAAAAAAAAAAAAAAAA////fP///+n////r////l////woAAAAAAAAAAAAAAAAAAAAA////yv///3IAAAAAAAAAAP///3L////KAAAAAAAAAAAAAAAAAAAAAP///wf/////////NgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Af///37////v////7////4L///8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9j////3P///yr///8q////3f///2gAAAAAAAAAAAAAAAAAAAAAAAAAAP///9L///8w////Mv///9EAAAAAAAAAAAAAAAAAAAAAAAAAAP///4D////V////KP///yj////Z////YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////9L///8o////Kf///97///92AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///z3////5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///z3////5AAAAAAAAAAAAAAAAAAAAAP///1r////X////LP///x7////E////jAAAAAAAAAAAAAAAAAAAAAD///9j////3P///yr///8q////3f///2gAAAAAAAAAAAAAAAAAAAAA////Wv///9L///8n////JP///yT///8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Av///4v////u////7v///4T///8BAAAAAAAAAAAAAAAAAAAAAP///wH///9+////7////+////+C////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////B////47////n////7////4n///8BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////7////S////9z////3////nP///wYAAAAAAAAAAAAAAAAAAAAA////IP///67////o/////P////8AAAAAAAAAAAAAAAAAAAAA////IP///67////o/////P////8AAAAAAAAAAAAAAAAAAAAA////x////2MAAAAAAAAAAP///1T////hAAAAAAAAAAAAAAAAAAAAAP///wH///9+////7////+////+C////AgAAAAAAAAAAAAAAAAAAAAD///////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9z////2////yr///8q////2////2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wL///+L////7v///+7///+E////AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////A////vP///y3///9H/////wAAAAAAAAAAAAAAAAAAAAD////A////vP///y3///9H/////wAAAAAAAAAAAAAAAAAAAAD////u//////////////////////////4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8////9wAAAAAAAAAAD///9x////yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////c////9v///8q////Kv///9v///9oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////b///9MAAAAAP///1f/////AAAAAAAAAAAAAAAAAAAAAP////b///9MAAAAAP///1f/////AAAAAAAAAAAAAAAAAAAAAP////D///9X////CP///wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8f///00AAAAAAAAAAP///03////uAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////P////cAAAAAAAAAAA////cf///8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////3P///4P///8b////wP////8AAAAAAAAAAAAAAAAAAAAA////3P///4P///8b////wP////8AAAAAAAAAAAAAAAAAAAAA////yf///4MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8C////hf///+D////0////tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////v////TgAAAAAAAAAA////T////+4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////H///9NAAAAAAAAAAD///9N////7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9T////7f///+X///9M////+AAAAAAAAAAAAAAAAAAAAAD///9T////7f///+X///9M////+AAAAAAAAAAAAAAAAAAAAAD///9W////7////1P///8d////Nv///1EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3D////p////R////yP///9BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8r///9yAAAAAAAAAAD///9y////ygAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////7////04AAAAAAAAAAP///0/////uAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+n////6f///xQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9Y////1gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////R////8n////0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9k////4f////z////k////bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5P/////////kwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5QAAAAAAAAAAP///5IAAAAAAAAAAAAAAAAAAAAA////lAAAAAAAAAAA////kQAAAAAAAAAAAAAAAAAAAAAAAAAA////0f///3oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Y////9z///8q////Kv///93///9oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////K////cgAAAAAAAAAA////cv///8oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP///+Q////tgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1r////ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////q////g////xEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+a////pv///yb///+o////mgAAAAAAAAAAAAAAAAAAAAD///89////nAAAAAD///86////mwAAAAAAAAAAAAAAAAAAAAD///+d////PAAAAAD///+c////OQAAAAAAAAAAAAAAAAAAAAD////3////TwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8B////fv///+/////v////gv///wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///2P////c////Kv///yr////d////aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7T///80AAAAAP///7T///80AAAAAAAAAAAAAAAAAAAAAP///zT///+0AAAAAP///zT///+zAAAAAAAAAAAAAAAAAAAAAP////n///9OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Af///37////v////7////4L///8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1v////S////9f///9L///87AAAAAAAAAAAAAAAAAAAAAAAAAAD///8z////+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////z8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////fP///+n////r////l////woAAAAAAAAAAAAAAAAAAAAA////t////zQAAAAA////t////zQAAAAAAAAAAAAAAAAAAAAA////NP///7cAAAAA////NP///7cAAAAAAAAAAAAAAAAAAAAA////1v///3cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Qv///zz///8S////kf///88AAAAAAAAAAAAAAAAAAAAAAAAAAP///3/////YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Cv///1/////7////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////W////MP///zL////UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1r////X////LP///x7////E////jAAAAAAAAAAAAAAAAAAAAAD///8/////nAAAAAD///89////nAAAAAAAAAAAAAAAAAAAAAD///+d////PgAAAAD///+c////PAAAAAAAAAAAAAAAAAAAAAD///90////5v///0P///8k////TQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///89////+QAAAAAAAAAAAAAAAAAAAAD///8r////+P///18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////7f///04AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9L///8w////Mv///9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8C////hf///+D////0////tAAAAAAAAAAAAAAAAAAAAAAAAAAA////x////2MAAAAAAAAAAP///1T////hAAAAAAAAAAAAAAAAAAAAAAAAAAD///+VAAAAAAAAAAD///+TAAAAAAAAAAAAAAAAAAAAAP///5QAAAAAAAAAAP///5IAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP///+L////5P////b///+pAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD///+u////6P////z/////AAAAAAAAAAAAAAAAAAAAAP///7D///+pAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xT///91////7v///xIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3D////p////R////yP///9BAAAAAAAAAAAAAAAAAAAAAAAAAAD////u//////////////////////////4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9////08AAAAA////9////08AAAAAAAAAAAAAAAAAAAAA////fv///9j////h////bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////wP///7z///8t////R/////8AAAAAAAAAAAAAAAAAAAAA////8f///z8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wT/////////PQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zj////l/////////+b///87AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0f///3oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////D///9X////CP///wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////l////PQAAAAD////l////PQAAAAAAAAAAAAAAAAAAAAD///85////Cf///xD////xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////b////ywAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9b////0v////X////S////OwAAAAAAAAAAAAAAAAAAAAD////2////TAAAAAD///9X/////wAAAAAAAAAAAAAAAAAAAAD////0////OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////3////TwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yf///4MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9P///8rAAAAAP///9P///8rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////R////7cAAAAAAAAAAAAAAAAAAAAAAAAAAP///wb////h////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0L///88////Ev///5H////PAAAAAAAAAAAAAAAAAAAAAP///9z///+D////G////8D/////AAAAAAAAAAAAAAAAAAAAAP///7v///+s////JP///0H///9sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////n///9OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9W////7////1P///8d////Nv///1EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////wf///xkAAAAA////wf///xkAAAAAAAAAAAAAAAAAAAAAAAAAAP///zn///+/////EwAAAAAAAAAAAAAAAAAAAAAAAAAA////xP/////////q////5P///9UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Pf////kAAAAAAAAAAAAAAAAAAAAA////U////+3////l////TP////gAAAAAAAAAAAAAAAAAAAAA////Iv///77////1////3f///4MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////Y////j////xIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////1v///3cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9k////4f////z////k////bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////////8AAAAAAAAAAAAAAAAAAAAA////OP///+X/////////5v///zsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9C////qf///w0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g////rv///+j////8/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zP////A////8wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///90////5v///0P///8k////TQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////f////b////2P///9j///82AAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8D///+8////Lf///0f/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP///+L////5P////b///+pAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9v///0wAAAAA////V/////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////qv///64AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////c////g////xv////A/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8V////8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////p////+n///8UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////+////PgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1P////t////5f///0z////4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////w////8r///9rAAAAAAAAAAAAAAAAAAAAAAAAAAD///+T/////////5MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////kP///8L///+KAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8D////kP///7YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9n///+O////Dv///xoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAD///+n////6f///xQAAAAAAAAAAAAAAAAAAAAAAAAAAP////T////I////RQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zj////k/////////+X///87AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////mv///6b///8m////qP///5oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////KAAAAAP///8sAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////6f///6UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////P////9j////7////5QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP///+Q////tgAAAAAAAAAAAAAAAAAAAAAAAAAA////Ef///4X////oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5P////B////jAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAD//////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7f///+P////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///zj////l/////////+b///87AAAAAAAAAAAAAAAAAAAAAAAAAAD///9A/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAA////W////9L////1////0v///zsAAAAAAAAAAAAAAAAAAAAA//////////////////////////8AAAAAAAAAAAAAAAAAAAAA////OP///+T/////////5f///zsAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9b///8w////Mv///9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD////7////X////wkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Sf///9r////5////wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAD///9C////PP///xL///+R////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0v///zD///8y////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0/////u/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAD////i////f////w////8ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///z3////5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP//////////////////////////AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+T/////////5MAAAAAAAAAAAAAAAAAAAAAAAAAAP///4H////Z////9f///8P///8qAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8S////7v///3X///8UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8o////KP///ygAAAAAAAAAAAAAAAAAAAAAAAAAAP////7///89AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP///67////o/////P////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0n///8I////CP///wgAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////mv///6b///8m////qP///5oAAAAAAAAAAAAAAAAAAAAA////bf///0T///8k////nv///8gAAAAAAAAAAAAAAAAAAAAA//////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///z3/////////BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+1/////////+r////kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAD////A////vP///y3///9H/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///80////+AAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAP////b///9MAAAAAP///1f/////AAAAAAAAAAAAAAAAAAAAAP///5/////G////z////3wAAAAAAAAAAAAAAAAAAAAA////Rf///8b////F////QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAP//////////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///2n////XAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Cv////////8yAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9B/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAA////3P///4P///8b////wP////8AAAAAAAAAAAAAAAAAAAAA////BQAAAAD///8E////5QAAAAAAAAAAAAAAAAAAAAD////Q////Ef///xP////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0n///8I////CP///wgAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0n///8I////CP///wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8t////8v///1oAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Fv///xD///9/////5f///wcAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAA////Ev///5L////VAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9T////7f///+X///9M////+AAAAAAAAAAAAAAAAAAAAAD///9p////yf///8H////5AAAAAAAAAAAAAAAAAAAAAP///+AAAAAAAAAAAP///+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//////////////////////////wAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8j///+fAAAAAAAAAAAAAAAAAAAAAAAAAAD//////////////////////////wAAAAAAAAAAAAAAAAAAAAD////x////9P///8L///80AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAD////z////v////zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+n///8I////EP////YAAAAAAAAAAAAAAAAAAAAA////z////xL///8U////0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////P///zYAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zj////k/////////+X///87AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////lf///8r///+z////1QAAAAAAAAAAAAAAAAAAAAD///9B////xv///8b///9DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////////8AAAAAAAAAAAAAAAAAAAAA//////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9r///9XAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+n///+lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////2////1cAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+3////j////wIAAAAAAAAAAAAAAAAAAAAAAAAAAP///5P/////////kwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9a/////P///zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9m////vQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6r///+uAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+a////pv///yb///+o////mgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////X////9z////5////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Df///+////85AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////CP///+H///81AAAAAAAAAAAAAAAAAAAAAP///wj////h////NQAAAAAAAAAAAAAAAAAAAAAAAAAA////Ff////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zj////l/////////+b///87AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+n////6f///xQAAAAAAAAAAAAAAAAAAAAA////FP///+n///+lAAAAAAAAAAAAAAAAAAAAAAAAAAD///+m////I/////v///8wAAAAAAAAAAAAAAAAAAAAAP///5H////f////2////44AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP//////////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9m////2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8I////4f///zUAAAAAAAAAAAAAAAAAAAAA////CP///+H///81AAAAAAAAAAAAAAAAAAAAAP///8P////K////awAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAA////OP///+X/////////5v///zsAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP///+Q////tgAAAAAAAAAAAAAAAAAAAAD///+3////j////wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zAAAAAAAAAAAAAAAAAAAAAA////KP///wP///8s////4wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7D///+VAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+n////6f///xQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////MAAAAAAAAAAAAAAAAAAAAAAAAAAA////wf///+v///9kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////4v///2UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP///+Q////tgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///+0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9b///8w////Mv///9QAAAAAAAAAAAAAAAAAAAAA/////////y7////Q////6wAAAAAAAAAAAAAAAAAAAAD////3////UQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zAAAAAAAAAAAAAAAAAAAAAA////HQAAAAD///8p////4wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0v///zD///8y////0QAAAAAAAAAAAAAAAAAAAAD/////////z////1P///8nAAAAAAAAAAAAAAAAAAAAAP////j///9PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////MAAAAAAAAAAAAAAAAAAAAAD////J////2////9P///9MAAAAAAAAAAAAAAAAAAAAAP///0n////h////3////0cAAAAAAAAAAAAAAAAAAAAA////1v///zD///8y////1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////91AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////5f///2MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////3////TwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////4v///z3///8o////3wAAAAAAAAAAAAAAAAAAAAD////S////MP///zL////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+1////kgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+X///89AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////k////Of///yT////gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///23////VAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0////ysAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////Y////VgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0v////h////3////0kAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////EP////L///80AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////B////GQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9v///9YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zj////k/////////+X///87AAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAP///83////LAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////af///7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////OP///+T/////////5f///zsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAA////zv///80AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////OgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////x////FQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8T////QP////3///8ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////P///8fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAD///+6////aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////H////s////dQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9f///ykAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////CP///0b/////AAAAAAAAAAAAAAAAAAAAAP///zj////v////DAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////3////MwAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+n///+lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP////8AAAAAAAAAAAAAAAAAAAAAAAAAAP///9n///9mAAAAAAAAAAAAAAAAAAAAAP////////9G////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////n///89AAAAAAAAAAAAAAAAAAAAAAAAAAD///+3////j////wIAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAP///xP///+h////+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9A/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////lv///60AAAAAAAAAAAAAAAAAAAAA/////////0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAP///9D////OAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////+////0cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8o////KP///ygAAAAAAAAAAAAAAAAAAAAA////qP///1v////2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0D/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///9m////3gAAAAAAAAAAAAAAAAAAAAD/////////QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////wgAAAAAAAAAAAAAAAAAAAAA////zv///80AAAAAAAAAAAAAAAAAAAAA/////////wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////9////UQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP////8AAAAAAAAAAAAAAAAAAAAAAAAAAP///1L////1AAAAAAAAAAAAAAAAAAAAAP////////9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAD////N////zAAAAAAAAAAAAAAAAAAAAAD///+I////4QAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9bAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9A/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////UP////YAAAAAAAAAAAAAAAAAAAAA/////////0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAP///87////NAAAAAAAAAAAAAAAAAAAAAP///7P///+MAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0D/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///9k////4gAAAAAAAAAAAAAAAAAAAAD/////////QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////5P///ycAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP////8AAAAAAAAAAAAAAAAAAAAAAAAAAP///5P///+yAAAAAAAAAAAAAAAAAAAAAP////////9AAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////XgAAAAAAAAAAAAAAAAAAAAD////Q////zgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9A/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////1f///20AAAAAAAAAAAAAAAAAAAAA/////////0AAAAAAAAAAAAAAAAAAAAAAAAAAAP////3///9SAAAAAAAAAAAAAAAAAAAAAP///87////NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAP///83////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////CP///0b/////AAAAAAAAAAAAAAAAAAAAAP///zT////y////EAAAAAAAAAAAAAAAAAAAAAD/////////QAAAAAAAAAAAAAAAAAAAAAAAAAAA////+////0cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////wgAAAAAAAAAAAAAAAAAAAAA////zv///80AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAA////tv///2sAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9G////CAAAAAAAAAAAAAAAAAAAAAD////4////OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAP////b///8wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9P///yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////x////GQAAAAAAAAAAAAAAAAAAAAD///+I////4QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7P///+MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////2v///1cAAAAAAAAAAAAAAAAAAAAA////5P///ycAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////b////VwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="), +"format": "RGBA8", +"height": 256, +"mipmaps": false, +"width": 128 +} + +[sub_resource type="FontFile" id="37"] +fixed_size = 16 +cache/0/16/0/ascent = 11.0 +cache/0/16/0/descent = 3.0 +cache/0/16/0/underline_position = 0.0 +cache/0/16/0/underline_thickness = 0.0 +cache/0/16/0/scale = 1.0 +cache/0/16/0/textures/0/offsets = PackedInt32Array() +cache/0/16/0/textures/0/image = SubResource("Image_j2oqp") +cache/0/16/0/glyphs/64/advance = Vector2(12, 0) +cache/0/16/0/glyphs/64/offset = Vector2(1, 1) +cache/0/16/0/glyphs/64/size = Vector2(0, 0) +cache/0/16/0/glyphs/64/uv_rect = Rect2(72, 34, 10, 11) +cache/0/16/0/glyphs/64/texture_idx = 0 +cache/0/16/0/glyphs/224/advance = Vector2(7, 0) +cache/0/16/0/glyphs/224/offset = Vector2(1, 0) +cache/0/16/0/glyphs/224/size = Vector2(0, 0) +cache/0/16/0/glyphs/224/uv_rect = Rect2(85, 180, 5, 11) +cache/0/16/0/glyphs/224/texture_idx = 0 +cache/0/16/0/glyphs/192/advance = Vector2(9, 0) +cache/0/16/0/glyphs/192/offset = Vector2(-1, -2) +cache/0/16/0/glyphs/192/size = Vector2(0, 0) +cache/0/16/0/glyphs/192/uv_rect = Rect2(32, 16, 11, 13) +cache/0/16/0/glyphs/192/texture_idx = 0 +cache/0/16/0/glyphs/96/advance = Vector2(8, 0) +cache/0/16/0/glyphs/96/offset = Vector2(3, 0) +cache/0/16/0/glyphs/96/size = Vector2(0, 0) +cache/0/16/0/glyphs/96/uv_rect = Rect2(2, 216, 3, 2) +cache/0/16/0/glyphs/96/texture_idx = 0 +cache/0/16/0/glyphs/160/advance = Vector2(4, 0) +cache/0/16/0/glyphs/160/offset = Vector2(0, 11) +cache/0/16/0/glyphs/160/size = Vector2(0, 0) +cache/0/16/0/glyphs/160/uv_rect = Rect2(1.73444e+09, 0, 0, 0) +cache/0/16/0/glyphs/160/texture_idx = 0 +cache/0/16/0/glyphs/32/advance = Vector2(4, 0) +cache/0/16/0/glyphs/32/offset = Vector2(0, 11) +cache/0/16/0/glyphs/32/size = Vector2(0, 0) +cache/0/16/0/glyphs/32/uv_rect = Rect2(0, 0, 0, 0) +cache/0/16/0/glyphs/32/texture_idx = 0 +cache/0/16/0/glyphs/33/advance = Vector2(4, 0) +cache/0/16/0/glyphs/33/offset = Vector2(1, 1) +cache/0/16/0/glyphs/33/size = Vector2(0, 0) +cache/0/16/0/glyphs/33/uv_rect = Rect2(65, 234, 2, 10) +cache/0/16/0/glyphs/33/texture_idx = 0 +cache/0/16/0/glyphs/225/advance = Vector2(7, 0) +cache/0/16/0/glyphs/225/offset = Vector2(1, 0) +cache/0/16/0/glyphs/225/size = Vector2(0, 0) +cache/0/16/0/glyphs/225/uv_rect = Rect2(112, 169, 5, 11) +cache/0/16/0/glyphs/225/texture_idx = 0 +cache/0/16/0/glyphs/193/advance = Vector2(9, 0) +cache/0/16/0/glyphs/193/offset = Vector2(-1, -2) +cache/0/16/0/glyphs/193/size = Vector2(0, 0) +cache/0/16/0/glyphs/193/uv_rect = Rect2(17, 16, 11, 13) +cache/0/16/0/glyphs/193/texture_idx = 0 +cache/0/16/0/glyphs/161/advance = Vector2(4, 0) +cache/0/16/0/glyphs/161/offset = Vector2(1, 3) +cache/0/16/0/glyphs/161/size = Vector2(0, 0) +cache/0/16/0/glyphs/161/uv_rect = Rect2(2, 222, 2, 11) +cache/0/16/0/glyphs/161/texture_idx = 0 +cache/0/16/0/glyphs/65/advance = Vector2(9, 0) +cache/0/16/0/glyphs/65/offset = Vector2(-1, 1) +cache/0/16/0/glyphs/65/size = Vector2(0, 0) +cache/0/16/0/glyphs/65/uv_rect = Rect2(2, 16, 11, 10) +cache/0/16/0/glyphs/65/texture_idx = 0 +cache/0/16/0/glyphs/97/advance = Vector2(7, 0) +cache/0/16/0/glyphs/97/offset = Vector2(1, 3) +cache/0/16/0/glyphs/97/size = Vector2(0, 0) +cache/0/16/0/glyphs/97/uv_rect = Rect2(76, 188, 5, 8) +cache/0/16/0/glyphs/97/texture_idx = 0 +cache/0/16/0/glyphs/98/advance = Vector2(8, 0) +cache/0/16/0/glyphs/98/offset = Vector2(1, 0) +cache/0/16/0/glyphs/98/size = Vector2(0, 0) +cache/0/16/0/glyphs/98/uv_rect = Rect2(102, 165, 6, 11) +cache/0/16/0/glyphs/98/texture_idx = 0 +cache/0/16/0/glyphs/226/advance = Vector2(7, 0) +cache/0/16/0/glyphs/226/offset = Vector2(1, 0) +cache/0/16/0/glyphs/226/size = Vector2(0, 0) +cache/0/16/0/glyphs/226/uv_rect = Rect2(72, 143, 6, 11) +cache/0/16/0/glyphs/226/texture_idx = 0 +cache/0/16/0/glyphs/194/advance = Vector2(9, 0) +cache/0/16/0/glyphs/194/offset = Vector2(-1, -2) +cache/0/16/0/glyphs/194/size = Vector2(0, 0) +cache/0/16/0/glyphs/194/uv_rect = Rect2(113, 2, 11, 13) +cache/0/16/0/glyphs/194/texture_idx = 0 +cache/0/16/0/glyphs/66/advance = Vector2(9, 0) +cache/0/16/0/glyphs/66/offset = Vector2(1, 1) +cache/0/16/0/glyphs/66/size = Vector2(0, 0) +cache/0/16/0/glyphs/66/uv_rect = Rect2(46, 109, 7, 10) +cache/0/16/0/glyphs/66/texture_idx = 0 +cache/0/16/0/glyphs/162/advance = Vector2(8, 0) +cache/0/16/0/glyphs/162/offset = Vector2(1, 1) +cache/0/16/0/glyphs/162/size = Vector2(0, 0) +cache/0/16/0/glyphs/162/uv_rect = Rect2(12, 136, 6, 10) +cache/0/16/0/glyphs/162/texture_idx = 0 +cache/0/16/0/glyphs/34/advance = Vector2(6, 0) +cache/0/16/0/glyphs/34/offset = Vector2(1, 1) +cache/0/16/0/glyphs/34/size = Vector2(0, 0) +cache/0/16/0/glyphs/34/uv_rect = Rect2(49, 187, 5, 4) +cache/0/16/0/glyphs/34/texture_idx = 0 +cache/0/16/0/glyphs/35/advance = Vector2(9, 0) +cache/0/16/0/glyphs/35/offset = Vector2(0, 1) +cache/0/16/0/glyphs/35/size = Vector2(0, 0) +cache/0/16/0/glyphs/35/uv_rect = Rect2(78, 66, 8, 10) +cache/0/16/0/glyphs/35/texture_idx = 0 +cache/0/16/0/glyphs/163/advance = Vector2(8, 0) +cache/0/16/0/glyphs/163/offset = Vector2(1, 1) +cache/0/16/0/glyphs/163/size = Vector2(0, 0) +cache/0/16/0/glyphs/163/uv_rect = Rect2(22, 167, 6, 10) +cache/0/16/0/glyphs/163/texture_idx = 0 +cache/0/16/0/glyphs/195/advance = Vector2(9, 0) +cache/0/16/0/glyphs/195/offset = Vector2(-1, -3) +cache/0/16/0/glyphs/195/size = Vector2(0, 0) +cache/0/16/0/glyphs/195/uv_rect = Rect2(53, 2, 11, 14) +cache/0/16/0/glyphs/195/texture_idx = 0 +cache/0/16/0/glyphs/227/advance = Vector2(7, 0) +cache/0/16/0/glyphs/227/offset = Vector2(1, -1) +cache/0/16/0/glyphs/227/size = Vector2(0, 0) +cache/0/16/0/glyphs/227/uv_rect = Rect2(2, 155, 6, 12) +cache/0/16/0/glyphs/227/texture_idx = 0 +cache/0/16/0/glyphs/67/advance = Vector2(8, 0) +cache/0/16/0/glyphs/67/offset = Vector2(1, 1) +cache/0/16/0/glyphs/67/size = Vector2(0, 0) +cache/0/16/0/glyphs/67/uv_rect = Rect2(68, 115, 7, 10) +cache/0/16/0/glyphs/67/texture_idx = 0 +cache/0/16/0/glyphs/99/advance = Vector2(7, 0) +cache/0/16/0/glyphs/99/offset = Vector2(1, 3) +cache/0/16/0/glyphs/99/size = Vector2(0, 0) +cache/0/16/0/glyphs/99/uv_rect = Rect2(40, 179, 5, 8) +cache/0/16/0/glyphs/99/texture_idx = 0 +cache/0/16/0/glyphs/228/advance = Vector2(7, 0) +cache/0/16/0/glyphs/228/offset = Vector2(1, 0) +cache/0/16/0/glyphs/228/size = Vector2(0, 0) +cache/0/16/0/glyphs/228/uv_rect = Rect2(121, 169, 5, 11) +cache/0/16/0/glyphs/228/texture_idx = 0 +cache/0/16/0/glyphs/196/advance = Vector2(9, 0) +cache/0/16/0/glyphs/196/offset = Vector2(-1, -2) +cache/0/16/0/glyphs/196/size = Vector2(0, 0) +cache/0/16/0/glyphs/196/uv_rect = Rect2(98, 2, 11, 13) +cache/0/16/0/glyphs/196/texture_idx = 0 +cache/0/16/0/glyphs/36/advance = Vector2(8, 0) +cache/0/16/0/glyphs/36/offset = Vector2(1, 0) +cache/0/16/0/glyphs/36/size = Vector2(0, 0) +cache/0/16/0/glyphs/36/uv_rect = Rect2(102, 137, 6, 12) +cache/0/16/0/glyphs/36/texture_idx = 0 +cache/0/16/0/glyphs/100/advance = Vector2(8, 0) +cache/0/16/0/glyphs/100/offset = Vector2(1, 0) +cache/0/16/0/glyphs/100/size = Vector2(0, 0) +cache/0/16/0/glyphs/100/uv_rect = Rect2(82, 150, 6, 11) +cache/0/16/0/glyphs/100/texture_idx = 0 +cache/0/16/0/glyphs/68/advance = Vector2(10, 0) +cache/0/16/0/glyphs/68/offset = Vector2(1, 1) +cache/0/16/0/glyphs/68/size = Vector2(0, 0) +cache/0/16/0/glyphs/68/uv_rect = Rect2(90, 66, 8, 10) +cache/0/16/0/glyphs/68/texture_idx = 0 +cache/0/16/0/glyphs/164/advance = Vector2(8, 0) +cache/0/16/0/glyphs/164/offset = Vector2(0, 3) +cache/0/16/0/glyphs/164/size = Vector2(0, 0) +cache/0/16/0/glyphs/164/uv_rect = Rect2(14, 79, 8, 7) +cache/0/16/0/glyphs/164/texture_idx = 0 +cache/0/16/0/glyphs/37/advance = Vector2(12, 0) +cache/0/16/0/glyphs/37/offset = Vector2(1, 1) +cache/0/16/0/glyphs/37/size = Vector2(0, 0) +cache/0/16/0/glyphs/37/uv_rect = Rect2(2, 30, 10, 10) +cache/0/16/0/glyphs/37/texture_idx = 0 +cache/0/16/0/glyphs/69/advance = Vector2(7, 0) +cache/0/16/0/glyphs/69/offset = Vector2(1, 1) +cache/0/16/0/glyphs/69/size = Vector2(0, 0) +cache/0/16/0/glyphs/69/uv_rect = Rect2(29, 191, 5, 10) +cache/0/16/0/glyphs/69/texture_idx = 0 +cache/0/16/0/glyphs/165/advance = Vector2(8, 0) +cache/0/16/0/glyphs/165/offset = Vector2(0, 1) +cache/0/16/0/glyphs/165/size = Vector2(0, 0) +cache/0/16/0/glyphs/165/uv_rect = Rect2(79, 98, 7, 10) +cache/0/16/0/glyphs/165/texture_idx = 0 +cache/0/16/0/glyphs/229/advance = Vector2(7, 0) +cache/0/16/0/glyphs/229/offset = Vector2(1, -1) +cache/0/16/0/glyphs/229/size = Vector2(0, 0) +cache/0/16/0/glyphs/229/uv_rect = Rect2(20, 196, 5, 12) +cache/0/16/0/glyphs/229/texture_idx = 0 +cache/0/16/0/glyphs/197/advance = Vector2(9, 0) +cache/0/16/0/glyphs/197/offset = Vector2(-1, -1) +cache/0/16/0/glyphs/197/size = Vector2(0, 0) +cache/0/16/0/glyphs/197/uv_rect = Rect2(83, 2, 11, 12) +cache/0/16/0/glyphs/197/texture_idx = 0 +cache/0/16/0/glyphs/101/advance = Vector2(8, 0) +cache/0/16/0/glyphs/101/offset = Vector2(1, 3) +cache/0/16/0/glyphs/101/size = Vector2(0, 0) +cache/0/16/0/glyphs/101/uv_rect = Rect2(32, 124, 6, 8) +cache/0/16/0/glyphs/101/texture_idx = 0 +cache/0/16/0/glyphs/38/advance = Vector2(10, 0) +cache/0/16/0/glyphs/38/offset = Vector2(1, 1) +cache/0/16/0/glyphs/38/size = Vector2(0, 0) +cache/0/16/0/glyphs/38/uv_rect = Rect2(67, 49, 9, 10) +cache/0/16/0/glyphs/38/texture_idx = 0 +cache/0/16/0/glyphs/70/advance = Vector2(7, 0) +cache/0/16/0/glyphs/70/offset = Vector2(1, 1) +cache/0/16/0/glyphs/70/size = Vector2(0, 0) +cache/0/16/0/glyphs/70/uv_rect = Rect2(101, 105, 6, 10) +cache/0/16/0/glyphs/70/texture_idx = 0 +cache/0/16/0/glyphs/198/advance = Vector2(12, 0) +cache/0/16/0/glyphs/198/offset = Vector2(-1, 1) +cache/0/16/0/glyphs/198/size = Vector2(0, 0) +cache/0/16/0/glyphs/198/uv_rect = Rect2(21, 2, 12, 10) +cache/0/16/0/glyphs/198/texture_idx = 0 +cache/0/16/0/glyphs/166/advance = Vector2(7, 0) +cache/0/16/0/glyphs/166/offset = Vector2(3, 0) +cache/0/16/0/glyphs/166/size = Vector2(0, 0) +cache/0/16/0/glyphs/166/uv_rect = Rect2(95, 228, 2, 14) +cache/0/16/0/glyphs/166/texture_idx = 0 +cache/0/16/0/glyphs/102/advance = Vector2(4, 0) +cache/0/16/0/glyphs/102/offset = Vector2(0, 0) +cache/0/16/0/glyphs/102/size = Vector2(0, 0) +cache/0/16/0/glyphs/102/uv_rect = Rect2(2, 201, 5, 11) +cache/0/16/0/glyphs/102/texture_idx = 0 +cache/0/16/0/glyphs/230/advance = Vector2(12, 0) +cache/0/16/0/glyphs/230/offset = Vector2(1, 3) +cache/0/16/0/glyphs/230/size = Vector2(0, 0) +cache/0/16/0/glyphs/230/uv_rect = Rect2(58, 34, 10, 8) +cache/0/16/0/glyphs/230/texture_idx = 0 +cache/0/16/0/glyphs/71/advance = Vector2(10, 0) +cache/0/16/0/glyphs/71/offset = Vector2(1, 1) +cache/0/16/0/glyphs/71/size = Vector2(0, 0) +cache/0/16/0/glyphs/71/uv_rect = Rect2(66, 65, 8, 10) +cache/0/16/0/glyphs/71/texture_idx = 0 +cache/0/16/0/glyphs/231/advance = Vector2(7, 0) +cache/0/16/0/glyphs/231/offset = Vector2(1, 3) +cache/0/16/0/glyphs/231/size = Vector2(0, 0) +cache/0/16/0/glyphs/231/uv_rect = Rect2(2, 186, 5, 11) +cache/0/16/0/glyphs/231/texture_idx = 0 +cache/0/16/0/glyphs/199/advance = Vector2(8, 0) +cache/0/16/0/glyphs/199/offset = Vector2(1, 1) +cache/0/16/0/glyphs/199/size = Vector2(0, 0) +cache/0/16/0/glyphs/199/uv_rect = Rect2(57, 97, 7, 13) +cache/0/16/0/glyphs/199/texture_idx = 0 +cache/0/16/0/glyphs/103/advance = Vector2(7, 0) +cache/0/16/0/glyphs/103/offset = Vector2(1, 3) +cache/0/16/0/glyphs/103/size = Vector2(0, 0) +cache/0/16/0/glyphs/103/uv_rect = Rect2(13, 107, 7, 11) +cache/0/16/0/glyphs/103/texture_idx = 0 +cache/0/16/0/glyphs/167/advance = Vector2(7, 0) +cache/0/16/0/glyphs/167/offset = Vector2(0, 0) +cache/0/16/0/glyphs/167/size = Vector2(0, 0) +cache/0/16/0/glyphs/167/uv_rect = Rect2(112, 131, 6, 11) +cache/0/16/0/glyphs/167/texture_idx = 0 +cache/0/16/0/glyphs/39/advance = Vector2(3, 0) +cache/0/16/0/glyphs/39/offset = Vector2(1, 1) +cache/0/16/0/glyphs/39/size = Vector2(0, 0) +cache/0/16/0/glyphs/39/uv_rect = Rect2(119, 219, 2, 4) +cache/0/16/0/glyphs/39/texture_idx = 0 +cache/0/16/0/glyphs/72/advance = Vector2(10, 0) +cache/0/16/0/glyphs/72/offset = Vector2(1, 1) +cache/0/16/0/glyphs/72/size = Vector2(0, 0) +cache/0/16/0/glyphs/72/uv_rect = Rect2(54, 65, 8, 10) +cache/0/16/0/glyphs/72/texture_idx = 0 +cache/0/16/0/glyphs/232/advance = Vector2(8, 0) +cache/0/16/0/glyphs/232/offset = Vector2(1, 0) +cache/0/16/0/glyphs/232/size = Vector2(0, 0) +cache/0/16/0/glyphs/232/uv_rect = Rect2(62, 143, 6, 11) +cache/0/16/0/glyphs/232/texture_idx = 0 +cache/0/16/0/glyphs/200/advance = Vector2(7, 0) +cache/0/16/0/glyphs/200/offset = Vector2(1, -2) +cache/0/16/0/glyphs/200/size = Vector2(0, 0) +cache/0/16/0/glyphs/200/uv_rect = Rect2(47, 195, 5, 13) +cache/0/16/0/glyphs/200/texture_idx = 0 +cache/0/16/0/glyphs/40/advance = Vector2(4, 0) +cache/0/16/0/glyphs/40/offset = Vector2(1, 1) +cache/0/16/0/glyphs/40/size = Vector2(0, 0) +cache/0/16/0/glyphs/40/uv_rect = Rect2(93, 212, 4, 12) +cache/0/16/0/glyphs/40/texture_idx = 0 +cache/0/16/0/glyphs/104/advance = Vector2(8, 0) +cache/0/16/0/glyphs/104/offset = Vector2(1, 0) +cache/0/16/0/glyphs/104/size = Vector2(0, 0) +cache/0/16/0/glyphs/104/uv_rect = Rect2(72, 158, 6, 11) +cache/0/16/0/glyphs/104/texture_idx = 0 +cache/0/16/0/glyphs/168/advance = Vector2(8, 0) +cache/0/16/0/glyphs/168/offset = Vector2(2, 0) +cache/0/16/0/glyphs/168/size = Vector2(0, 0) +cache/0/16/0/glyphs/168/uv_rect = Rect2(77, 217, 4, 2) +cache/0/16/0/glyphs/168/texture_idx = 0 +cache/0/16/0/glyphs/73/advance = Vector2(5, 0) +cache/0/16/0/glyphs/73/offset = Vector2(0, 1) +cache/0/16/0/glyphs/73/size = Vector2(0, 0) +cache/0/16/0/glyphs/73/uv_rect = Rect2(38, 191, 5, 10) +cache/0/16/0/glyphs/73/texture_idx = 0 +cache/0/16/0/glyphs/169/advance = Vector2(12, 0) +cache/0/16/0/glyphs/169/offset = Vector2(1, 1) +cache/0/16/0/glyphs/169/size = Vector2(0, 0) +cache/0/16/0/glyphs/169/uv_rect = Rect2(44, 34, 10, 10) +cache/0/16/0/glyphs/169/texture_idx = 0 +cache/0/16/0/glyphs/233/advance = Vector2(8, 0) +cache/0/16/0/glyphs/233/offset = Vector2(1, 0) +cache/0/16/0/glyphs/233/size = Vector2(0, 0) +cache/0/16/0/glyphs/233/uv_rect = Rect2(52, 142, 6, 11) +cache/0/16/0/glyphs/233/texture_idx = 0 +cache/0/16/0/glyphs/201/advance = Vector2(7, 0) +cache/0/16/0/glyphs/201/offset = Vector2(1, -2) +cache/0/16/0/glyphs/201/size = Vector2(0, 0) +cache/0/16/0/glyphs/201/uv_rect = Rect2(56, 197, 5, 13) +cache/0/16/0/glyphs/201/texture_idx = 0 +cache/0/16/0/glyphs/41/advance = Vector2(4, 0) +cache/0/16/0/glyphs/41/offset = Vector2(0, 1) +cache/0/16/0/glyphs/41/size = Vector2(0, 0) +cache/0/16/0/glyphs/41/uv_rect = Rect2(51, 226, 3, 12) +cache/0/16/0/glyphs/41/texture_idx = 0 +cache/0/16/0/glyphs/105/advance = Vector2(4, 0) +cache/0/16/0/glyphs/105/offset = Vector2(0, 0) +cache/0/16/0/glyphs/105/size = Vector2(0, 0) +cache/0/16/0/glyphs/105/uv_rect = Rect2(109, 213, 3, 11) +cache/0/16/0/glyphs/105/texture_idx = 0 +cache/0/16/0/glyphs/106/advance = Vector2(4, 0) +cache/0/16/0/glyphs/106/offset = Vector2(-1, 0) +cache/0/16/0/glyphs/106/size = Vector2(0, 0) +cache/0/16/0/glyphs/106/uv_rect = Rect2(101, 213, 4, 14) +cache/0/16/0/glyphs/106/texture_idx = 0 +cache/0/16/0/glyphs/74/advance = Vector2(3, 0) +cache/0/16/0/glyphs/74/offset = Vector2(-2, 1) +cache/0/16/0/glyphs/74/size = Vector2(0, 0) +cache/0/16/0/glyphs/74/uv_rect = Rect2(92, 195, 5, 13) +cache/0/16/0/glyphs/74/texture_idx = 0 +cache/0/16/0/glyphs/202/advance = Vector2(7, 0) +cache/0/16/0/glyphs/202/offset = Vector2(1, -2) +cache/0/16/0/glyphs/202/size = Vector2(0, 0) +cache/0/16/0/glyphs/202/uv_rect = Rect2(65, 202, 5, 13) +cache/0/16/0/glyphs/202/texture_idx = 0 +cache/0/16/0/glyphs/42/advance = Vector2(8, 0) +cache/0/16/0/glyphs/42/offset = Vector2(0, 0) +cache/0/16/0/glyphs/42/size = Vector2(0, 0) +cache/0/16/0/glyphs/42/uv_rect = Rect2(108, 80, 7, 6) +cache/0/16/0/glyphs/42/texture_idx = 0 +cache/0/16/0/glyphs/170/advance = Vector2(5, 0) +cache/0/16/0/glyphs/170/offset = Vector2(0, 1) +cache/0/16/0/glyphs/170/size = Vector2(0, 0) +cache/0/16/0/glyphs/170/uv_rect = Rect2(29, 205, 4, 5) +cache/0/16/0/glyphs/170/texture_idx = 0 +cache/0/16/0/glyphs/234/advance = Vector2(8, 0) +cache/0/16/0/glyphs/234/offset = Vector2(1, 0) +cache/0/16/0/glyphs/234/size = Vector2(0, 0) +cache/0/16/0/glyphs/234/uv_rect = Rect2(12, 181, 6, 11) +cache/0/16/0/glyphs/234/texture_idx = 0 +cache/0/16/0/glyphs/171/advance = Vector2(7, 0) +cache/0/16/0/glyphs/171/offset = Vector2(1, 4) +cache/0/16/0/glyphs/171/size = Vector2(0, 0) +cache/0/16/0/glyphs/171/uv_rect = Rect2(22, 181, 5, 6) +cache/0/16/0/glyphs/171/texture_idx = 0 +cache/0/16/0/glyphs/43/advance = Vector2(8, 0) +cache/0/16/0/glyphs/43/offset = Vector2(0, 3) +cache/0/16/0/glyphs/43/size = Vector2(0, 0) +cache/0/16/0/glyphs/43/uv_rect = Rect2(101, 94, 7, 7) +cache/0/16/0/glyphs/43/texture_idx = 0 +cache/0/16/0/glyphs/107/advance = Vector2(7, 0) +cache/0/16/0/glyphs/107/offset = Vector2(1, 0) +cache/0/16/0/glyphs/107/size = Vector2(0, 0) +cache/0/16/0/glyphs/107/uv_rect = Rect2(112, 92, 7, 11) +cache/0/16/0/glyphs/107/texture_idx = 0 +cache/0/16/0/glyphs/203/advance = Vector2(7, 0) +cache/0/16/0/glyphs/203/offset = Vector2(1, -2) +cache/0/16/0/glyphs/203/size = Vector2(0, 0) +cache/0/16/0/glyphs/203/uv_rect = Rect2(83, 200, 5, 13) +cache/0/16/0/glyphs/203/texture_idx = 0 +cache/0/16/0/glyphs/235/advance = Vector2(8, 0) +cache/0/16/0/glyphs/235/offset = Vector2(1, 0) +cache/0/16/0/glyphs/235/size = Vector2(0, 0) +cache/0/16/0/glyphs/235/uv_rect = Rect2(2, 171, 6, 11) +cache/0/16/0/glyphs/235/texture_idx = 0 +cache/0/16/0/glyphs/75/advance = Vector2(8, 0) +cache/0/16/0/glyphs/75/offset = Vector2(1, 1) +cache/0/16/0/glyphs/75/size = Vector2(0, 0) +cache/0/16/0/glyphs/75/uv_rect = Rect2(102, 66, 8, 10) +cache/0/16/0/glyphs/75/texture_idx = 0 +cache/0/16/0/glyphs/44/advance = Vector2(4, 0) +cache/0/16/0/glyphs/44/offset = Vector2(1, 9) +cache/0/16/0/glyphs/44/size = Vector2(0, 0) +cache/0/16/0/glyphs/44/uv_rect = Rect2(107, 231, 2, 3) +cache/0/16/0/glyphs/44/texture_idx = 0 +cache/0/16/0/glyphs/172/advance = Vector2(8, 0) +cache/0/16/0/glyphs/172/offset = Vector2(0, 6) +cache/0/16/0/glyphs/172/size = Vector2(0, 0) +cache/0/16/0/glyphs/172/uv_rect = Rect2(2, 104, 7, 4) +cache/0/16/0/glyphs/172/texture_idx = 0 +cache/0/16/0/glyphs/108/advance = Vector2(4, 0) +cache/0/16/0/glyphs/108/offset = Vector2(1, 0) +cache/0/16/0/glyphs/108/size = Vector2(0, 0) +cache/0/16/0/glyphs/108/uv_rect = Rect2(113, 228, 2, 11) +cache/0/16/0/glyphs/108/texture_idx = 0 +cache/0/16/0/glyphs/204/advance = Vector2(5, 0) +cache/0/16/0/glyphs/204/offset = Vector2(0, -2) +cache/0/16/0/glyphs/204/size = Vector2(0, 0) +cache/0/16/0/glyphs/204/uv_rect = Rect2(101, 196, 5, 13) +cache/0/16/0/glyphs/204/texture_idx = 0 +cache/0/16/0/glyphs/236/advance = Vector2(4, 0) +cache/0/16/0/glyphs/236/offset = Vector2(0, 0) +cache/0/16/0/glyphs/236/size = Vector2(0, 0) +cache/0/16/0/glyphs/236/uv_rect = Rect2(30, 214, 3, 11) +cache/0/16/0/glyphs/236/texture_idx = 0 +cache/0/16/0/glyphs/76/advance = Vector2(7, 0) +cache/0/16/0/glyphs/76/offset = Vector2(1, 1) +cache/0/16/0/glyphs/76/size = Vector2(0, 0) +cache/0/16/0/glyphs/76/uv_rect = Rect2(22, 124, 6, 10) +cache/0/16/0/glyphs/76/texture_idx = 0 +cache/0/16/0/glyphs/173/advance = Vector2(5, 0) +cache/0/16/0/glyphs/173/offset = Vector2(1, 7) +cache/0/16/0/glyphs/173/size = Vector2(0, 0) +cache/0/16/0/glyphs/173/uv_rect = Rect2(16, 229, 3, 2) +cache/0/16/0/glyphs/173/texture_idx = 0 +cache/0/16/0/glyphs/45/advance = Vector2(5, 0) +cache/0/16/0/glyphs/45/offset = Vector2(1, 7) +cache/0/16/0/glyphs/45/size = Vector2(0, 0) +cache/0/16/0/glyphs/45/uv_rect = Rect2(123, 201, 3, 2) +cache/0/16/0/glyphs/45/texture_idx = 0 +cache/0/16/0/glyphs/109/advance = Vector2(13, 0) +cache/0/16/0/glyphs/109/offset = Vector2(1, 3) +cache/0/16/0/glyphs/109/size = Vector2(0, 0) +cache/0/16/0/glyphs/109/uv_rect = Rect2(68, 2, 11, 8) +cache/0/16/0/glyphs/109/texture_idx = 0 +cache/0/16/0/glyphs/205/advance = Vector2(5, 0) +cache/0/16/0/glyphs/205/offset = Vector2(0, -2) +cache/0/16/0/glyphs/205/size = Vector2(0, 0) +cache/0/16/0/glyphs/205/uv_rect = Rect2(11, 211, 5, 13) +cache/0/16/0/glyphs/205/texture_idx = 0 +cache/0/16/0/glyphs/237/advance = Vector2(4, 0) +cache/0/16/0/glyphs/237/offset = Vector2(1, 0) +cache/0/16/0/glyphs/237/size = Vector2(0, 0) +cache/0/16/0/glyphs/237/uv_rect = Rect2(37, 214, 3, 11) +cache/0/16/0/glyphs/237/texture_idx = 0 +cache/0/16/0/glyphs/77/advance = Vector2(12, 0) +cache/0/16/0/glyphs/77/offset = Vector2(1, 1) +cache/0/16/0/glyphs/77/size = Vector2(0, 0) +cache/0/16/0/glyphs/77/uv_rect = Rect2(62, 20, 10, 10) +cache/0/16/0/glyphs/77/texture_idx = 0 +cache/0/16/0/glyphs/46/advance = Vector2(4, 0) +cache/0/16/0/glyphs/46/offset = Vector2(1, 9) +cache/0/16/0/glyphs/46/size = Vector2(0, 0) +cache/0/16/0/glyphs/46/uv_rect = Rect2(101, 231, 2, 2) +cache/0/16/0/glyphs/46/texture_idx = 0 +cache/0/16/0/glyphs/110/advance = Vector2(8, 0) +cache/0/16/0/glyphs/110/offset = Vector2(1, 3) +cache/0/16/0/glyphs/110/size = Vector2(0, 0) +cache/0/16/0/glyphs/110/uv_rect = Rect2(111, 107, 6, 8) +cache/0/16/0/glyphs/110/texture_idx = 0 +cache/0/16/0/glyphs/206/advance = Vector2(5, 0) +cache/0/16/0/glyphs/206/offset = Vector2(0, -2) +cache/0/16/0/glyphs/206/size = Vector2(0, 0) +cache/0/16/0/glyphs/206/uv_rect = Rect2(20, 212, 5, 13) +cache/0/16/0/glyphs/206/texture_idx = 0 +cache/0/16/0/glyphs/238/advance = Vector2(4, 0) +cache/0/16/0/glyphs/238/offset = Vector2(-1, 0) +cache/0/16/0/glyphs/238/size = Vector2(0, 0) +cache/0/16/0/glyphs/238/uv_rect = Rect2(11, 196, 5, 11) +cache/0/16/0/glyphs/238/texture_idx = 0 +cache/0/16/0/glyphs/174/advance = Vector2(12, 0) +cache/0/16/0/glyphs/174/offset = Vector2(1, 1) +cache/0/16/0/glyphs/174/size = Vector2(0, 0) +cache/0/16/0/glyphs/174/uv_rect = Rect2(30, 33, 10, 10) +cache/0/16/0/glyphs/174/texture_idx = 0 +cache/0/16/0/glyphs/78/advance = Vector2(10, 0) +cache/0/16/0/glyphs/78/offset = Vector2(1, 1) +cache/0/16/0/glyphs/78/size = Vector2(0, 0) +cache/0/16/0/glyphs/78/uv_rect = Rect2(2, 79, 8, 10) +cache/0/16/0/glyphs/78/texture_idx = 0 +cache/0/16/0/glyphs/175/advance = Vector2(7, 0) +cache/0/16/0/glyphs/175/offset = Vector2(0, -1) +cache/0/16/0/glyphs/175/size = Vector2(0, 0) +cache/0/16/0/glyphs/175/uv_rect = Rect2(35, 111, 7, 1) +cache/0/16/0/glyphs/175/texture_idx = 0 +cache/0/16/0/glyphs/111/advance = Vector2(8, 0) +cache/0/16/0/glyphs/111/offset = Vector2(1, 3) +cache/0/16/0/glyphs/111/size = Vector2(0, 0) +cache/0/16/0/glyphs/111/uv_rect = Rect2(102, 153, 6, 8) +cache/0/16/0/glyphs/111/texture_idx = 0 +cache/0/16/0/glyphs/207/advance = Vector2(5, 0) +cache/0/16/0/glyphs/207/offset = Vector2(0, -2) +cache/0/16/0/glyphs/207/size = Vector2(0, 0) +cache/0/16/0/glyphs/207/uv_rect = Rect2(119, 184, 5, 13) +cache/0/16/0/glyphs/207/texture_idx = 0 +cache/0/16/0/glyphs/239/advance = Vector2(4, 0) +cache/0/16/0/glyphs/239/offset = Vector2(0, 0) +cache/0/16/0/glyphs/239/size = Vector2(0, 0) +cache/0/16/0/glyphs/239/uv_rect = Rect2(69, 219, 4, 11) +cache/0/16/0/glyphs/239/texture_idx = 0 +cache/0/16/0/glyphs/79/advance = Vector2(11, 0) +cache/0/16/0/glyphs/79/offset = Vector2(1, 1) +cache/0/16/0/glyphs/79/size = Vector2(0, 0) +cache/0/16/0/glyphs/79/uv_rect = Rect2(41, 66, 9, 10) +cache/0/16/0/glyphs/79/texture_idx = 0 +cache/0/16/0/glyphs/47/advance = Vector2(5, 0) +cache/0/16/0/glyphs/47/offset = Vector2(-1, 1) +cache/0/16/0/glyphs/47/size = Vector2(0, 0) +cache/0/16/0/glyphs/47/uv_rect = Rect2(90, 105, 7, 10) +cache/0/16/0/glyphs/47/texture_idx = 0 +cache/0/16/0/glyphs/176/advance = Vector2(6, 0) +cache/0/16/0/glyphs/176/offset = Vector2(1, 1) +cache/0/16/0/glyphs/176/size = Vector2(0, 0) +cache/0/16/0/glyphs/176/uv_rect = Rect2(61, 219, 4, 4) +cache/0/16/0/glyphs/176/texture_idx = 0 +cache/0/16/0/glyphs/112/advance = Vector2(8, 0) +cache/0/16/0/glyphs/112/offset = Vector2(1, 3) +cache/0/16/0/glyphs/112/size = Vector2(0, 0) +cache/0/16/0/glyphs/112/uv_rect = Rect2(32, 150, 6, 11) +cache/0/16/0/glyphs/112/texture_idx = 0 +cache/0/16/0/glyphs/240/advance = Vector2(8, 0) +cache/0/16/0/glyphs/240/offset = Vector2(1, 0) +cache/0/16/0/glyphs/240/size = Vector2(0, 0) +cache/0/16/0/glyphs/240/uv_rect = Rect2(82, 165, 6, 11) +cache/0/16/0/glyphs/240/texture_idx = 0 +cache/0/16/0/glyphs/208/advance = Vector2(10, 0) +cache/0/16/0/glyphs/208/offset = Vector2(0, 1) +cache/0/16/0/glyphs/208/size = Vector2(0, 0) +cache/0/16/0/glyphs/208/uv_rect = Rect2(86, 33, 9, 10) +cache/0/16/0/glyphs/208/texture_idx = 0 +cache/0/16/0/glyphs/80/advance = Vector2(8, 0) +cache/0/16/0/glyphs/80/offset = Vector2(1, 1) +cache/0/16/0/glyphs/80/size = Vector2(0, 0) +cache/0/16/0/glyphs/80/uv_rect = Rect2(52, 128, 6, 10) +cache/0/16/0/glyphs/80/texture_idx = 0 +cache/0/16/0/glyphs/48/advance = Vector2(8, 0) +cache/0/16/0/glyphs/48/offset = Vector2(1, 1) +cache/0/16/0/glyphs/48/size = Vector2(0, 0) +cache/0/16/0/glyphs/48/uv_rect = Rect2(42, 135, 6, 10) +cache/0/16/0/glyphs/48/texture_idx = 0 +cache/0/16/0/glyphs/177/advance = Vector2(8, 0) +cache/0/16/0/glyphs/177/offset = Vector2(0, 3) +cache/0/16/0/glyphs/177/size = Vector2(0, 0) +cache/0/16/0/glyphs/177/uv_rect = Rect2(46, 97, 7, 8) +cache/0/16/0/glyphs/177/texture_idx = 0 +cache/0/16/0/glyphs/113/advance = Vector2(8, 0) +cache/0/16/0/glyphs/113/offset = Vector2(1, 3) +cache/0/16/0/glyphs/113/size = Vector2(0, 0) +cache/0/16/0/glyphs/113/uv_rect = Rect2(22, 152, 6, 11) +cache/0/16/0/glyphs/113/texture_idx = 0 +cache/0/16/0/glyphs/241/advance = Vector2(8, 0) +cache/0/16/0/glyphs/241/offset = Vector2(1, -1) +cache/0/16/0/glyphs/241/size = Vector2(0, 0) +cache/0/16/0/glyphs/241/uv_rect = Rect2(2, 112, 6, 12) +cache/0/16/0/glyphs/241/texture_idx = 0 +cache/0/16/0/glyphs/81/advance = Vector2(11, 0) +cache/0/16/0/glyphs/81/offset = Vector2(1, 1) +cache/0/16/0/glyphs/81/size = Vector2(0, 0) +cache/0/16/0/glyphs/81/uv_rect = Rect2(15, 59, 9, 13) +cache/0/16/0/glyphs/81/texture_idx = 0 +cache/0/16/0/glyphs/209/advance = Vector2(10, 0) +cache/0/16/0/glyphs/209/offset = Vector2(1, -3) +cache/0/16/0/glyphs/209/size = Vector2(0, 0) +cache/0/16/0/glyphs/209/uv_rect = Rect2(74, 80, 8, 14) +cache/0/16/0/glyphs/209/texture_idx = 0 +cache/0/16/0/glyphs/49/advance = Vector2(8, 0) +cache/0/16/0/glyphs/49/offset = Vector2(2, 1) +cache/0/16/0/glyphs/49/size = Vector2(0, 0) +cache/0/16/0/glyphs/49/uv_rect = Rect2(45, 212, 4, 10) +cache/0/16/0/glyphs/49/texture_idx = 0 +cache/0/16/0/glyphs/178/advance = Vector2(5, 0) +cache/0/16/0/glyphs/178/offset = Vector2(0, 1) +cache/0/16/0/glyphs/178/size = Vector2(0, 0) +cache/0/16/0/glyphs/178/uv_rect = Rect2(58, 187, 5, 6) +cache/0/16/0/glyphs/178/texture_idx = 0 +cache/0/16/0/glyphs/114/advance = Vector2(5, 0) +cache/0/16/0/glyphs/114/offset = Vector2(1, 3) +cache/0/16/0/glyphs/114/size = Vector2(0, 0) +cache/0/16/0/glyphs/114/uv_rect = Rect2(85, 217, 4, 8) +cache/0/16/0/glyphs/114/texture_idx = 0 +cache/0/16/0/glyphs/210/advance = Vector2(11, 0) +cache/0/16/0/glyphs/210/offset = Vector2(1, -2) +cache/0/16/0/glyphs/210/size = Vector2(0, 0) +cache/0/16/0/glyphs/210/uv_rect = Rect2(2, 62, 9, 13) +cache/0/16/0/glyphs/210/texture_idx = 0 +cache/0/16/0/glyphs/242/advance = Vector2(8, 0) +cache/0/16/0/glyphs/242/offset = Vector2(1, 0) +cache/0/16/0/glyphs/242/size = Vector2(0, 0) +cache/0/16/0/glyphs/242/uv_rect = Rect2(62, 165, 6, 11) +cache/0/16/0/glyphs/242/texture_idx = 0 +cache/0/16/0/glyphs/82/advance = Vector2(8, 0) +cache/0/16/0/glyphs/82/offset = Vector2(1, 1) +cache/0/16/0/glyphs/82/size = Vector2(0, 0) +cache/0/16/0/glyphs/82/uv_rect = Rect2(35, 97, 7, 10) +cache/0/16/0/glyphs/82/texture_idx = 0 +cache/0/16/0/glyphs/50/advance = Vector2(8, 0) +cache/0/16/0/glyphs/50/offset = Vector2(1, 1) +cache/0/16/0/glyphs/50/size = Vector2(0, 0) +cache/0/16/0/glyphs/50/uv_rect = Rect2(57, 114, 7, 10) +cache/0/16/0/glyphs/50/texture_idx = 0 +cache/0/16/0/glyphs/179/advance = Vector2(5, 0) +cache/0/16/0/glyphs/179/offset = Vector2(0, 1) +cache/0/16/0/glyphs/179/size = Vector2(0, 0) +cache/0/16/0/glyphs/179/uv_rect = Rect2(53, 214, 4, 6) +cache/0/16/0/glyphs/179/texture_idx = 0 +cache/0/16/0/glyphs/115/advance = Vector2(7, 0) +cache/0/16/0/glyphs/115/offset = Vector2(0, 3) +cache/0/16/0/glyphs/115/size = Vector2(0, 0) +cache/0/16/0/glyphs/115/uv_rect = Rect2(112, 146, 6, 8) +cache/0/16/0/glyphs/115/texture_idx = 0 +cache/0/16/0/glyphs/211/advance = Vector2(11, 0) +cache/0/16/0/glyphs/211/offset = Vector2(1, -2) +cache/0/16/0/glyphs/211/size = Vector2(0, 0) +cache/0/16/0/glyphs/211/uv_rect = Rect2(106, 49, 9, 13) +cache/0/16/0/glyphs/211/texture_idx = 0 +cache/0/16/0/glyphs/243/advance = Vector2(8, 0) +cache/0/16/0/glyphs/243/offset = Vector2(1, 0) +cache/0/16/0/glyphs/243/size = Vector2(0, 0) +cache/0/16/0/glyphs/243/uv_rect = Rect2(52, 172, 6, 11) +cache/0/16/0/glyphs/243/texture_idx = 0 +cache/0/16/0/glyphs/83/advance = Vector2(7, 0) +cache/0/16/0/glyphs/83/offset = Vector2(0, 1) +cache/0/16/0/glyphs/83/size = Vector2(0, 0) +cache/0/16/0/glyphs/83/uv_rect = Rect2(24, 96, 7, 10) +cache/0/16/0/glyphs/83/texture_idx = 0 +cache/0/16/0/glyphs/51/advance = Vector2(8, 0) +cache/0/16/0/glyphs/51/offset = Vector2(1, 1) +cache/0/16/0/glyphs/51/size = Vector2(0, 0) +cache/0/16/0/glyphs/51/uv_rect = Rect2(22, 138, 6, 10) +cache/0/16/0/glyphs/51/texture_idx = 0 +cache/0/16/0/glyphs/180/advance = Vector2(8, 0) +cache/0/16/0/glyphs/180/offset = Vector2(3, 0) +cache/0/16/0/glyphs/180/size = Vector2(0, 0) +cache/0/16/0/glyphs/180/uv_rect = Rect2(9, 228, 3, 2) +cache/0/16/0/glyphs/180/texture_idx = 0 +cache/0/16/0/glyphs/116/advance = Vector2(5, 0) +cache/0/16/0/glyphs/116/offset = Vector2(0, 1) +cache/0/16/0/glyphs/116/size = Vector2(0, 0) +cache/0/16/0/glyphs/116/uv_rect = Rect2(67, 188, 5, 10) +cache/0/16/0/glyphs/116/texture_idx = 0 +cache/0/16/0/glyphs/212/advance = Vector2(11, 0) +cache/0/16/0/glyphs/212/offset = Vector2(1, -2) +cache/0/16/0/glyphs/212/size = Vector2(0, 0) +cache/0/16/0/glyphs/212/uv_rect = Rect2(93, 49, 9, 13) +cache/0/16/0/glyphs/212/texture_idx = 0 +cache/0/16/0/glyphs/244/advance = Vector2(8, 0) +cache/0/16/0/glyphs/244/offset = Vector2(1, 0) +cache/0/16/0/glyphs/244/size = Vector2(0, 0) +cache/0/16/0/glyphs/244/uv_rect = Rect2(42, 164, 6, 11) +cache/0/16/0/glyphs/244/texture_idx = 0 +cache/0/16/0/glyphs/84/advance = Vector2(7, 0) +cache/0/16/0/glyphs/84/offset = Vector2(0, 1) +cache/0/16/0/glyphs/84/size = Vector2(0, 0) +cache/0/16/0/glyphs/84/uv_rect = Rect2(13, 93, 7, 10) +cache/0/16/0/glyphs/84/texture_idx = 0 +cache/0/16/0/glyphs/52/advance = Vector2(8, 0) +cache/0/16/0/glyphs/52/offset = Vector2(1, 1) +cache/0/16/0/glyphs/52/size = Vector2(0, 0) +cache/0/16/0/glyphs/52/uv_rect = Rect2(24, 110, 7, 10) +cache/0/16/0/glyphs/52/texture_idx = 0 +cache/0/16/0/glyphs/53/advance = Vector2(8, 0) +cache/0/16/0/glyphs/53/offset = Vector2(1, 1) +cache/0/16/0/glyphs/53/size = Vector2(0, 0) +cache/0/16/0/glyphs/53/uv_rect = Rect2(92, 119, 6, 10) +cache/0/16/0/glyphs/53/texture_idx = 0 +cache/0/16/0/glyphs/85/advance = Vector2(10, 0) +cache/0/16/0/glyphs/85/offset = Vector2(1, 1) +cache/0/16/0/glyphs/85/size = Vector2(0, 0) +cache/0/16/0/glyphs/85/uv_rect = Rect2(114, 66, 8, 10) +cache/0/16/0/glyphs/85/texture_idx = 0 +cache/0/16/0/glyphs/213/advance = Vector2(11, 0) +cache/0/16/0/glyphs/213/offset = Vector2(1, -3) +cache/0/16/0/glyphs/213/size = Vector2(0, 0) +cache/0/16/0/glyphs/213/uv_rect = Rect2(2, 44, 9, 14) +cache/0/16/0/glyphs/213/texture_idx = 0 +cache/0/16/0/glyphs/117/advance = Vector2(8, 0) +cache/0/16/0/glyphs/117/offset = Vector2(1, 3) +cache/0/16/0/glyphs/117/size = Vector2(0, 0) +cache/0/16/0/glyphs/117/uv_rect = Rect2(42, 123, 6, 8) +cache/0/16/0/glyphs/117/texture_idx = 0 +cache/0/16/0/glyphs/181/advance = Vector2(8, 0) +cache/0/16/0/glyphs/181/offset = Vector2(1, 3) +cache/0/16/0/glyphs/181/size = Vector2(0, 0) +cache/0/16/0/glyphs/181/uv_rect = Rect2(2, 140, 6, 11) +cache/0/16/0/glyphs/181/texture_idx = 0 +cache/0/16/0/glyphs/245/advance = Vector2(8, 0) +cache/0/16/0/glyphs/245/offset = Vector2(1, -1) +cache/0/16/0/glyphs/245/size = Vector2(0, 0) +cache/0/16/0/glyphs/245/uv_rect = Rect2(12, 165, 6, 12) +cache/0/16/0/glyphs/245/texture_idx = 0 +cache/0/16/0/glyphs/54/advance = Vector2(8, 0) +cache/0/16/0/glyphs/54/offset = Vector2(1, 1) +cache/0/16/0/glyphs/54/size = Vector2(0, 0) +cache/0/16/0/glyphs/54/uv_rect = Rect2(82, 121, 6, 10) +cache/0/16/0/glyphs/54/texture_idx = 0 +cache/0/16/0/glyphs/86/advance = Vector2(8, 0) +cache/0/16/0/glyphs/86/offset = Vector2(-1, 1) +cache/0/16/0/glyphs/86/size = Vector2(0, 0) +cache/0/16/0/glyphs/86/uv_rect = Rect2(76, 18, 10, 10) +cache/0/16/0/glyphs/86/texture_idx = 0 +cache/0/16/0/glyphs/246/advance = Vector2(8, 0) +cache/0/16/0/glyphs/246/offset = Vector2(1, 0) +cache/0/16/0/glyphs/246/size = Vector2(0, 0) +cache/0/16/0/glyphs/246/uv_rect = Rect2(72, 173, 6, 11) +cache/0/16/0/glyphs/246/texture_idx = 0 +cache/0/16/0/glyphs/214/advance = Vector2(11, 0) +cache/0/16/0/glyphs/214/offset = Vector2(1, -2) +cache/0/16/0/glyphs/214/size = Vector2(0, 0) +cache/0/16/0/glyphs/214/uv_rect = Rect2(80, 49, 9, 13) +cache/0/16/0/glyphs/214/texture_idx = 0 +cache/0/16/0/glyphs/182/advance = Vector2(9, 0) +cache/0/16/0/glyphs/182/offset = Vector2(1, 0) +cache/0/16/0/glyphs/182/size = Vector2(0, 0) +cache/0/16/0/glyphs/182/uv_rect = Rect2(68, 98, 7, 13) +cache/0/16/0/glyphs/182/texture_idx = 0 +cache/0/16/0/glyphs/118/advance = Vector2(7, 0) +cache/0/16/0/glyphs/118/offset = Vector2(-1, 3) +cache/0/16/0/glyphs/118/size = Vector2(0, 0) +cache/0/16/0/glyphs/118/uv_rect = Rect2(15, 47, 9, 8) +cache/0/16/0/glyphs/118/texture_idx = 0 +cache/0/16/0/glyphs/55/advance = Vector2(8, 0) +cache/0/16/0/glyphs/55/offset = Vector2(1, 1) +cache/0/16/0/glyphs/55/size = Vector2(0, 0) +cache/0/16/0/glyphs/55/uv_rect = Rect2(72, 129, 6, 10) +cache/0/16/0/glyphs/55/texture_idx = 0 +cache/0/16/0/glyphs/87/advance = Vector2(13, 0) +cache/0/16/0/glyphs/87/offset = Vector2(-1, 1) +cache/0/16/0/glyphs/87/size = Vector2(0, 0) +cache/0/16/0/glyphs/87/uv_rect = Rect2(2, 2, 15, 10) +cache/0/16/0/glyphs/87/texture_idx = 0 +cache/0/16/0/glyphs/119/advance = Vector2(10, 0) +cache/0/16/0/glyphs/119/offset = Vector2(-1, 3) +cache/0/16/0/glyphs/119/size = Vector2(0, 0) +cache/0/16/0/glyphs/119/uv_rect = Rect2(37, 2, 12, 8) +cache/0/16/0/glyphs/119/texture_idx = 0 +cache/0/16/0/glyphs/247/advance = Vector2(8, 0) +cache/0/16/0/glyphs/247/offset = Vector2(0, 3) +cache/0/16/0/glyphs/247/size = Vector2(0, 0) +cache/0/16/0/glyphs/247/uv_rect = Rect2(90, 94, 7, 7) +cache/0/16/0/glyphs/247/texture_idx = 0 +cache/0/16/0/glyphs/215/advance = Vector2(8, 0) +cache/0/16/0/glyphs/215/offset = Vector2(0, 3) +cache/0/16/0/glyphs/215/size = Vector2(0, 0) +cache/0/16/0/glyphs/215/uv_rect = Rect2(2, 93, 7, 7) +cache/0/16/0/glyphs/215/texture_idx = 0 +cache/0/16/0/glyphs/183/advance = Vector2(4, 0) +cache/0/16/0/glyphs/183/offset = Vector2(1, 5) +cache/0/16/0/glyphs/183/size = Vector2(0, 0) +cache/0/16/0/glyphs/183/uv_rect = Rect2(77, 223, 2, 2) +cache/0/16/0/glyphs/183/texture_idx = 0 +cache/0/16/0/glyphs/56/advance = Vector2(8, 0) +cache/0/16/0/glyphs/56/offset = Vector2(1, 1) +cache/0/16/0/glyphs/56/size = Vector2(0, 0) +cache/0/16/0/glyphs/56/uv_rect = Rect2(62, 129, 6, 10) +cache/0/16/0/glyphs/56/texture_idx = 0 +cache/0/16/0/glyphs/88/advance = Vector2(8, 0) +cache/0/16/0/glyphs/88/offset = Vector2(-1, 1) +cache/0/16/0/glyphs/88/size = Vector2(0, 0) +cache/0/16/0/glyphs/88/uv_rect = Rect2(90, 19, 10, 10) +cache/0/16/0/glyphs/88/texture_idx = 0 +cache/0/16/0/glyphs/216/advance = Vector2(11, 0) +cache/0/16/0/glyphs/216/offset = Vector2(1, 0) +cache/0/16/0/glyphs/216/size = Vector2(0, 0) +cache/0/16/0/glyphs/216/uv_rect = Rect2(99, 33, 9, 12) +cache/0/16/0/glyphs/216/texture_idx = 0 +cache/0/16/0/glyphs/248/advance = Vector2(8, 0) +cache/0/16/0/glyphs/248/offset = Vector2(1, 3) +cache/0/16/0/glyphs/248/size = Vector2(0, 0) +cache/0/16/0/glyphs/248/uv_rect = Rect2(2, 128, 6, 8) +cache/0/16/0/glyphs/248/texture_idx = 0 +cache/0/16/0/glyphs/120/advance = Vector2(7, 0) +cache/0/16/0/glyphs/120/offset = Vector2(0, 3) +cache/0/16/0/glyphs/120/size = Vector2(0, 0) +cache/0/16/0/glyphs/120/uv_rect = Rect2(119, 80, 7, 8) +cache/0/16/0/glyphs/120/texture_idx = 0 +cache/0/16/0/glyphs/184/advance = Vector2(3, 0) +cache/0/16/0/glyphs/184/offset = Vector2(0, 11) +cache/0/16/0/glyphs/184/size = Vector2(0, 0) +cache/0/16/0/glyphs/184/uv_rect = Rect2(116, 212, 3, 3) +cache/0/16/0/glyphs/184/texture_idx = 0 +cache/0/16/0/glyphs/89/advance = Vector2(7, 0) +cache/0/16/0/glyphs/89/offset = Vector2(-1, 1) +cache/0/16/0/glyphs/89/size = Vector2(0, 0) +cache/0/16/0/glyphs/89/uv_rect = Rect2(28, 65, 9, 10) +cache/0/16/0/glyphs/89/texture_idx = 0 +cache/0/16/0/glyphs/217/advance = Vector2(10, 0) +cache/0/16/0/glyphs/217/offset = Vector2(1, -2) +cache/0/16/0/glyphs/217/size = Vector2(0, 0) +cache/0/16/0/glyphs/217/uv_rect = Rect2(38, 80, 8, 13) +cache/0/16/0/glyphs/217/texture_idx = 0 +cache/0/16/0/glyphs/249/advance = Vector2(8, 0) +cache/0/16/0/glyphs/249/offset = Vector2(1, 0) +cache/0/16/0/glyphs/249/size = Vector2(0, 0) +cache/0/16/0/glyphs/249/uv_rect = Rect2(52, 157, 6, 11) +cache/0/16/0/glyphs/249/texture_idx = 0 +cache/0/16/0/glyphs/121/advance = Vector2(7, 0) +cache/0/16/0/glyphs/121/offset = Vector2(-1, 3) +cache/0/16/0/glyphs/121/size = Vector2(0, 0) +cache/0/16/0/glyphs/121/uv_rect = Rect2(112, 33, 9, 11) +cache/0/16/0/glyphs/121/texture_idx = 0 +cache/0/16/0/glyphs/57/advance = Vector2(8, 0) +cache/0/16/0/glyphs/57/offset = Vector2(1, 1) +cache/0/16/0/glyphs/57/size = Vector2(0, 0) +cache/0/16/0/glyphs/57/uv_rect = Rect2(12, 122, 6, 10) +cache/0/16/0/glyphs/57/texture_idx = 0 +cache/0/16/0/glyphs/185/advance = Vector2(5, 0) +cache/0/16/0/glyphs/185/offset = Vector2(0, 1) +cache/0/16/0/glyphs/185/size = Vector2(0, 0) +cache/0/16/0/glyphs/185/uv_rect = Rect2(23, 229, 3, 6) +cache/0/16/0/glyphs/185/texture_idx = 0 +cache/0/16/0/glyphs/218/advance = Vector2(10, 0) +cache/0/16/0/glyphs/218/offset = Vector2(1, -2) +cache/0/16/0/glyphs/218/size = Vector2(0, 0) +cache/0/16/0/glyphs/218/uv_rect = Rect2(26, 79, 8, 13) +cache/0/16/0/glyphs/218/texture_idx = 0 +cache/0/16/0/glyphs/250/advance = Vector2(8, 0) +cache/0/16/0/glyphs/250/offset = Vector2(1, 0) +cache/0/16/0/glyphs/250/size = Vector2(0, 0) +cache/0/16/0/glyphs/250/uv_rect = Rect2(42, 149, 6, 11) +cache/0/16/0/glyphs/250/texture_idx = 0 +cache/0/16/0/glyphs/90/advance = Vector2(8, 0) +cache/0/16/0/glyphs/90/offset = Vector2(1, 1) +cache/0/16/0/glyphs/90/size = Vector2(0, 0) +cache/0/16/0/glyphs/90/uv_rect = Rect2(32, 136, 6, 10) +cache/0/16/0/glyphs/90/texture_idx = 0 +cache/0/16/0/glyphs/122/advance = Vector2(7, 0) +cache/0/16/0/glyphs/122/offset = Vector2(1, 3) +cache/0/16/0/glyphs/122/size = Vector2(0, 0) +cache/0/16/0/glyphs/122/uv_rect = Rect2(112, 119, 6, 8) +cache/0/16/0/glyphs/122/texture_idx = 0 +cache/0/16/0/glyphs/58/advance = Vector2(4, 0) +cache/0/16/0/glyphs/58/offset = Vector2(1, 3) +cache/0/16/0/glyphs/58/size = Vector2(0, 0) +cache/0/16/0/glyphs/58/uv_rect = Rect2(89, 229, 2, 8) +cache/0/16/0/glyphs/58/texture_idx = 0 +cache/0/16/0/glyphs/186/advance = Vector2(5, 0) +cache/0/16/0/glyphs/186/offset = Vector2(0, 1) +cache/0/16/0/glyphs/186/size = Vector2(0, 0) +cache/0/16/0/glyphs/186/uv_rect = Rect2(37, 205, 4, 5) +cache/0/16/0/glyphs/186/texture_idx = 0 +cache/0/16/0/glyphs/219/advance = Vector2(10, 0) +cache/0/16/0/glyphs/219/offset = Vector2(1, -2) +cache/0/16/0/glyphs/219/size = Vector2(0, 0) +cache/0/16/0/glyphs/219/uv_rect = Rect2(50, 80, 8, 13) +cache/0/16/0/glyphs/219/texture_idx = 0 +cache/0/16/0/glyphs/91/advance = Vector2(4, 0) +cache/0/16/0/glyphs/91/offset = Vector2(1, 1) +cache/0/16/0/glyphs/91/size = Vector2(0, 0) +cache/0/16/0/glyphs/91/uv_rect = Rect2(58, 227, 3, 12) +cache/0/16/0/glyphs/91/texture_idx = 0 +cache/0/16/0/glyphs/123/advance = Vector2(5, 0) +cache/0/16/0/glyphs/123/offset = Vector2(0, 1) +cache/0/16/0/glyphs/123/size = Vector2(0, 0) +cache/0/16/0/glyphs/123/uv_rect = Rect2(103, 180, 5, 12) +cache/0/16/0/glyphs/123/texture_idx = 0 +cache/0/16/0/glyphs/251/advance = Vector2(8, 0) +cache/0/16/0/glyphs/251/offset = Vector2(1, 0) +cache/0/16/0/glyphs/251/size = Vector2(0, 0) +cache/0/16/0/glyphs/251/uv_rect = Rect2(12, 150, 6, 11) +cache/0/16/0/glyphs/251/texture_idx = 0 +cache/0/16/0/glyphs/59/advance = Vector2(4, 0) +cache/0/16/0/glyphs/59/offset = Vector2(1, 3) +cache/0/16/0/glyphs/59/size = Vector2(0, 0) +cache/0/16/0/glyphs/59/uv_rect = Rect2(71, 234, 2, 9) +cache/0/16/0/glyphs/59/texture_idx = 0 +cache/0/16/0/glyphs/187/advance = Vector2(7, 0) +cache/0/16/0/glyphs/187/offset = Vector2(1, 4) +cache/0/16/0/glyphs/187/size = Vector2(0, 0) +cache/0/16/0/glyphs/187/uv_rect = Rect2(31, 181, 5, 6) +cache/0/16/0/glyphs/187/texture_idx = 0 +cache/0/16/0/glyphs/188/advance = Vector2(10, 0) +cache/0/16/0/glyphs/188/offset = Vector2(0, 1) +cache/0/16/0/glyphs/188/size = Vector2(0, 0) +cache/0/16/0/glyphs/188/uv_rect = Rect2(16, 33, 10, 10) +cache/0/16/0/glyphs/188/texture_idx = 0 +cache/0/16/0/glyphs/124/advance = Vector2(7, 0) +cache/0/16/0/glyphs/124/offset = Vector2(3, 0) +cache/0/16/0/glyphs/124/size = Vector2(0, 0) +cache/0/16/0/glyphs/124/uv_rect = Rect2(83, 229, 2, 14) +cache/0/16/0/glyphs/124/texture_idx = 0 +cache/0/16/0/glyphs/220/advance = Vector2(10, 0) +cache/0/16/0/glyphs/220/offset = Vector2(1, -2) +cache/0/16/0/glyphs/220/size = Vector2(0, 0) +cache/0/16/0/glyphs/220/uv_rect = Rect2(62, 79, 8, 13) +cache/0/16/0/glyphs/220/texture_idx = 0 +cache/0/16/0/glyphs/252/advance = Vector2(8, 0) +cache/0/16/0/glyphs/252/offset = Vector2(1, 0) +cache/0/16/0/glyphs/252/size = Vector2(0, 0) +cache/0/16/0/glyphs/252/uv_rect = Rect2(92, 133, 6, 11) +cache/0/16/0/glyphs/252/texture_idx = 0 +cache/0/16/0/glyphs/92/advance = Vector2(5, 0) +cache/0/16/0/glyphs/92/offset = Vector2(-1, 1) +cache/0/16/0/glyphs/92/size = Vector2(0, 0) +cache/0/16/0/glyphs/92/uv_rect = Rect2(97, 80, 7, 10) +cache/0/16/0/glyphs/92/texture_idx = 0 +cache/0/16/0/glyphs/60/advance = Vector2(8, 0) +cache/0/16/0/glyphs/60/offset = Vector2(1, 3) +cache/0/16/0/glyphs/60/size = Vector2(0, 0) +cache/0/16/0/glyphs/60/uv_rect = Rect2(92, 153, 6, 7) +cache/0/16/0/glyphs/60/texture_idx = 0 +cache/0/16/0/glyphs/189/advance = Vector2(10, 0) +cache/0/16/0/glyphs/189/offset = Vector2(0, 1) +cache/0/16/0/glyphs/189/size = Vector2(0, 0) +cache/0/16/0/glyphs/189/uv_rect = Rect2(47, 20, 11, 10) +cache/0/16/0/glyphs/189/texture_idx = 0 +cache/0/16/0/glyphs/253/advance = Vector2(7, 0) +cache/0/16/0/glyphs/253/offset = Vector2(-1, 0) +cache/0/16/0/glyphs/253/size = Vector2(0, 0) +cache/0/16/0/glyphs/253/uv_rect = Rect2(28, 47, 9, 14) +cache/0/16/0/glyphs/253/texture_idx = 0 +cache/0/16/0/glyphs/221/advance = Vector2(7, 0) +cache/0/16/0/glyphs/221/offset = Vector2(-1, -2) +cache/0/16/0/glyphs/221/size = Vector2(0, 0) +cache/0/16/0/glyphs/221/uv_rect = Rect2(54, 48, 9, 13) +cache/0/16/0/glyphs/221/texture_idx = 0 +cache/0/16/0/glyphs/93/advance = Vector2(4, 0) +cache/0/16/0/glyphs/93/offset = Vector2(0, 1) +cache/0/16/0/glyphs/93/size = Vector2(0, 0) +cache/0/16/0/glyphs/93/uv_rect = Rect2(44, 226, 3, 12) +cache/0/16/0/glyphs/93/texture_idx = 0 +cache/0/16/0/glyphs/125/advance = Vector2(5, 0) +cache/0/16/0/glyphs/125/offset = Vector2(0, 1) +cache/0/16/0/glyphs/125/size = Vector2(0, 0) +cache/0/16/0/glyphs/125/uv_rect = Rect2(110, 196, 5, 12) +cache/0/16/0/glyphs/125/texture_idx = 0 +cache/0/16/0/glyphs/61/advance = Vector2(8, 0) +cache/0/16/0/glyphs/61/offset = Vector2(0, 4) +cache/0/16/0/glyphs/61/size = Vector2(0, 0) +cache/0/16/0/glyphs/61/uv_rect = Rect2(79, 112, 7, 5) +cache/0/16/0/glyphs/61/texture_idx = 0 +cache/0/16/0/glyphs/190/advance = Vector2(10, 0) +cache/0/16/0/glyphs/190/offset = Vector2(0, 1) +cache/0/16/0/glyphs/190/size = Vector2(0, 0) +cache/0/16/0/glyphs/190/uv_rect = Rect2(104, 19, 10, 10) +cache/0/16/0/glyphs/190/texture_idx = 0 +cache/0/16/0/glyphs/222/advance = Vector2(8, 0) +cache/0/16/0/glyphs/222/offset = Vector2(1, 1) +cache/0/16/0/glyphs/222/size = Vector2(0, 0) +cache/0/16/0/glyphs/222/uv_rect = Rect2(32, 165, 6, 10) +cache/0/16/0/glyphs/222/texture_idx = 0 +cache/0/16/0/glyphs/254/advance = Vector2(8, 0) +cache/0/16/0/glyphs/254/offset = Vector2(1, 0) +cache/0/16/0/glyphs/254/size = Vector2(0, 0) +cache/0/16/0/glyphs/254/uv_rect = Rect2(102, 119, 6, 14) +cache/0/16/0/glyphs/254/texture_idx = 0 +cache/0/16/0/glyphs/62/advance = Vector2(8, 0) +cache/0/16/0/glyphs/62/offset = Vector2(1, 3) +cache/0/16/0/glyphs/62/size = Vector2(0, 0) +cache/0/16/0/glyphs/62/uv_rect = Rect2(112, 158, 6, 7) +cache/0/16/0/glyphs/62/texture_idx = 0 +cache/0/16/0/glyphs/94/advance = Vector2(7, 0) +cache/0/16/0/glyphs/94/offset = Vector2(0, 1) +cache/0/16/0/glyphs/94/size = Vector2(0, 0) +cache/0/16/0/glyphs/94/uv_rect = Rect2(86, 80, 7, 6) +cache/0/16/0/glyphs/94/texture_idx = 0 +cache/0/16/0/glyphs/126/advance = Vector2(8, 0) +cache/0/16/0/glyphs/126/offset = Vector2(1, 5) +cache/0/16/0/glyphs/126/size = Vector2(0, 0) +cache/0/16/0/glyphs/126/uv_rect = Rect2(62, 158, 6, 3) +cache/0/16/0/glyphs/126/texture_idx = 0 +cache/0/16/0/glyphs/223/advance = Vector2(8, 0) +cache/0/16/0/glyphs/223/offset = Vector2(1, 0) +cache/0/16/0/glyphs/223/size = Vector2(0, 0) +cache/0/16/0/glyphs/223/uv_rect = Rect2(82, 135, 6, 11) +cache/0/16/0/glyphs/223/texture_idx = 0 +cache/0/16/0/glyphs/255/advance = Vector2(7, 0) +cache/0/16/0/glyphs/255/offset = Vector2(-1, 0) +cache/0/16/0/glyphs/255/size = Vector2(0, 0) +cache/0/16/0/glyphs/255/uv_rect = Rect2(41, 48, 9, 14) +cache/0/16/0/glyphs/255/texture_idx = 0 +cache/0/16/0/glyphs/191/advance = Vector2(6, 0) +cache/0/16/0/glyphs/191/offset = Vector2(0, 3) +cache/0/16/0/glyphs/191/size = Vector2(0, 0) +cache/0/16/0/glyphs/191/uv_rect = Rect2(94, 180, 5, 11) +cache/0/16/0/glyphs/191/texture_idx = 0 +cache/0/16/0/glyphs/63/advance = Vector2(6, 0) +cache/0/16/0/glyphs/63/offset = Vector2(0, 1) +cache/0/16/0/glyphs/63/size = Vector2(0, 0) +cache/0/16/0/glyphs/63/uv_rect = Rect2(74, 202, 5, 10) +cache/0/16/0/glyphs/63/texture_idx = 0 +cache/0/16/0/glyphs/95/advance = Vector2(6, 0) +cache/0/16/0/glyphs/95/offset = Vector2(0, 12) +cache/0/16/0/glyphs/95/size = Vector2(0, 0) +cache/0/16/0/glyphs/95/uv_rect = Rect2(92, 148, 6, 1) +cache/0/16/0/glyphs/95/texture_idx = 0 +cache/0/16/0/kerning_overrides/16/0 = Vector2(0, 0) + +[sub_resource type="Image" id="Image_kd214"] +data = { +"data": PackedByteArray("4ODg4ODg4OD//////////+Dg4ODg4ODg///////////g4ODg4ODg4P//////////4ODg4ODg4OD//////////+Dg4ODg4ODg///////////g4ODg4ODg4P//////////4ODg4ODg4OD//////////+Dg4ODg4ODg/////////////////////+Dg4ODg4ODg///////////g4ODg4ODg4P//////////4ODg4ODg4OD//////////+Dg4ODg4ODg///////////g4ODg4ODg4P//////////4ODg4ODg4OD//////////+Dg4ODg4ODg///////////g4ODg4ODg4A=="), +"format": "Lum8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="447"] +image = SubResource("Image_kd214") + +[sub_resource type="Image" id="Image_6u37h"] +data = { +"data": PackedByteArray("AAQACgARABkAHwAiACQAJAAkACQAIgAfABkAEQAKAAQACgAVACUANAA/AEYARwBIAEgARwBGAD8ANAAlABUACgARACU/d1rvVv9W/1b/Vv9W/1b/Vv9W/1rvP3cAJQARABkANFnvSP9E/0P/Q/9D/0P/Q/9D/0T/SP9Z7wA0ABkAHwA/VP9D/0P/Q/9D/0P/Q/9D/0P/Q/9D/1T/AD8AHwAiAEZS/0L/Qv9C/0L/Qv9C/0L/Qv9C/0L/Uv8ARgAiACQAR1H/QP9A/0D/QP9A/0D/QP9A/0D/QP9R/wBHACQAJABIT/8//z//P/8//z//P/8//z//P/8//0//AEgAJAAkAEhN/z7/Pv8+/z7/Pv8+/z7/Pv8+/z7/Tf8ASAAkACQAR0z/Pf89/z3/Pf89/z3/Pf89/z3/Pf9M/wBHACQAIgBGSv87/zv/O/87/zv/O/87/zv/O/87/0r/AEYAIgAfAD9J/zr/Ov86/zr/Ov86/zr/Ov86/zr/Sf8APwAfABkANEvvPf85/zn/Of85/zn/Of85/zn/Pf9L7wA0ABkAEQAlNXdK70f/Rv9G/0b/Rv9G/0b/R/9K7TV3ACUAEQAKABUAJQA0AD8ARgBHAEgASABHAEYAPwA0ACUAFQAKAAQACgARABkAHwAiACQAJAAkACQAIgAfABkAEQAKAAQ="), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="53"] +image = SubResource("Image_6u37h") + +[sub_resource type="StyleBoxTexture" id="54"] +content_margin_left = 6.0 +content_margin_top = 2.0 +content_margin_right = 6.0 +content_margin_bottom = 2.0 +texture = SubResource("53") +expand_margin_left = 2.0 +expand_margin_top = 2.0 +expand_margin_right = 2.0 +expand_margin_bottom = 2.0 +region_rect = Rect2(0, 0, 16, 16) + +[sub_resource type="Image" id="Image_avtcf"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEeMvw5HjL85R4y/aEeMv3pHjL97R4y/e0eMv3tHjL97R4y/ekeMv2hHjL85R4y/DgAAAAAAAAAAAAAAAAAAAABHjL86R4y/dEeMvxBHjL8IR4y/CEeMvwhHjL8IR4y/CEeMvwhHjL8QR4y/dEeMvzoAAAAAAAAAAAAAAAAAAAAAR4y/aUeMvw8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEeMvw9HjL9pAAAAAAAAAAAAAAAAAAAAAEeMv3tHjL8GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHjL8GR4y/ewAAAAAAAAAAAAAAAAAAAABHjL97R4y/CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAR4y/CEeMv3sAAAAAAAAAAAAAAAAAAAAAR4y/e0eMvwgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEeMvwhHjL97AAAAAAAAAAAAAAAAAAAAAEeMv3tHjL8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHjL8IR4y/ewAAAAAAAAAAAAAAAAAAAABHjL97R4y/CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAR4y/CEeMv3sAAAAAAAAAAAAAAAAAAAAAR4y/e0eMvwYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEeMvwZHjL97AAAAAAAAAAAAAAAAAAAAAEeMv2lHjL8PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHjL8OR4y/aQAAAAAAAAAAAAAAAAAAAABHjL86R4y/dUeMvw9HjL8IR4y/CEeMvwhHjL8IR4y/CEeMvwhHjL8RR4y/dEeMvzoAAAAAAAAAAAAAAAAAAAAAR4y/DkeMvzpHjL9oR4y/ekeMv3tHjL97R4y/e0eMv3tHjL96R4y/aEeMvzlHjL8OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="56"] +image = SubResource("Image_avtcf") + +[sub_resource type="StyleBoxTexture" id="57"] +content_margin_left = 6.0 +content_margin_top = 2.0 +content_margin_right = 6.0 +content_margin_bottom = 2.0 +texture = SubResource("56") +expand_margin_left = 2.0 +expand_margin_top = 2.0 +expand_margin_right = 2.0 +expand_margin_bottom = 2.0 +region_rect = Rect2(0, 0, 16, 16) + +[sub_resource type="Image" id="Image_p700i"] +data = { +"data": PackedByteArray("AAAABAAAAAoAAAARAAAAGQAAAB8AAAAiAAAAJAAAACQAAAAkAAAAJAAAACIAAAAfAAAAGQAAABEAAAAKAAAABAAAAAoAAAAVAAAAJQAAADQAAAA/AAAARgAAAEcAAABIAAAASAAAAEcAAABGAAAAPwAAADQAAAAlAAAAFQAAAAoAAAARAAAAJUJAS3dfWmzvW1do/1pWZ/9aVmf/WlZn/1pWZ/9aVmf/WlZn/1tXaP9fWmzvQkBLdwAAACUAAAARAAAAGQAAADRfWmvvTUpX/0lGUv9IRVH/SEVR/0hFUf9IRVH/SEVR/0hFUf9JRlL/TUpX/19aa+8AAAA0AAAAGQAAAB8AAAA/W1dm/0lGUv9IRVH/SEVR/0hFUf9IRVH/SEVR/0hFUf9IRVH/SEVR/0lGUv9bV2b/AAAAPwAAAB8AAAAiAAAARllVZP9HRFD/R0RQ/0dEUP9HRFD/R0RQ/0dEUP9HRFD/R0RQ/0dEUP9HRFD/WVVk/wAAAEYAAAAiAAAAJAAAAEdYVGT/RkNQ/0ZDUP9GQ1D/RkNQ/0ZDUP9GQ1D/RkNQ/0ZDUP9GQ1D/RkNQ/1hUZP8AAABHAAAAJAAAACQAAABIVlNj/0VCT/9FQk//RUJP/0VCT/9FQk//RUJP/0VCT/9FQk//RUJP/0VCT/9WU2P/AAAASAAAACQAAAAkAAAASFZTYv9FQk7/RUJO/0VCTv9FQk7/RUJO/0VCTv9FQk7/RUJO/0VCTv9FQk7/VlNi/wAAAEgAAAAkAAAAJAAAAEdVUWL/REFO/0RBTv9EQU7/REFO/0RBTv9EQU7/REFO/0RBTv9EQU7/REFO/1VRYv8AAABHAAAAJAAAACIAAABGVVFg/0RBTf9EQU3/REFN/0RBTf9EQU3/REFN/0RBTf9EQU3/REFN/0RBTf9VUWD/AAAARgAAACIAAAAfAAAAP1VRYP9EQU3/Q0BM/0NATP9DQEz/Q0BM/0NATP9DQEz/Q0BM/0NATP9EQU3/VVFg/wAAAD8AAAAfAAAAGQAAADRWU2TvR0NR/0M/Tf9CP0z/Qj9M/0I/TP9CP0z/Qj9M/0I/TP9DP03/R0NR/1dTZO8AAAA0AAAAGQAAABEAAAAlPjtGd1dTY+9TUF//U09e/1NPXv9TT17/U09e/1NPXv9TT17/U1Bf/1dTY+0+O0Z3AAAAJQAAABEAAAAKAAAAFQAAACUAAAA0AAAAPwAAAEYAAABHAAAASAAAAEgAAABHAAAARgAAAD8AAAA0AAAAJQAAABUAAAAKAAAABAAAAAoAAAARAAAAGQAAAB8AAAAiAAAAJAAAACQAAAAkAAAAJAAAACIAAAAfAAAAGQAAABEAAAAKAAAABA=="), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="59"] +image = SubResource("Image_p700i") + +[sub_resource type="StyleBoxTexture" id="60"] +content_margin_left = 6.0 +content_margin_top = 2.0 +content_margin_right = 6.0 +content_margin_bottom = 2.0 +texture = SubResource("59") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +expand_margin_left = 2.0 +expand_margin_top = 2.0 +expand_margin_right = 2.0 +expand_margin_bottom = 2.0 +region_rect = Rect2(0, 0, 16, 16) + +[sub_resource type="Image" id="Image_it78i"] +data = { +"data": PackedByteArray("AAAABAAAAAoAAAARAAAAGQAAAB8AAAAiAAAAJAAAACQAAAAkAAAAJAAAACIAAAAfAAAAGQAAABEAAAAKAAAABAAAAAoAAAAVAAAAJQAAADQAAAA/AAAARgAAAEcAAABIAAAASAAAAEcAAABGAAAAPwAAADQAAAAlAAAAFQAAAAoAAAARAAAAJTw6RHdWU2HvUlBd/1FPXf9RT13/UU9d/1FPXf9RT13/UU9d/1JQXf9WU2HvPDpEdwAAACUAAAARAAAAGQAAADRWUmDvRkJO/0I+Sv9BPkn/QT5J/0E+Sf9BPkn/QT5J/0E+Sf9CPkr/RkJO/1ZSYO8AAAA0AAAAGQAAAB8AAAA/UU5b/0E+Sf9APkj/QD5I/0A+SP9APkj/QD5I/0A+SP9APkj/QD5I/0E+Sf9RTlv/AAAAPwAAAB8AAAAiAAAARk9MWf8/PUf/Pz1H/z89R/8/PUf/Pz1H/z89R/8/PUf/Pz1H/z89R/8/PUf/T0xZ/wAAAEYAAAAiAAAAJAAAAEdOSlj/PjtG/z47Rv8+O0b/PjtG/z47Rv8+O0b/PjtG/z47Rv8+O0b/PjtG/05KWP8AAABHAAAAJAAAACQAAABIS0lV/zw6RP88OkT/PDpE/zw6RP88OkT/PDpE/zw6RP88OkT/PDpE/zw6RP9LSVX/AAAASAAAACQAAAAkAAAASEpHVP87OUP/OzlD/zs5Q/87OUP/OzlD/zs5Q/87OUP/OzlD/zs5Q/87OUP/SkdU/wAAAEgAAAAkAAAAJAAAAEdJRlP/OjhC/zo4Qv86OEL/OjhC/zo4Qv86OEL/OjhC/zo4Qv86OEL/OjhC/0lGU/8AAABHAAAAJAAAACIAAABGR0VQ/zk3QP85N0D/OTdA/zk3QP85N0D/OTdA/zk3QP85N0D/OTdA/zk3QP9HRVD/AAAARgAAACIAAAAfAAAAP0dDUP84NT//ODU//zg1P/84NT//ODU//zg1P/84NT//ODU//zg1P/84NT//R0NQ/wAAAD8AAAAfAAAAGQAAADRHRFLvOjhC/zY0Pv82ND7/NjQ+/zY0Pv82ND7/NjQ+/zY0Pv82ND7/OjhC/0dEUu8AAAA0AAAAGQAAABEAAAAlMzE5d0dEUO9EQk3/REFM/0RBTP9EQUz/REFM/0RBTP9EQUz/REJN/0dEUe0zMTl3AAAAJQAAABEAAAAKAAAAFQAAACUAAAA0AAAAPwAAAEYAAABHAAAASAAAAEgAAABHAAAARgAAAD8AAAA0AAAAJQAAABUAAAAKAAAABAAAAAoAAAARAAAAGQAAAB8AAAAiAAAAJAAAACQAAAAkAAAAJAAAACIAAAAfAAAAGQAAABEAAAAKAAAABA=="), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="62"] +image = SubResource("Image_it78i") + +[sub_resource type="StyleBoxTexture" id="63"] +content_margin_left = 6.0 +content_margin_top = 3.0 +content_margin_right = 6.0 +content_margin_bottom = 3.0 +texture = SubResource("62") +expand_margin_left = 2.0 +expand_margin_top = 2.0 +expand_margin_right = 2.0 +expand_margin_bottom = 2.0 +region_rect = Rect2(0, 0, 16, 16) + +[sub_resource type="Image" id="Image_qkohn"] +data = { +"data": PackedByteArray("AAAABAAAAAoAAAARAAAAGQAAAB8AAAAiAAAAJAAAACQAAAAkAAAAJAAAACIAAAAfAAAAGQAAABEAAAAKAAAABAAAAAsAAAAWAAAAJwAAADYAAABBAAAASQAAAEoAAABLAAAASwAAAEoAAABJAAAAQQAAADYAAAAnAAAAFgAAAAsAAAATAAAAKTEvN4BGQ0/xQ0BM/0JAS/9CQEv/QkBL/0JAS/9CQEv/QkBL/0NATP9GQ0/xMS83fwAAACkAAAATAAAAHgAAAD1HRFDyOjhB/wsLDP8LCgz/CwoM/wsKDP8LCgz/CwsM/wsLDP8LCwz/OjhB/0dEUPIAAAA9AAAAHgAAACcAAABNREJO/w8OEf8PDhH/Dw4R/w8OEf8PDhH/Dw4R/w8OEf8PDhH/Dw4R/w8OEf9EQk7/AAAATQAAACcAAAAsAAAAWEZCT/8UExb/ExIW/xMSFv8UExb/ExIW/xQTFv8UExb/FBMW/xQTFv8TEhb/RkJP/wAAAFgAAAAsAAAAMgAAAF1HRVD/GBcb/xgXG/8YFxv/GBcb/xgXG/8YFxv/GBcb/xkYHP8YFxv/GBcb/0dFUP8AAABdAAAAMgAAADMAAABjSUZT/x0cIf8dHCH/HRwh/x0cIf8dHCH/HRwh/x0cIf8dHCH/HRwh/x0cIf9JRlP/AAAAYwAAADMAAAA2AAAAZkpHVP8iISf/IiEn/yIhJ/8iISf/IiEn/yIhJ/8iISf/IiEn/yIhJ/8iISf/SkdU/wAAAGYAAAA2AAAAOQAAAGlLSVX/JyYt/ycmLf8nJi3/JyYt/ycmLf8nJi3/JyYt/ygmLf8nJi3/KCYt/0tJVf8AAABpAAAAOQAAADgAAABsTkpY/y0rM/8tKzP/LSsz/y0rM/8tKzP/LSsz/y0rM/8tKzP/LSsz/y0rM/9OSlj/AAAAbAAAADgAAAA1AAAAZVBNWv8zMTr/MzE5/zMxOf8zMTn/MzE5/zMxOf8zMTn/MzE5/zMxOf8zMTr/UE1a/wAAAGUAAAA1AAAALQAAAFlVUl/8RUJN/zk3QP84N0D/OTdA/zg3QP84N0D/ODdA/zg3QP86N0H/RUJN/1VSYPwAAABZAAAALQAAACAAAABEPTpFtFZSYP1STlz/UU5b/1FOW/9RTlv/UU5b/1FOW/9RTlv/Uk5c/1ZSYP09OkW0AAAARAAAACAAAAAUAAAAKAAAAEUAAABdAAAAbgAAAHkAAAB6AAAAfAAAAHwAAAB6AAAAeQAAAG4AAABdAAAARQAAACgAAAAUAAAACAAAABQAAAAhAAAAMAAAADoAAAA/AAAAQwAAAEMAAABDAAAAQwAAAD8AAAA6AAAAMAAAACEAAAAUAAAACA=="), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="65"] +image = SubResource("Image_qkohn") + +[sub_resource type="StyleBoxTexture" id="66"] +content_margin_left = 6.0 +content_margin_top = 3.0 +content_margin_right = 6.0 +content_margin_bottom = 3.0 +texture = SubResource("65") +expand_margin_left = 2.0 +expand_margin_top = 2.0 +expand_margin_right = 2.0 +expand_margin_bottom = 2.0 +region_rect = Rect2(0, 0, 16, 16) + +[sub_resource type="Image" id="Image_m58lh"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/wAAAADf39+IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAODg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P8AAAAA4ODg/9/f34gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADg4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/AAAAAODg4P/g4OD/39/fiAAAAAAAAAAAAAAAAAAAAAAAAAAA4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/wAAAADg4OD/4ODg/+Dg4P/f39+IAAAAAAAAAAAAAAAAAAAAAODg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADg4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P8AAAAAAAAAAAAAAAAAAAAA4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/AAAAAAAAAAAAAAAAAAAAAODg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/wAAAAAAAAAAAAAAAAAAAADg4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P8AAAAAAAAAAAAAAAAAAAAA4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/AAAAAAAAAAAAAAAAAAAAAODg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/wAAAAAAAAAAAAAAAAAAAADg4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P8AAAAAAAAAAAAAAAAAAAAA4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/AAAAAAAAAAAAAAAAAAAAAODg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="425"] +image = SubResource("Image_m58lh") + +[sub_resource type="Image" id="Image_d3ptt"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4MXg/+D/4P/g/+D/4P/gwwAAAAAAAAAAAAAAAAAAAADg/+D/4P/g/+D/4P/g/+D/AAAAAAAAAAAAAAAAAAAAAOD/4P/g/+D/4P/g/+D/4P/hPAAAAAAAAAAAAAAAAAAA4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/gwwAAAADg/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/AAAAAOD/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P8AAAAA4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/wAAAADg/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/AAAAAOD/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P8AAAAA4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/wAAAADg/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/AAAAAODD4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/38IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="427"] +image = SubResource("Image_d3ptt") + +[sub_resource type="Image" id="Image_tqpqp"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3hfgz+DO3hcAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3Bbh0uD+4P7g1+AZAAAAAAAAAAAAAAAAAAAAAAAA3Bbh0uD+4P7g/uD+4NfgGQAAAAAAAAAAAAAAAAAA3hfg1OD+4NHg/uD94dLg/uDU3hcAAAAAAAAAAAAAAADgzeD+4NDcFuD+4P3bFeDR4P7gzAAAAAAAAAAAAAAAAOC+4MXZFP8B4P7g/QAA2xXhyeDFAAAAAAAAAAAAAAAAAAAAAAAA/wHg/uD9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/AeD+4P0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4MThwQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="429"] +image = SubResource("Image_tqpqp") + +[sub_resource type="Image" id="Image_818ml"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADbB99u4Mfg8+Dz4MfebdsHAAAAAAAAAAAAAAAAAADjG+DP4P7g/uD+4P7g/uD+4M7jGwAAAAAAAAAAAADbB+DP4P7g4eBT2A3YDd9Q4Nfg/uDO2wcAAAAAAAAAAN9u4P7g4eMSAAAAAAAAAADhEeDh4P7ebAAAAAAAAAAA4Mjg/uBTAAAAAAAAAAAAAAAA3lXg/uDGAAAAAAAAAADg8uD+2A0AAAAAAAAAAAAAAADbDuD+4PEAAAAA4J7g/uD+4P7g/uCeAAAAAAAAAAAAAN0P4P7g8QAAAADoC+DU4P7g/uDU6AsAAAAAAAAAAAAA3lbg/uDGAAAAAAAA4Svg8+Dz4SsAAAAAAAAAAAAA5BPh4uD+3mwAAAAAAAAAAN9g32AAAAAAAAAAANsO3lbh4uD+4M7VBgAAAAAAAAAAAAAAAAAAAAAAAAAA4P7g/uD+4M7jGwAAAAAAAAAAAAAAAAAAAAAAAAAAAADg8uDF3mzVBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="431"] +image = SubResource("Image_818ml") + +[sub_resource type="Image" id="Image_1q4cq"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA39/fCN7e3mzg4ODF4ODg9ODg4PPg4ODF3t7ebePj4wkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3t7eLuDg4Njg4OD+4ODg/uDg4P7g4OD+4ODg/uDg4P7h4eHa4ODgMgAAAAAAAAAAAAAAAAAAAAAAAAAA3t7eL+Dg4PDg4OD+4ODg4eDg4FPY2NgN2NjYDd/f31Dg4ODX4ODg/uDg4PLh4eEzAAAAAAAAAAAAAAAA4+PjCeDg4Nzg4OD+4ODg4ePj4xIAAAAAAAAAAAAAAAAAAAAA4eHhEeDg4OHg4OD+4ODg3+bm5goAAAAAAAAAAN/f33fg4OD+4ODg/uDg4FMAAAAA4ODgS+Dg4OPh4eHi4ODgSQAAAADe3t5V4ODg/uDg4P7f3995AAAAAAAAAADh4eHa4ODg/uDg4P7Y2NgNAAAAAOHh4eLg4OD+4ODg/uDg4OEAAAAA29vbDuDg4P7g4OD+4eHh2gAAAAAAAAAA4ODg2+Dg4P7g4OD+2NjYDQAAAADh4eHi4ODg/uDg4P7g4ODhAAAAAN3d3Q/g4OD+4ODg/uDg4NsAAAAAAAAAAN7e3nzg4OD+4ODg/t/f31AAAAAA4ODgSeHh4eLg4ODh39/fSAAAAADe3t5W4ODg/uDg4P7g4OB7AAAAAAAAAADV1dUM4ODg4+Dg4P7g4ODX4eHhEQAAAAAAAAAAAAAAAAAAAADk5OQT4eHh4uDg4P7g4ODh1dXVDAAAAAAAAAAAAAAAAN/f3zjg4OD04ODg/uDg4OHe3t5V29vbDtvb2w7e3t5W4eHh4uDg4P7g4OD03t7eNgAAAAAAAAAAAAAAAAAAAAAAAAAA39/fN+Dg4N7g4OD+4ODg/uDg4P7g4OD+4ODg/uDg4P7g4ODd3t7eNgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADm5uYK39/fcODg4MXg4ODz4ODg8+Dg4MXf399u5ubmCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="433"] +image = SubResource("Image_1q4cq") + +[sub_resource type="AtlasTexture" id="377"] +atlas = ExtResource("1") +region = Rect2(112, 64, 16, 16) + +[sub_resource type="StyleBoxTexture" id="93"] +content_margin_left = 2.0 +content_margin_top = 2.0 +content_margin_right = 2.0 +content_margin_bottom = 2.0 +texture = SubResource("377") +texture_margin_left = 7.0 +texture_margin_top = 7.0 +texture_margin_right = 7.0 +texture_margin_bottom = 7.0 +region_rect = Rect2(0, 0, 16, 16) + +[sub_resource type="StyleBoxTexture" id="393"] +content_margin_left = 2.0 +content_margin_top = 2.0 +content_margin_right = 2.0 +content_margin_bottom = 2.0 +texture = ExtResource("1") +texture_margin_left = 7.0 +texture_margin_top = 7.0 +texture_margin_right = 7.0 +texture_margin_bottom = 7.0 +region_rect = Rect2(112, 80, 16, 16) + +[sub_resource type="StyleBoxTexture" id="394"] +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +region_rect = Rect2(32, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="395"] +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +region_rect = Rect2(16, 40, 8, 8) + +[sub_resource type="StyleBoxFlat" id="576"] +draw_center = false +border_width_top = 1 +border_color = Color(0.2, 0.2, 0.2, 1) +anti_aliasing = false + +[sub_resource type="AtlasTexture" id="250"] +atlas = ExtResource("1") +region = Rect2(96, 64, 16, 16) + +[sub_resource type="AtlasTexture" id="251"] +atlas = ExtResource("1") +region = Rect2(96, 96, 16, 16) + +[sub_resource type="AtlasTexture" id="252"] +atlas = ExtResource("1") +region = Rect2(96, 80, 16, 16) + +[sub_resource type="Image" id="Image_nomvx"] +data = { +"data": PackedByteArray("AAAAAJiYmHlOTk4xAAAAAAAAAACNjY15Tk5OMQAAAAAAAAAAgoKCeU5OTjEAAAAAAAAAAE5OTjFOTk4cAAAAAAAAAAA4VV8AOFVfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjKy4ADhVXwAAAAAAAAAAAIGirQA4VV8AAAAAAAAAAACYmJh5Tk5OMQAAAAAAAAAAjY2NeU5OTjEAAAAAAAAAAIKCgnlOTk4xAAAAAA=="), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 4 +} + +[sub_resource type="ImageTexture" id="29"] +image = SubResource("Image_nomvx") + +[sub_resource type="StyleBoxTexture" id="4"] +content_margin_left = 6.0 +content_margin_top = 3.0 +content_margin_right = 6.0 +content_margin_bottom = 3.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +region_rect = Rect2(0, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="248"] +content_margin_left = 6.0 +content_margin_top = 3.0 +content_margin_right = 6.0 +content_margin_bottom = 3.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +region_rect = Rect2(32, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="249"] +content_margin_left = 6.0 +content_margin_top = 3.0 +content_margin_right = 6.0 +content_margin_bottom = 3.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +region_rect = Rect2(16, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="461"] +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +axis_stretch_vertical = 2 +region_rect = Rect2(16, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="462"] +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +axis_stretch_vertical = 2 +region_rect = Rect2(24, 40, 8, 8) + +[sub_resource type="StyleBoxFlat" id="476"] +bg_color = Color(0.359375, 0.359375, 0.359375, 1) +corner_detail = 1 +anti_aliasing = false + +[sub_resource type="StyleBoxFlat" id="490"] +bg_color = Color(0.490196, 0.490196, 0.490196, 1) +corner_detail = 1 +anti_aliasing = false + +[sub_resource type="FontFile" id="2"] +fallbacks = Array[Font]([ExtResource("3")]) +cache/0/16/0/ascent = 0.0 +cache/0/16/0/descent = 0.0 +cache/0/16/0/underline_position = 0.0 +cache/0/16/0/underline_thickness = 0.0 +cache/0/16/0/scale = 1.0 +cache/0/16/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/1/0/ascent = 0.0 +cache/0/1/0/descent = 0.0 +cache/0/1/0/underline_position = 0.0 +cache/0/1/0/underline_thickness = 0.0 +cache/0/1/0/scale = 1.0 +cache/0/1/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/2/0/ascent = 0.0 +cache/0/2/0/descent = 0.0 +cache/0/2/0/underline_position = 0.0 +cache/0/2/0/underline_thickness = 0.0 +cache/0/2/0/scale = 1.0 +cache/0/2/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/3/0/ascent = 0.0 +cache/0/3/0/descent = 0.0 +cache/0/3/0/underline_position = 0.0 +cache/0/3/0/underline_thickness = 0.0 +cache/0/3/0/scale = 1.0 +cache/0/3/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/4/0/ascent = 0.0 +cache/0/4/0/descent = 0.0 +cache/0/4/0/underline_position = 0.0 +cache/0/4/0/underline_thickness = 0.0 +cache/0/4/0/scale = 1.0 +cache/0/4/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/5/0/ascent = 0.0 +cache/0/5/0/descent = 0.0 +cache/0/5/0/underline_position = 0.0 +cache/0/5/0/underline_thickness = 0.0 +cache/0/5/0/scale = 1.0 +cache/0/5/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/6/0/ascent = 0.0 +cache/0/6/0/descent = 0.0 +cache/0/6/0/underline_position = 0.0 +cache/0/6/0/underline_thickness = 0.0 +cache/0/6/0/scale = 1.0 +cache/0/6/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/7/0/ascent = 0.0 +cache/0/7/0/descent = 0.0 +cache/0/7/0/underline_position = 0.0 +cache/0/7/0/underline_thickness = 0.0 +cache/0/7/0/scale = 1.0 +cache/0/7/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/8/0/ascent = 0.0 +cache/0/8/0/descent = 0.0 +cache/0/8/0/underline_position = 0.0 +cache/0/8/0/underline_thickness = 0.0 +cache/0/8/0/scale = 1.0 +cache/0/8/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/9/0/ascent = 0.0 +cache/0/9/0/descent = 0.0 +cache/0/9/0/underline_position = 0.0 +cache/0/9/0/underline_thickness = 0.0 +cache/0/9/0/scale = 1.0 +cache/0/9/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/10/0/ascent = 0.0 +cache/0/10/0/descent = 0.0 +cache/0/10/0/underline_position = 0.0 +cache/0/10/0/underline_thickness = 0.0 +cache/0/10/0/scale = 1.0 +cache/0/10/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/11/0/ascent = 0.0 +cache/0/11/0/descent = 0.0 +cache/0/11/0/underline_position = 0.0 +cache/0/11/0/underline_thickness = 0.0 +cache/0/11/0/scale = 1.0 +cache/0/11/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/12/0/ascent = 0.0 +cache/0/12/0/descent = 0.0 +cache/0/12/0/underline_position = 0.0 +cache/0/12/0/underline_thickness = 0.0 +cache/0/12/0/scale = 1.0 +cache/0/12/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/13/0/ascent = 0.0 +cache/0/13/0/descent = 0.0 +cache/0/13/0/underline_position = 0.0 +cache/0/13/0/underline_thickness = 0.0 +cache/0/13/0/scale = 1.0 +cache/0/13/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/14/0/ascent = 0.0 +cache/0/14/0/descent = 0.0 +cache/0/14/0/underline_position = 0.0 +cache/0/14/0/underline_thickness = 0.0 +cache/0/14/0/scale = 1.0 +cache/0/14/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/15/0/ascent = 0.0 +cache/0/15/0/descent = 0.0 +cache/0/15/0/underline_position = 0.0 +cache/0/15/0/underline_thickness = 0.0 +cache/0/15/0/scale = 1.0 +cache/0/15/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/15/0 = Vector2(0, 0) + +[sub_resource type="Image" id="Image_4xdjp"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN9Y3BYAAAAAAAAAAAAAAADcFt9YAAAAAAAAAAAAAN9Y4P7g09wWAAAAAAAAAADcFuDT4P7fWAAAAAAAAAAA2xXf0uD/4NfgGQAAAADbFd/S4P/g198YAAAAAAAAAAAAANsV39Lg/+DX4BnbFd/S4P/g198YAAAAAAAAAAAAAAAAAADbFd/S4P/h2uDW4P/g198YAAAAAAAAAAAAAAAAAAAAAAAA2xXf1uD/4P/g298YAAAAAAAAAAAAAAAAAAAAAAAAAADbFd/W4P/g/+Db4BkAAAAAAAAAAAAAAAAAAAAAAADbFd/S4P/f2uDW4P/g1+AZAAAAAAAAAAAAAAAAAADbFd/S4P/g198Y2xXf0uD/4NfgGQAAAAAAAAAAAADbFd/S4P/g198YAAAAANsV39Lg/+DX4BkAAAAAAAAAAN9Y4P7g09wWAAAAAAAAAADcFuDT4P7fWAAAAAAAAAAAAADfWNwWAAAAAAAAAAAAAAAA3BbfWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="49"] +image = SubResource("Image_4xdjp") + +[sub_resource type="StyleBoxTexture" id="127"] +content_margin_left = 4.0 +content_margin_top = 2.0 +content_margin_right = 4.0 +content_margin_bottom = 2.0 +texture = ExtResource("1") +texture_margin_left = 1.0 +texture_margin_top = 1.0 +texture_margin_right = 1.0 +texture_margin_bottom = 1.0 +region_rect = Rect2(8, 24, 8, 8) + +[sub_resource type="StyleBoxTexture" id="128"] +content_margin_left = 4.0 +content_margin_top = 4.0 +content_margin_right = 4.0 +content_margin_bottom = 4.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +region_rect = Rect2(0, 24, 8, 8) + +[sub_resource type="StyleBoxTexture" id="51"] +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +region_rect = Rect2(0, 24, 8, 8) + +[sub_resource type="StyleBoxFlat" id="540"] +draw_center = false +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +corner_radius_top_left = 2 +corner_radius_top_right = 2 +corner_radius_bottom_right = 2 +corner_radius_bottom_left = 2 +anti_aliasing = false + +[sub_resource type="AtlasTexture" id="144"] +atlas = ExtResource("2") +region = Rect2(104, 48, 8, 8) + +[sub_resource type="StyleBoxTexture" id="71"] +content_margin_left = 4.0 +content_margin_top = 3.0 +content_margin_right = 8.0 +content_margin_bottom = 3.0 +texture = ExtResource("1") +expand_margin_left = 1.0 +expand_margin_top = 1.0 +expand_margin_right = 1.0 +expand_margin_bottom = 1.0 +region_rect = Rect2(64, 40, 28, 8) + +[sub_resource type="StyleBoxTexture" id="72"] +content_margin_left = 4.0 +content_margin_top = 3.0 +content_margin_right = 8.0 +content_margin_bottom = 3.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 22.0 +texture_margin_bottom = 2.0 +expand_margin_left = 1.0 +expand_margin_top = 1.0 +expand_margin_right = 1.0 +expand_margin_bottom = 1.0 +region_rect = Rect2(64, 40, 28, 8) + +[sub_resource type="StyleBoxTexture" id="160"] +content_margin_left = 4.0 +content_margin_top = 3.0 +content_margin_right = 8.0 +content_margin_bottom = 3.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 22.0 +texture_margin_bottom = 2.0 +expand_margin_left = 1.0 +expand_margin_top = 1.0 +expand_margin_right = 1.0 +expand_margin_bottom = 1.0 +region_rect = Rect2(64, 48, 28, 8) + +[sub_resource type="StyleBoxTexture" id="78"] +content_margin_left = 4.0 +content_margin_top = 3.0 +content_margin_right = 8.0 +content_margin_bottom = 3.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 22.0 +texture_margin_bottom = 2.0 +expand_margin_left = 1.0 +expand_margin_top = 1.0 +expand_margin_right = 1.0 +expand_margin_bottom = 1.0 +region_rect = Rect2(64, 40, 28, 8) + +[sub_resource type="StyleBoxTexture" id="176"] +content_margin_left = 4.0 +content_margin_top = 3.0 +content_margin_right = 8.0 +content_margin_bottom = 3.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 22.0 +texture_margin_bottom = 2.0 +expand_margin_left = 1.0 +expand_margin_top = 1.0 +expand_margin_right = 1.0 +expand_margin_bottom = 1.0 +region_rect = Rect2(64, 56, 28, 8) + +[sub_resource type="StyleBoxTexture" id="1"] +texture = ExtResource("1") +texture_margin_left = 6.0 +texture_margin_top = 6.0 +texture_margin_right = 6.0 +texture_margin_bottom = 6.0 +region_rect = Rect2(0, 8, 16, 16) + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_r7viw"] +texture = ExtResource("1") +texture_margin_left = 6.0 +texture_margin_top = 6.0 +texture_margin_right = 6.0 +texture_margin_bottom = 6.0 +region_rect = Rect2(0, 8, 16, 16) + +[sub_resource type="AtlasTexture" id="230"] +atlas = ExtResource("1") +region = Rect2(72, 80, 8, 8) + +[sub_resource type="AtlasTexture" id="218"] +atlas = ExtResource("1") +region = Rect2(72, 72, 8, 8) + +[sub_resource type="AtlasTexture" id="219"] +atlas = ExtResource("1") +region = Rect2(64, 72, 8, 8) + +[sub_resource type="AtlasTexture" id="231"] +atlas = ExtResource("2") +region = Rect2(40, 48, 8, 8) + +[sub_resource type="AtlasTexture" id="232"] +atlas = ExtResource("1") +region = Rect2(64, 80, 8, 8) + +[sub_resource type="StyleBoxTexture" id="243"] +content_margin_left = 4.0 +content_margin_top = 4.0 +content_margin_right = 4.0 +content_margin_bottom = 4.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +region_rect = Rect2(72, 64, 8, 8) + +[sub_resource type="Image" id="Image_vxpjd"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAc5uqs87c4bPO3OGzztzhs87c4bPO3OGzztzhs3ObqrMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), +"format": "RGBA8", +"height": 8, +"mipmaps": false, +"width": 8 +} + +[sub_resource type="ImageTexture" id="199"] +image = SubResource("Image_vxpjd") + +[sub_resource type="StyleBoxTexture" id="200"] +texture = SubResource("199") +texture_margin_left = 2.0 +texture_margin_right = 2.0 +region_rect = Rect2(0, 0, 8, 8) + +[sub_resource type="StyleBoxTexture" id="201"] +texture = SubResource("199") +region_rect = Rect2(0, 0, 8, 8) + +[sub_resource type="StyleBoxTexture" id="202"] +content_margin_left = 4.0 +content_margin_top = 4.0 +content_margin_right = 4.0 +content_margin_bottom = 4.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +region_rect = Rect2(64, 64, 8, 8) + +[sub_resource type="Image" id="Image_wx41j"] +data = { +"data": PackedByteArray("/wD//wD//wD//wD/Z3qFZnqGaHuGaHuGaHuGaHuGZnqGZ3qF/wD//wD//wD//wD//wD//wD/Z3qFZnqGV1FRTEJATUNBTUNBTUNBTUNBTEJAV1FRZnqGZ3qF/wD//wD//wD/Z3qFVkxLTEJATURBTUNBTkRCTkRCTkRCTkRCTUNBTURBTEJAV1FRZ3qF/wD//wD/ZnqGTEJATEJATUNBT0VDT0VDT0VDT0VDT0VDT0VDTUNBTEJATEJAZ3uH/wD/Z3qFV1FRTEJATEJATkRCT0RDUEVEUkZEUkZEUUZFT0RDTkRCTEJATEJAV1FRZ3qFZnqGS0A/TEJATUNBT0RDUUdFUkhGU0hHU0hHUkhGUUdFT0RDTkRCTEJAS0E/Z3uHZ3uHS0E/TEJATUNBT0RDUUdFVElGVUpHVUlHVUpHUkhGUEVETUNBTEJAS0E/aHyIZ3uHSkA+S0E/TUNBT0VDUUdFVElGVUtJVk1LVElGU0lHUEZETkRCTEJAS0E/aHyIZ3uHSkE+S0E/TEJAT0VDUUdFVElGVUtJVUtJVUpHUkhGUEZETkRCTEJASkA+aHyIZ3uHSD48S0I/S0E/TkRCUEVEUUZFU0lHU0lHUkhGUEVETkRCTEJAS0E/ST89aHyIZ3uHRj08SD48SkA+TEJATkRCT0RDUEVEUEVEUEZET0VDTEJAS0A/ST89Rz07Z3uHZ3qFV1FRRz47SUA9S0E/TEJATUNBTkRCTkRCTUNBTEJAS0E/ST89Rz07V1FRaHuG/wD/Z3uHRj08Rz07SD48ST89SkA+S0E/S0E/S0A/SkA+SD48Rz47Rz07Z3uH/wD//wD/Z3qFV1FRRTw7Rz07Rz07Rz07SD48SD48Rz07Rz07Rz47Rj08V1FRZnqG/wD//wD//wD/Z3qFZ3uHV1FRRjw6Rjw6Rz47Rz47Rjw6Rjw6V1FRZ3uHaHuG/wD//wD//wD//wD//wD//wD/ZnqGZ3uHaHyIaHyIaHyIaHyIZ3uHaHuG/wD//wD//wD//wD/"), +"format": "RGB8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="204"] +image = SubResource("Image_wx41j") + +[sub_resource type="StyleBoxTexture" id="205"] +texture = SubResource("204") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +region_rect = Rect2(0, 0, 16, 16) + +[sub_resource type="StyleBoxTexture" id="206"] +texture = SubResource("199") +texture_margin_left = 2.0 +texture_margin_right = 2.0 +region_rect = Rect2(0, 0, 8, 8) + +[sub_resource type="StyleBoxTexture" id="507"] +texture = ExtResource("1") +texture_margin_left = 3.0 +texture_margin_top = 3.0 +texture_margin_right = 3.0 +texture_margin_bottom = 3.0 +axis_stretch_horizontal = 2 +axis_stretch_vertical = 2 +region_rect = Rect2(8, 48, 8, 8) + +[sub_resource type="StyleBoxTexture" id="508"] +content_margin_left = 2.0 +content_margin_top = 1.0 +content_margin_right = 2.0 +content_margin_bottom = 1.0 +texture = ExtResource("1") +texture_margin_left = 3.0 +texture_margin_top = 3.0 +texture_margin_right = 3.0 +texture_margin_bottom = 3.0 +axis_stretch_horizontal = 2 +axis_stretch_vertical = 2 +region_rect = Rect2(24, 24, 8, 8) + +[sub_resource type="AtlasTexture" id="319"] +atlas = ExtResource("2") +region = Rect2(111, 48, 10, 8) + +[sub_resource type="FontFile" id="600"] +fallbacks = Array[Font]([ExtResource("3")]) +cache/0/16/0/ascent = 0.0 +cache/0/16/0/descent = 0.0 +cache/0/16/0/underline_position = 0.0 +cache/0/16/0/underline_thickness = 0.0 +cache/0/16/0/scale = 1.0 +cache/0/16/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/1/0/ascent = 0.0 +cache/0/1/0/descent = 0.0 +cache/0/1/0/underline_position = 0.0 +cache/0/1/0/underline_thickness = 0.0 +cache/0/1/0/scale = 1.0 +cache/0/1/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/1/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/2/0/ascent = 0.0 +cache/0/2/0/descent = 0.0 +cache/0/2/0/underline_position = 0.0 +cache/0/2/0/underline_thickness = 0.0 +cache/0/2/0/scale = 1.0 +cache/0/2/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/2/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/3/0/ascent = 0.0 +cache/0/3/0/descent = 0.0 +cache/0/3/0/underline_position = 0.0 +cache/0/3/0/underline_thickness = 0.0 +cache/0/3/0/scale = 1.0 +cache/0/3/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/3/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/4/0/ascent = 0.0 +cache/0/4/0/descent = 0.0 +cache/0/4/0/underline_position = 0.0 +cache/0/4/0/underline_thickness = 0.0 +cache/0/4/0/scale = 1.0 +cache/0/4/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/4/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/5/0/ascent = 0.0 +cache/0/5/0/descent = 0.0 +cache/0/5/0/underline_position = 0.0 +cache/0/5/0/underline_thickness = 0.0 +cache/0/5/0/scale = 1.0 +cache/0/5/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/5/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/6/0/ascent = 0.0 +cache/0/6/0/descent = 0.0 +cache/0/6/0/underline_position = 0.0 +cache/0/6/0/underline_thickness = 0.0 +cache/0/6/0/scale = 1.0 +cache/0/6/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/6/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/7/0/ascent = 0.0 +cache/0/7/0/descent = 0.0 +cache/0/7/0/underline_position = 0.0 +cache/0/7/0/underline_thickness = 0.0 +cache/0/7/0/scale = 1.0 +cache/0/7/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/7/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/8/0/ascent = 0.0 +cache/0/8/0/descent = 0.0 +cache/0/8/0/underline_position = 0.0 +cache/0/8/0/underline_thickness = 0.0 +cache/0/8/0/scale = 1.0 +cache/0/8/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/8/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/9/0/ascent = 0.0 +cache/0/9/0/descent = 0.0 +cache/0/9/0/underline_position = 0.0 +cache/0/9/0/underline_thickness = 0.0 +cache/0/9/0/scale = 1.0 +cache/0/9/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/9/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/10/0/ascent = 0.0 +cache/0/10/0/descent = 0.0 +cache/0/10/0/underline_position = 0.0 +cache/0/10/0/underline_thickness = 0.0 +cache/0/10/0/scale = 1.0 +cache/0/10/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/10/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/11/0/ascent = 0.0 +cache/0/11/0/descent = 0.0 +cache/0/11/0/underline_position = 0.0 +cache/0/11/0/underline_thickness = 0.0 +cache/0/11/0/scale = 1.0 +cache/0/11/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/11/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/12/0/ascent = 0.0 +cache/0/12/0/descent = 0.0 +cache/0/12/0/underline_position = 0.0 +cache/0/12/0/underline_thickness = 0.0 +cache/0/12/0/scale = 1.0 +cache/0/12/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/12/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/13/0/ascent = 0.0 +cache/0/13/0/descent = 0.0 +cache/0/13/0/underline_position = 0.0 +cache/0/13/0/underline_thickness = 0.0 +cache/0/13/0/scale = 1.0 +cache/0/13/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/13/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/14/0/ascent = 0.0 +cache/0/14/0/descent = 0.0 +cache/0/14/0/underline_position = 0.0 +cache/0/14/0/underline_thickness = 0.0 +cache/0/14/0/scale = 1.0 +cache/0/14/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/14/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/15/0/ascent = 0.0 +cache/0/15/0/descent = 0.0 +cache/0/15/0/underline_position = 0.0 +cache/0/15/0/underline_thickness = 0.0 +cache/0/15/0/scale = 1.0 +cache/0/15/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/1/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/2/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/3/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/4/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/5/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/6/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/7/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/8/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/9/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/10/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/11/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/12/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/13/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/14/0 = Vector2(0, 0) +cache/0/15/0/kerning_overrides/15/0 = Vector2(0, 0) +cache/0/23/0/ascent = 0.0 +cache/0/23/0/descent = 0.0 +cache/0/23/0/underline_position = 0.0 +cache/0/23/0/underline_thickness = 0.0 +cache/0/23/0/scale = 1.0 + +[sub_resource type="AtlasTexture" id="AtlasTexture_iliap"] +atlas = ExtResource("2") +region = Rect2(8, 48, 8, 8) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ka72"] +atlas = ExtResource("2") +region = Rect2(24, 64, 8, 8) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0irx"] +atlas = ExtResource("2") +region = Rect2(0, 48, 8, 8) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0meu8"] +atlas = ExtResource("2") +region = Rect2(56, 56, 8, 8) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41h71"] +atlas = ExtResource("1") +region = Rect2(0, 8, 16, 16) + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_ebn52"] +content_margin_left = 6.0 +content_margin_top = 5.0 +content_margin_right = 6.0 +content_margin_bottom = 6.0 +texture = SubResource("AtlasTexture_41h71") +texture_margin_left = 5.0 +texture_margin_top = 5.0 +texture_margin_right = 5.0 +texture_margin_bottom = 5.0 +axis_stretch_horizontal = 1 +axis_stretch_vertical = 1 + +[sub_resource type="AtlasTexture" id="AtlasTexture_61tg8"] +atlas = ExtResource("1") +region = Rect2(80, 0, 16, 8) + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_fcx8v"] +content_margin_left = 8.0 +content_margin_top = 0.0 +content_margin_right = 8.0 +content_margin_bottom = 0.0 +texture = SubResource("AtlasTexture_61tg8") +texture_margin_left = 5.0 +texture_margin_top = 5.0 +texture_margin_right = 5.0 +axis_stretch_horizontal = 1 +axis_stretch_vertical = 1 +modulate_color = Color(0.716296, 0.716296, 0.716296, 1) + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_wk0t6"] +content_margin_left = 8.0 +content_margin_top = 0.0 +content_margin_right = 8.0 +content_margin_bottom = 0.0 +texture = SubResource("AtlasTexture_61tg8") +texture_margin_left = 5.0 +texture_margin_top = 5.0 +texture_margin_right = 5.0 +axis_stretch_horizontal = 1 +axis_stretch_vertical = 1 + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_wy5a1"] +content_margin_left = 8.0 +content_margin_top = 0.0 +content_margin_right = 8.0 +content_margin_bottom = 0.0 +texture = SubResource("AtlasTexture_61tg8") +texture_margin_left = 5.0 +texture_margin_top = 5.0 +texture_margin_right = 5.0 +axis_stretch_horizontal = 1 +axis_stretch_vertical = 1 +modulate_color = Color(0.521141, 0.521141, 0.521141, 1) + +[sub_resource type="Image" id="Image_7tiq1"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOD/4P/g/+D/4P/g/+D/4P8AAAAAAAAAAOD/4P/g/+D/4P/g/+D/4P8AAAAAAAAAAOD/4P/g/+D/4P/g/+D/4P8AAAAAAAAAAOFe4PTg/+D/4P/g/+D24WYAAAAAAAAAAAAA3yjf0uD/4P/g1+MtAAAAAAAAAAAAAAAAAADoC+Gf4Z/oCwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"), +"format": "LumAlpha8", +"height": 12, +"mipmaps": false, +"width": 12 +} + +[sub_resource type="ImageTexture" id="306"] +image = SubResource("Image_7tiq1") + +[sub_resource type="Image" id="Image_agqxv"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4P/g/+D/32AAAAAAAAAAAAAAAAAAAAAA4P/g/+D/4PThKwAAAAAAAAAAAAAAAAAA4P/g/+D/4P/g1egLAAAAAAAAAAAAAAAA4P/g/+D/4P/g/+GfAAAAAAAAAAAAAAAA4P/g/+D/4P/g/+GfAAAAAAAAAAAAAAAA4P/g/+D/4P/g1egLAAAAAAAAAAAAAAAA4P/g/+D/4PThKwAAAAAAAAAAAAAAAAAA4P/g/+D/32AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"), +"format": "LumAlpha8", +"height": 12, +"mipmaps": false, +"width": 12 +} + +[sub_resource type="ImageTexture" id="308"] +image = SubResource("Image_agqxv") + +[sub_resource type="Image" id="Image_l0jv1"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAA/1n/FP8U/1kAAAAAAAAAAAAA/1n/FP8U/1kAAAAAAAAAAAAA/1n/FP8U/1kAAAAAAAAAAP9Z/xT/FP9ZAAAAAAAA/1n/FP8U/1kAAAAAAAD/Wf8U/xT/WQAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="), +"format": "LumAlpha8", +"height": 8, +"mipmaps": false, +"width": 8 +} + +[sub_resource type="ImageTexture" id="292"] +image = SubResource("Image_l0jv1") + +[sub_resource type="Image" id="Image_fol8h"] +data = { +"data": PackedByteArray("FxYabx0cIe8gHiT3IR8l9yEfJfchHyX3IR8l9yAeJPcdHCHvFxYabx0cIfAkIin/KCYt/ygmLv8oJi7/KCYu/ygmLv8oJi3/JCIp/x0cIfAgHiT5KCYt/ysqMf8sKjL/LCoy/ywqMv8sKjL/Kyox/ygmLf8gHiT5IR8l9ygmLv8sKjL/LCoy/ywqMv8sKjL/LCoy/ywqMv8oJi7/IR8l9yEfJfcoJi7/LCoy/ywqMv8sKjL/LCoy/ywqMv8sKjL/KCYu/yEfJfchHyX3KCYu/ywqMv8sKjL/LCoy/ywqMv8sKjL/LCoy/ygmLv8hHyX3IR8l9ygmLv8sKjL/LCoy/ywqMv8sKjL/LCoy/ywqMv8oJi7/IR8l9yAeJPkoJi3/Kyox/ywqMv8sKjL/LCoy/ywqMv8rKjH/KCYt/yAeJPkdHCHwJCIp/ygmLf8oJi7/KCYu/ygmLv8oJi7/KCYt/yQiKf8dHCHxFxYabx0cIfAgHiT3IR8l9yEfJfchHyX3IR8l9yAeJPcdHCHuFxYabw=="), +"format": "RGBA8", +"height": 10, +"mipmaps": false, +"width": 10 +} + +[sub_resource type="ImageTexture" id="39"] +image = SubResource("Image_fol8h") + +[sub_resource type="StyleBoxTexture" id="272"] +content_margin_left = 0.0 +content_margin_top = 0.0 +content_margin_right = 0.0 +content_margin_bottom = 0.0 +texture = SubResource("39") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +region_rect = Rect2(0, 0, 10, 10) + +[sub_resource type="StyleBoxTexture" id="41"] +content_margin_left = 4.0 +content_margin_top = 4.0 +content_margin_right = 4.0 +content_margin_bottom = 4.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +expand_margin_left = 1.0 +expand_margin_top = 1.0 +expand_margin_right = 1.0 +expand_margin_bottom = 1.0 +region_rect = Rect2(0, 24, 8, 8) + +[sub_resource type="StyleBoxTexture" id="293"] +content_margin_left = 4.0 +content_margin_top = 4.0 +content_margin_right = 4.0 +content_margin_bottom = 4.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +expand_margin_left = 1.0 +expand_margin_top = 1.0 +expand_margin_right = 1.0 +expand_margin_bottom = 1.0 +region_rect = Rect2(16, 24, 8, 8) + +[sub_resource type="StyleBoxTexture" id="409"] +content_margin_left = 6.0 +content_margin_top = 4.0 +content_margin_right = 6.0 +content_margin_bottom = 4.0 +texture = ExtResource("1") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +axis_stretch_vertical = 2 +region_rect = Rect2(24, 40, 8, 8) + +[sub_resource type="Image" id="Image_og0fd"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNS1kHTUtZJ01LWVBNS1lmTUtZaE1LWWhNS1loTUtZaE1LWWhNS1loWFZjarCvtYFNS1knTUtZBwAAAAAAAAAATUtZJzg3QLQgICT6Hh4i/x8fI/8fHyP/Hx8j/x8fI/8fHyP/Hx8j/4uLjf//////tra53U1LWScAAAAAAAAAAE1LWVAgICT6ICAk/yIiJ/8jIyj/IyMo/yMjKP8jIyj/IyMo/0JCR//4+Pj//v7+/1dXWvtNS1lQAAAAAAAAAABNS1lmHh4i/yIiJ/8lJSr/JSUq/05OUv8mJiv/JSUq/yUlKv/Fxcf//////6qqq/8eHiL/TUtZZgAAAAAAAAAATUtZaB8fI/8jIyj/JSUq/7i4uv//////X19j/yUlKv90dHf//////+3t7f8zMzj/Hx8j/01LWWgAAAAAAAAAAE1LWWgfHyP/IyMo/yUlKv+NjY///////7i4uf81NTn/7e3t//////90dHf/IyMo/x8fI/9NS1loAAAAAAAAAABNS1loHx8j/yMjKP8lJSr/Ojo+//v7+//6+vr/srK0///////Fxcf/JSUq/yMjKP8fHyP/TUtZaAAAAAAAAAAATUtZaB8fI/8jIyj/JSUq/yUlKv+4uLr///////7+/v/4+Pj/RUVJ/yUlKv8jIyj/Hx8j/01LWWgAAAAAAAAAAE1LWWgfHyP/IyMo/yUlKv8lJSr/YWFl////////////j4+S/yUlKv8lJSr/IyMo/x8fI/9NS1loAAAAAAAAAABNS1loHx8j/yMjKP8lJSr/JSUq/yYmK/9OTlL/Y2Nm/yoqL/8lJSr/JSUq/yMjKP8fHyP/TUtZaAAAAAAAAAAATUtZZh4eIv8iIif/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8iIif/Hh4i/01LWWYAAAAAAAAAAE1LWVAgICT6ICAk/yIiJ/8jIyj/IyMo/yMjKP8jIyj/IyMo/yMjKP8iIif/ICAk/yAgJPtNS1lQAAAAAAAAAABNS1knODZAtCAgJPseHiL/Hx8j/x8fI/8fHyP/Hx8j/x8fI/8fHyP/Hh4i/yAgJfo4NkC0TUtZJwAAAAAAAAAATUtZB01LWSdNS1lQTUtZZk1LWWhNS1loTUtZaE1LWWhNS1loTUtZaE1LWWZNS1lQTUtZJ01LWQcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="334"] +image = SubResource("Image_og0fd") + +[sub_resource type="Image" id="Image_v3h84"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNS1kHTUtZJ01LWVBNS1lmTUtZaE1LWWhNS1loTUtZaE1LWWhNS1loTUtZZk1LWVBNS1knTUtZBwAAAAAAAAAATUtZJzg3QLQgICT6Hh4i/x8fI/8fHyP/Hx8j/x8fI/8fHyP/Hx8j/x4eIv8gICT6ODdAtE1LWScAAAAAAAAAAE1LWVAgICT6ICAk/yIiJ/8jIyj/IyMo/yMjKP8jIyj/IyMo/yMjKP8iIif/ICAk/yAgJPpNS1lQAAAAAAAAAABNS1lmHh4i/yIiJ/8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yIiJ/8eHiL/TUtZZgAAAAAAAAAATUtZaB8fI/8jIyj/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8jIyj/Hx8j/01LWWgAAAAAAAAAAE1LWWgfHyP/IyMo/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/IyMo/x8fI/9NS1loAAAAAAAAAABNS1loHx8j/yMjKP8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yMjKP8fHyP/TUtZaAAAAAAAAAAATUtZaB8fI/8jIyj/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8jIyj/Hx8j/01LWWgAAAAAAAAAAE1LWWgfHyP/IyMo/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/IyMo/x8fI/9NS1loAAAAAAAAAABNS1loHx8j/yMjKP8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yMjKP8fHyP/TUtZaAAAAAAAAAAATUtZZh4eIv8iIif/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8iIif/Hh4i/01LWWYAAAAAAAAAAE1LWVAgICT6ICAk/yIiJ/8jIyj/IyMo/yMjKP8jIyj/IyMo/yMjKP8iIif/ICAk/yAgJPtNS1lQAAAAAAAAAABNS1knODZAtCAgJPseHiL/Hx8j/x8fI/8fHyP/Hx8j/x8fI/8fHyP/Hh4i/yAgJfo4NkC0TUtZJwAAAAAAAAAATUtZB01LWSdNS1lQTUtZZk1LWWhNS1loTUtZaE1LWWhNS1loTUtZaE1LWWZNS1lQTUtZJ01LWQcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="336"] +image = SubResource("Image_v3h84") + +[sub_resource type="AtlasTexture" id="359"] +atlas = ExtResource("1") +region = Rect2(8, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="360"] +texture = SubResource("359") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 + +[sub_resource type="ImageTexture" id="90"] + +[sub_resource type="StyleBoxFlat" id="563"] +border_width_left = 1 +border_color = Color(0.2, 0.2, 0.2, 1) +anti_aliasing = false + +[sub_resource type="Image" id="Image_orkb2"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIKCgnmNjY15mJiYeYGirQCMrLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOFVfAE5OTjGCgoJ5jY2NeZiYmHlOTk4xTk5OMU5OTjE4VV8AOFVfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADhVXwBOTk4cTk5OMU5OTjFOTk4xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), +"format": "RGBA8", +"height": 4, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="111"] +image = SubResource("Image_orkb2") + +[sub_resource type="AtlasTexture" id="20"] +atlas = ExtResource("2") +region = Rect2(96, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="19"] +texture = ExtResource("1") +texture_margin_left = 5.0 +texture_margin_top = 20.0 +texture_margin_right = 5.0 +texture_margin_bottom = 6.0 +expand_margin_left = 8.0 +expand_margin_top = 24.0 +expand_margin_right = 8.0 +expand_margin_bottom = 6.0 +axis_stretch_horizontal = 2 +axis_stretch_vertical = 2 +region_rect = Rect2(96, 8, 16, 27) + +[resource] +default_font = SubResource("600") +default_font_size = 16 +Button/colors/font_color = Color(1, 1, 1, 1) +Button/colors/font_color_disabled = Color(0.501961, 0.501961, 0.501961, 1) +Button/colors/font_color_focus = Color(1, 1, 1, 1) +Button/colors/font_color_hover = Color(1, 1, 1, 1) +Button/colors/font_color_pressed = Color(0.866667, 0.866667, 0.866667, 1) +Button/constants/hseparation = 2 +Button/styles/disabled = SubResource("361") +Button/styles/focus = SubResource("9") +Button/styles/hover = SubResource("6") +Button/styles/normal = SubResource("7") +Button/styles/pressed = SubResource("8") +CheckBox/constants/check_vadjust = 0 +CheckBox/constants/hseparation = 2 +CheckBox/icons/checked = SubResource("337") +CheckBox/icons/checked_disabled = null +CheckBox/icons/radio_checked = null +CheckBox/icons/radio_checked_disabled = null +CheckBox/icons/radio_unchecked = null +CheckBox/icons/radio_unchecked_disabled = null +CheckBox/icons/unchecked = SubResource("338") +CheckBox/icons/unchecked_disabled = null +CheckBox/styles/disabled = null +CheckBox/styles/focus = null +CheckBox/styles/hover = null +CheckBox/styles/hover_pressed = null +CheckBox/styles/normal = null +CheckBox/styles/pressed = null +CheckButton/colors/font_color = Color(0.866667, 0.866667, 0.866667, 1) +CheckButton/colors/font_color_disabled = Color(0.439216, 0.439216, 0.439216, 1) +CheckButton/colors/font_color_focus = Color(1, 1, 1, 1) +CheckButton/colors/font_color_hover = Color(1, 1, 1, 1) +CheckButton/colors/font_color_hover_pressed = Color(1, 1, 1, 1) +CheckButton/colors/font_color_pressed = Color(1, 1, 1, 1) +CheckButton/constants/check_vadjust = 0 +CheckButton/constants/hseparation = 4 +CheckButton/icons/off = SubResource("341") +CheckButton/icons/off_disabled = null +CheckButton/icons/on = SubResource("341") +CheckButton/icons/on_disabled = null +CheckButton/styles/disabled = SubResource("339") +CheckButton/styles/focus = SubResource("342") +CheckButton/styles/hover = SubResource("339") +CheckButton/styles/hover_pressed = SubResource("339") +CheckButton/styles/normal = SubResource("343") +CheckButton/styles/pressed = SubResource("339") +ColorPickerButton/colors/font_color = Color(1, 1, 1, 1) +ColorPickerButton/colors/font_color_disabled = Color(0.9, 0.9, 0.9, 0.3) +ColorPickerButton/colors/font_color_focus = Color(1, 1, 1, 1) +ColorPickerButton/colors/font_color_hover = Color(1, 1, 1, 1) +ColorPickerButton/colors/font_color_pressed = Color(0.8, 0.8, 0.8, 1) +ColorPickerButton/constants/hseparation = 2 +ColorPickerButton/fonts/font = SubResource("37") +ColorPickerButton/icons/bg = SubResource("447") +ColorPickerButton/styles/disabled = SubResource("54") +ColorPickerButton/styles/focus = SubResource("57") +ColorPickerButton/styles/hover = SubResource("60") +ColorPickerButton/styles/normal = SubResource("63") +ColorPickerButton/styles/pressed = SubResource("66") +FileDialog/colors/file_icon_modulate = Color(1, 1, 1, 1) +FileDialog/colors/files_disabled = Color(1, 1, 1, 0.25) +FileDialog/colors/folder_icon_modulate = Color(1, 1, 1, 1) +FileDialog/icons/file = SubResource("425") +FileDialog/icons/folder = SubResource("427") +FileDialog/icons/parent_folder = SubResource("429") +FileDialog/icons/reload = SubResource("431") +FileDialog/icons/toggle_hidden = SubResource("433") +HScrollBar/icons/decrement = null +HScrollBar/icons/decrement_highlight = null +HScrollBar/icons/decrement_pressed = null +HScrollBar/icons/increment = null +HScrollBar/icons/increment_highlight = null +HScrollBar/icons/increment_pressed = null +HScrollBar/styles/grabber = SubResource("93") +HScrollBar/styles/grabber_highlight = SubResource("393") +HScrollBar/styles/grabber_pressed = null +HScrollBar/styles/scroll = SubResource("394") +HScrollBar/styles/scroll_focus = SubResource("395") +HSeparator/styles/separator = SubResource("576") +HSlider/icons/grabber = SubResource("250") +HSlider/icons/grabber_disabled = SubResource("251") +HSlider/icons/grabber_highlight = SubResource("252") +HSlider/icons/tick = SubResource("29") +HSlider/styles/grabber_area = SubResource("4") +HSlider/styles/grabber_area_highlight = SubResource("248") +HSlider/styles/slider = SubResource("249") +ItemList/colors/font_color = Color(0.866667, 0.866667, 0.866667, 1) +ItemList/colors/font_color_selected = Color(1, 1, 1, 1) +ItemList/colors/guide_color = Color(0.266667, 0.266667, 0.266667, 1) +ItemList/constants/hseparation = 0 +ItemList/constants/icon_margin = 2 +ItemList/constants/line_separation = 0 +ItemList/constants/vseparation = 0 +ItemList/styles/bg = SubResource("461") +ItemList/styles/bg_focus = SubResource("462") +ItemList/styles/cursor_unfocused = null +ItemList/styles/selected = SubResource("476") +ItemList/styles/selected_focus = SubResource("490") +LineEdit/colors/clear_button_color = Color(0.88, 0.88, 0.88, 1) +LineEdit/colors/clear_button_color_pressed = Color(1, 1, 1, 1) +LineEdit/colors/cursor_color = Color(0.94, 0.94, 0.94, 1) +LineEdit/colors/font_color = Color(0.88, 0.88, 0.88, 1) +LineEdit/colors/font_color_selected = Color(0, 0, 0, 1) +LineEdit/colors/font_color_uneditable = Color(0.88, 0.88, 0.88, 0.5) +LineEdit/colors/selection_color = Color(0.49, 0.49, 0.49, 1) +LineEdit/constants/minimum_spaces = 12 +LineEdit/fonts/font = SubResource("2") +LineEdit/icons/clear = SubResource("49") +LineEdit/styles/focus = SubResource("127") +LineEdit/styles/normal = SubResource("128") +LineEdit/styles/read_only = SubResource("51") +LinkButton/colors/font_color = Color(0.560784, 0.560784, 0.560784, 1) +LinkButton/colors/font_color_focus = Color(1, 1, 1, 1) +LinkButton/colors/font_color_hover = Color(0.831373, 0.831373, 0.831373, 1) +LinkButton/colors/font_color_pressed = Color(0.560784, 0.560784, 0.560784, 1) +LinkButton/constants/underline_spacing = 0 +LinkButton/styles/focus = SubResource("540") +OptionButton/colors/font_color = Color(0.88, 0.88, 0.88, 1) +OptionButton/colors/font_color_disabled = Color(0.9, 0.9, 0.9, 0.2) +OptionButton/colors/font_color_focus = Color(0.94, 0.94, 0.94, 1) +OptionButton/colors/font_color_hover = Color(0.94, 0.94, 0.94, 1) +OptionButton/colors/font_color_pressed = Color(1, 1, 1, 1) +OptionButton/constants/arrow_margin = 5 +OptionButton/constants/hseparation = 2 +OptionButton/icons/arrow = SubResource("144") +OptionButton/styles/disabled = SubResource("71") +OptionButton/styles/focus = SubResource("72") +OptionButton/styles/hover = SubResource("160") +OptionButton/styles/normal = SubResource("78") +OptionButton/styles/pressed = SubResource("176") +Panel/styles/panel = SubResource("1") +PanelContainer/styles/panel = SubResource("StyleBoxTexture_r7viw") +PopupMenu/colors/font_color = Color(0.88, 0.88, 0.88, 1) +PopupMenu/colors/font_color_accel = Color(0.7, 0.7, 0.7, 0.8) +PopupMenu/colors/font_color_disabled = Color(0.4, 0.4, 0.4, 0.8) +PopupMenu/colors/font_color_hover = Color(0.88, 0.88, 0.88, 1) +PopupMenu/colors/font_color_separator = Color(0.88, 0.88, 0.88, 1) +PopupMenu/constants/hseparation = 4 +PopupMenu/constants/vseparation = 4 +PopupMenu/fonts/font_separator = SubResource("2") +PopupMenu/icons/checked = SubResource("230") +PopupMenu/icons/radio_checked = SubResource("218") +PopupMenu/icons/radio_unchecked = SubResource("219") +PopupMenu/icons/submenu = SubResource("231") +PopupMenu/icons/unchecked = SubResource("232") +PopupMenu/styles/hover = SubResource("243") +PopupMenu/styles/labeled_separator_left = SubResource("200") +PopupMenu/styles/labeled_separator_right = SubResource("201") +PopupMenu/styles/panel = SubResource("202") +PopupMenu/styles/panel_disabled = SubResource("205") +PopupMenu/styles/separator = SubResource("206") +ProgressBar/colors/font_color = Color(0.94, 0.94, 0.94, 1) +ProgressBar/colors/font_color_shadow = Color(0, 0, 0, 1) +ProgressBar/styles/bg = SubResource("507") +ProgressBar/styles/fg = SubResource("508") +SpinBox/icons/updown = SubResource("319") +TabBar/colors/drop_mark_color = Color(0, 0, 0, 1) +TabBar/colors/font_disabled_color = Color(0, 0, 0, 1) +TabBar/colors/font_hovered_color = Color(0, 0, 0, 1) +TabBar/colors/font_outline_color = Color(0, 0, 0, 1) +TabBar/colors/font_selected_color = Color(0, 0, 0, 1) +TabBar/colors/font_unselected_color = Color(0, 0, 0, 1) +TabBar/constants/h_separation = 0 +TabBar/constants/icon_max_width = 0 +TabBar/constants/outline_size = 0 +TabBar/font_sizes/font_size = 16 +TabBar/fonts/font = SubResource("600") +TabBar/icons/close = null +TabBar/icons/decrement = null +TabBar/icons/decrement_highlight = null +TabBar/icons/drop_mark = null +TabBar/icons/increment = null +TabBar/icons/increment_highlight = null +TabBar/styles/button_highlight = null +TabBar/styles/button_pressed = null +TabBar/styles/tab_disabled = null +TabBar/styles/tab_focus = null +TabBar/styles/tab_hovered = null +TabBar/styles/tab_selected = null +TabBar/styles/tab_unselected = null +TabContainer/colors/drop_mark_color = Color(1, 1, 1, 1) +TabContainer/colors/font_disabled_color = Color(0.716296, 0.716296, 0.716296, 1) +TabContainer/colors/font_hovered_color = Color(1, 1, 1, 1) +TabContainer/colors/font_outline_color = Color(0, 0, 0, 1) +TabContainer/colors/font_selected_color = Color(1, 1, 1, 1) +TabContainer/colors/font_unselected_color = Color(0.458405, 0.458405, 0.458405, 1) +TabContainer/constants/icon_max_width = 0 +TabContainer/constants/icon_separation = 0 +TabContainer/constants/outline_size = 0 +TabContainer/constants/side_margin = 6 +TabContainer/font_sizes/font_size = 16 +TabContainer/fonts/font = SubResource("600") +TabContainer/icons/decrement = SubResource("AtlasTexture_iliap") +TabContainer/icons/decrement_highlight = SubResource("AtlasTexture_iliap") +TabContainer/icons/drop_mark = SubResource("AtlasTexture_7ka72") +TabContainer/icons/increment = SubResource("AtlasTexture_q0irx") +TabContainer/icons/increment_highlight = SubResource("AtlasTexture_q0irx") +TabContainer/icons/menu = SubResource("AtlasTexture_0meu8") +TabContainer/icons/menu_highlight = SubResource("AtlasTexture_0meu8") +TabContainer/styles/panel = SubResource("StyleBoxTexture_ebn52") +TabContainer/styles/tab_disabled = null +TabContainer/styles/tab_focus = SubResource("StyleBoxTexture_fcx8v") +TabContainer/styles/tab_hovered = SubResource("StyleBoxTexture_fcx8v") +TabContainer/styles/tab_selected = SubResource("StyleBoxTexture_wk0t6") +TabContainer/styles/tab_unselected = SubResource("StyleBoxTexture_wy5a1") +TabContainer/styles/tabbar_background = null +TextEdit/colors/background_color = Color(0, 0, 0, 0) +TextEdit/colors/bookmark_color = Color(0.08, 0.49, 0.98, 1) +TextEdit/colors/brace_mismatch_color = Color(1, 0.2, 0.2, 1) +TextEdit/colors/breakpoint_color = Color(0.8, 0.8, 0.4, 0.2) +TextEdit/colors/caret_background_color = Color(0, 0, 0, 1) +TextEdit/colors/caret_color = Color(0.88, 0.88, 0.88, 1) +TextEdit/colors/code_folding_color = Color(0.8, 0.8, 0.8, 0.8) +TextEdit/colors/completion_background_color = Color(0.17, 0.16, 0.2, 1) +TextEdit/colors/completion_existing_color = Color(0.87, 0.87, 0.87, 0.13) +TextEdit/colors/completion_font_color = Color(0.67, 0.67, 0.67, 1) +TextEdit/colors/completion_scroll_color = Color(1, 1, 1, 0.29) +TextEdit/colors/completion_selected_color = Color(0.26, 0.26, 0.27, 1) +TextEdit/colors/current_line_color = Color(0.25, 0.25, 0.26, 0.8) +TextEdit/colors/executing_line_color = Color(0.2, 0.8, 0.2, 0.4) +TextEdit/colors/font_color = Color(0.88, 0.88, 0.88, 1) +TextEdit/colors/font_color_readonly = Color(0.88, 0.88, 0.88, 0.5) +TextEdit/colors/font_color_selected = Color(0, 0, 0, 1) +TextEdit/colors/function_color = Color(0.4, 0.64, 0.81, 1) +TextEdit/colors/line_number_color = Color(0.67, 0.67, 0.67, 0.4) +TextEdit/colors/mark_color = Color(1, 0.4, 0.4, 0.4) +TextEdit/colors/member_variable_color = Color(0.9, 0.31, 0.35, 1) +TextEdit/colors/number_color = Color(0.92, 0.58, 0.2, 1) +TextEdit/colors/safe_line_number_color = Color(0.67, 0.78, 0.67, 0.6) +TextEdit/colors/selection_color = Color(0.49, 0.49, 0.49, 1) +TextEdit/colors/symbol_color = Color(0.94, 0.94, 0.94, 1) +TextEdit/colors/word_highlighted_color = Color(0.8, 0.9, 0.9, 0.15) +TextEdit/constants/completion_lines = 7 +TextEdit/constants/completion_max_width = 50 +TextEdit/constants/completion_scroll_width = 6 +TextEdit/constants/line_spacing = 2 +TextEdit/icons/fold = SubResource("306") +TextEdit/icons/folded = SubResource("308") +TextEdit/icons/tab = SubResource("292") +TextEdit/styles/completion = SubResource("272") +TextEdit/styles/focus = SubResource("41") +TextEdit/styles/normal = SubResource("128") +TextEdit/styles/read_only = SubResource("293") +TooltipLabel/colors/font_color = Color(0.866667, 0.866667, 0.866667, 1) +TooltipLabel/colors/font_color_shadow = Color(0.133333, 0.133333, 0.133333, 1) +TooltipLabel/constants/shadow_offset_x = 0 +TooltipLabel/constants/shadow_offset_y = 0 +TooltipPanel/styles/panel = SubResource("409") +Tree/icons/checked = SubResource("334") +Tree/icons/unchecked = SubResource("336") +Tree/styles/bg = SubResource("360") +VScrollBar/icons/decrement = SubResource("90") +VScrollBar/icons/decrement_highlight = SubResource("90") +VScrollBar/icons/decrement_pressed = SubResource("90") +VScrollBar/icons/increment = SubResource("90") +VScrollBar/icons/increment_highlight = SubResource("90") +VScrollBar/icons/increment_pressed = SubResource("90") +VScrollBar/styles/grabber = SubResource("93") +VScrollBar/styles/grabber_highlight = SubResource("393") +VScrollBar/styles/scroll = SubResource("394") +VScrollBar/styles/scroll_focus = SubResource("395") +VSeparator/constants/separation = 2 +VSeparator/styles/separator = SubResource("563") +VSlider/icons/grabber = SubResource("250") +VSlider/icons/grabber_disabled = SubResource("251") +VSlider/icons/grabber_highlight = SubResource("252") +VSlider/icons/tick = SubResource("111") +VSlider/styles/grabber_area = SubResource("4") +VSlider/styles/grabber_area_highlight = SubResource("4") +VSlider/styles/slider = SubResource("249") +WindowDialog/colors/title_color = Color(1, 1, 1, 1) +WindowDialog/constants/close_h_ofs = 5 +WindowDialog/constants/close_v_ofs = 19 +WindowDialog/constants/scaleborder_size = 4 +WindowDialog/constants/title_height = 36 +WindowDialog/icons/close = SubResource("20") +WindowDialog/icons/close_highlight = SubResource("20") +WindowDialog/styles/panel = SubResource("19") diff --git a/tools/configurator/res/pixel_ui_theme/RetroDECKTheme.tres b/tools/configurator/res/pixel_ui_theme/RetroDECKTheme.tres new file mode 100644 index 00000000..0c598f6f --- /dev/null +++ b/tools/configurator/res/pixel_ui_theme/RetroDECKTheme.tres @@ -0,0 +1,2883 @@ +[gd_resource type="Theme" load_steps=129 format=4 uid="uid://bq8dsxeo34sl"] + +[ext_resource type="Texture2D" uid="uid://dx0u5hiwxfgu5" path="res://res/pixel_ui_theme/8x8_ui_elements.png" id="1_ak8qr"] +[ext_resource type="Texture2D" uid="uid://c4vntk8yri4yw" path="res://res/pixel_ui_theme/8x8_ui_elements2x.png" id="2_jrpaj"] +[ext_resource type="FontFile" uid="uid://sph0kotu777o" path="res://res/pixel_ui_theme/m5x7.ttf" id="2_yegrt"] +[ext_resource type="Texture2D" uid="uid://cxyml1owhi6de" path="res://res/pixel_ui_theme/8x8_ui_icons.png" id="3_0m6kw"] +[ext_resource type="FontFile" uid="uid://cqhvyjx75dls8" path="res://res/pixel_ui_theme/pixel-sans.otf" id="4_qf1ck"] + +[sub_resource type="StyleBoxTexture" id="361"] +content_margin_left = 6.0 +content_margin_top = 4.0 +content_margin_right = 6.0 +content_margin_bottom = 4.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +region_rect = Rect2(0, 40, 8, 8) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8gu0q"] +bg_color = Color(0.6, 0.168627, 0.6, 0.372549) + +[sub_resource type="StyleBoxTexture" id="6"] +content_margin_left = 6.0 +content_margin_top = 4.0 +content_margin_right = 6.0 +content_margin_bottom = 4.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +region_rect = Rect2(24, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="7"] +content_margin_left = 6.0 +content_margin_top = 4.0 +content_margin_right = 6.0 +content_margin_bottom = 4.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +region_rect = Rect2(8, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="8"] +content_margin_left = 6.0 +content_margin_top = 4.0 +content_margin_right = 6.0 +content_margin_bottom = 4.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +region_rect = Rect2(32, 40, 8, 8) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4uh6"] +atlas = ExtResource("2_jrpaj") +region = Rect2(120, 176, 66, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ib0ka"] +atlas = ExtResource("2_jrpaj") +region = Rect2(186, 80, 65, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgyau"] +atlas = ExtResource("2_jrpaj") +region = Rect2(118, 208, 66, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ii0m"] +atlas = ExtResource("2_jrpaj") +region = Rect2(186, 80, 65, 32) + +[sub_resource type="StyleBoxFlat" id="339"] +content_margin_left = 6.0 +content_margin_top = 5.0 +content_margin_right = 6.0 +content_margin_bottom = 4.0 +bg_color = Color(0.556863, 0.556863, 0.556863, 1) +draw_center = false +anti_aliasing = false + +[sub_resource type="StyleBoxFlat" id="342"] +content_margin_left = 6.0 +content_margin_top = 5.0 +content_margin_right = 6.0 +content_margin_bottom = 4.0 +bg_color = Color(0.556863, 0.556863, 0.556863, 1) +draw_center = false +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +border_color = Color(0.27451, 0.27451, 0.27451, 1) +corner_radius_top_left = 1 +corner_radius_top_right = 1 +corner_radius_bottom_right = 1 +corner_radius_bottom_left = 1 +anti_aliasing = false + +[sub_resource type="StyleBoxFlat" id="343"] +content_margin_left = 6.0 +content_margin_top = 5.0 +content_margin_right = 6.0 +content_margin_bottom = 4.0 +bg_color = Color(0.556863, 0.556863, 0.556863, 1) +draw_center = false +anti_aliasing = false + +[sub_resource type="Image" id="Image_s0fda"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gv////7///88AAAAAAAAAAAAAAAA////UP////////9OAAAAAAAAAAAAAAAA////Qf////7///8ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8F////5P///////////////////////////////wAAAAAAAAAAAAAAAAAAAAD///8e/////////ygAAAAAAAAAAP///6f///+8AAAAAAAAAAD///8i/////////x0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0j////N////+f///9r///9J////XP///9r////2////x////ysAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5D////C////igAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9b///8w////Mv///9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5P/////////kwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////y////4UAAAAAAAAAAAAAAAD///+Y////wf///5IAAAAAAAAAAAAAAAD///+K////yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1/////K////CP////////9J////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAAAAAAD////Z////YgAAAAD///8E////2////9n///8MAAAAAP///17////YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9u////7////47///8g////yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////2f///zf///8U////nP////P////J////LP///xf///+z////wQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////ygAAAAD////LAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0v///zD///8y////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+a////pv///yb///+o////mgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///98////zgAAAAAAAAAAAAAAAP///9////9K////1wAAAAAAAAAAAAAAAP///9T///95AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0////1kAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5X///+cAAAAAP///0L///+w////oP///04AAAAA////mf///5MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8n///8i////jv////D///9tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9pAAAAAAAAAAD///8s/////////0QAAAAAAAAAAP///0j////zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////c/////////9UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///y7////+////GQAAAAD///8n////4gAAAAD////k////GwAAAAD///8d/////////yoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0n////j////BAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////UP///9UAAAAA////j////2r///9g////lwAAAAD////V////TgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0MAAAAAAAAAAP///yD/////////IAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7T///+t////swAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0n/////////SQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0n/////////SQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9////9hAAAAAP///27///+cAAAAAP///6D///9gAAAAAP///2f////bAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////vv///3YAAAAAAAAAAP//////////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAD///8P////+v///w/////b////Hv///xr////e////EP////r///8OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Sf////////9JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////IP////////8cAAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8h////9f///x3////1////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////tP///63///+zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////tP///63///+zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////kf///6oAAAAA////tv///1UAAAAA////W////6QAAAAA////sP///4wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zL////z////EAAAAAAAAAAA/////////0n///8I////CP///wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////H////X////9IAAAAAAAAAAP///9L///9h////xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+0////rf///7MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///8g/////////xwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4r///+tAAAAAP///67///+JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yH////1////Hf////X///8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yH////1////Hf////X///8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9D////7////wn////y////EQAAAAD///8X////5v///wX////y////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////p///////////////////////////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4P////E////hgAAAAAAAAAA////i////8f///9/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////If////X///8d////9f///yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///yD/////////HAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8I////7P///1QAAAAA////VP///+z///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////iv///60AAAAA////rv///4kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////iv///60AAAAA////rv///4kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wT////v////Z////8gAAAAAAAAAAAAAAAD////R////W////+r///8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD////6////Kv///wj///8I////CP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Pv////////86AAAAAAAAAAD///9E/////////zoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+K////rQAAAAD///+u////iQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////IP////////8cAAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1/////y////CQAAAAD///8I////8f///18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wj////s////VAAAAAD///9U////7P///wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wj////s////VAAAAAD///9U////7P///wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6b////J////gQAAAAAAAAAAAAAAAP///4z////H////ngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////kf///7EAAAAAAAAAAAAAAAAAAAAA/////////0n///8I////CP///wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////CP///+z///9UAAAAAP///1T////s////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yv//////////////////////////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////X/////L///8JAAAAAP///wj////x////XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////X/////L///8JAAAAAP///wj////x////XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////V/////////87AAAAAAAAAAAAAAAA////R/////////9PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xH////0////QAAAAAAAAAAAAAAAAAAAAAD//////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9f////8v///wkAAAAA////CP////H///9fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zX////9////J////wj///8I////CP///yX////9////NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////K///////////////////////////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////K///////////////////////////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8r//////////////////////////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////oP///68AAAAAAAAAAAAAAAAAAAAAAAAAAP///7D///+fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Nf////3///8n////CP///wj///8I////Jf////3///80AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Nf////3///8n////CP///wj///8I////Jf////3///80AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///81/////f///yf///8I////CP///wj///8l/////f///zQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xP////3////PwAAAAAAAAAAAAAAAAAAAAAAAAAA////Q/////f///8TAAAAAAAAAAAAAAAAAAAAAAAAAAD///+g////rwAAAAAAAAAAAAAAAAAAAAAAAAAA////sP///58AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+g////rwAAAAAAAAAAAAAAAAAAAAAAAAAA////sP///58AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6D///+vAAAAAAAAAAAAAAAAAAAAAAAAAAD///+w////nwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////E/////f///8/AAAAAAAAAAAAAAAAAAAAAAAAAAD///9D////9////xMAAAAAAAAAAAAAAAAAAAAA////E/////f///8/AAAAAAAAAAAAAAAAAAAAAAAAAAD///9D////9////xMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8T////9////z8AAAAAAAAAAAAAAAAAAAAAAAAAAP///0P////3////EwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9J/////////0kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+n///+lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+n////6f///xQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7T///+t////swAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+3////j////wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP///+Q////tgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8h////9f///x3////1////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xb////7////QgAAAAAAAAAAAAAAAAAAAAD///9G////+////xYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4r///+tAAAAAP///67///+JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9J/////////0kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9J/////////0kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7b///+XAAAAAAAAAAAAAAAAAAAAAP///5v///+1AAAAAAAAAAAAAAAAAAAAAAAAAAD///8K////1v///3oAAAAAAAAAAAAAAAAAAAAA////bv///9b///8KAAAAAAAAAAAAAAAAAAAAAP///5H////f////2////44AAAAAAAAAAP///yD////k////DgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8I////7P///1QAAAAA////VP///+z///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7T///+t////swAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7T///+t////swAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////E////6H////6AAAAAAAAAAAAAAAA////IP///+T///8OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////n///8RAAAAAAAAAAAAAAAAAAAAAP///wb////r/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////Wf///+n///8DAAAAAAAAAAD///8E////6////1gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8t////8////0EAAAAAAAAAAP///zf////w////LAAAAAAAAAAAAAAAAAAAAAAAAAAA////KP///wP///8s////4wAAAAAAAAAA////pP///28AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1/////y////CQAAAAD///8I////8f///18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8h////9f///x3////1////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8h////9f///x3////1////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+o////W/////YAAAAAAAAAAAAAAAD///+k////bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////yP///2kAAAAAAAAAAAAAAAAAAAAA////VP///8b/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///8K////8v///0IAAAAAAAAAAP///0T////y////CQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9m////6P///xn///8T////4f///2YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////wf///+v///9kAAAAAP///zH////c////BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yv//////////////////////////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4r///+tAAAAAP///67///+JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4r///+tAAAAAP///67///+JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////AAAAAAAAAAA////Mf///9z///8GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////94////yAAAAAAAAAAAAAAAAAAAAAD///+2////bf////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+g////lwAAAAAAAAAA////mf///6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+o////wv///7b///+oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///+0AAAAA////uv///1kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zX////9////J////wj///8I////CP///yX////9////NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8I////7P///1QAAAAA////VP///+z///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8I////7P///1QAAAAA////VP///+z///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////8AAAAAAAAAAD///+6////WQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0P////f////JwAAAAAAAAAA////G////8z///9C/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0T////p////A////wP////q////QwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///w3////k////6v///w4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////HQAAAAD///8p////4////0X////N////Af///1v////6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////oP///68AAAAAAAAAAAAAAAAAAAAAAAAAAP///7D///+fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1/////y////CQAAAAD///8I////8f///18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1/////y////CQAAAAD///8I////8f///18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////wAAAAA////Rf///83///9/////2P///+H///9vAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RP///4P///+FAAAAAAAAAAD///97////bP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Av///+X///9C////Qf///+T///8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Nf////H////1////QgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////J////2////9P///9N////zf///0T///8m////oP////YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xP////3////PwAAAAAAAAAAAAAAAAAAAAAAAAAA////Q/////f///8TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yv//////////////////////////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yv//////////////////////////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////P///wH////N////RP///zn///8J////EP////EAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9E////Jf///+H///8C////Af///9X///8R////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////i////4////+R////igAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wj////X////a////3X////f////DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1r///+5////B////7z///8Y////+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zX////9////J////wj///8I////CP///yX////9////NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zX////9////J////wj///8I////CP///yX////9////NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Wv///7kAAAAAAAAAAAAAAAD///9H////twAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAA////xv///0P///9A////qAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8v////1v///9n///8uAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////jv///7v///8B////A////8v///+WAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8G////3P///zD///+V////VAAAAAD////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////oP///68AAAAAAAAAAAAAAAAAAAAAAAAAAP///7D///+fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////oP///68AAAAAAAAAAAAAAAAAAAAAAAAAAP///7D///+fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wb////c////MAAAAAAAAAAA////Of///7////8TAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAD///9o////of///6P///9FAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////R////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///z7////u////HQAAAAAAAAAA////Lv////n///9BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3D///+jAAAAAP///9f////Y////2P////////+2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xP////3////PwAAAAAAAAAAAAAAAAAAAAAAAAAA////Q/////f///8TAAAAAAAAAAAAAAAAAAAAAP///xP////3////PwAAAAAAAAAAAAAAAAAAAAAAAAAA////Q/////f///8TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////cP///6MAAAAAAAAAAP///0L///+p////DQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAP///xH////t////1////wIAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8L////3f///18AAAAAAAAAAAAAAAAAAAAA////g////97///8LAAAAAAAAAAAAAAAAAAAAAAAAAAD///8O////5f///yAAAAAAAAAAAAAAAAAAAAAA/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///w7////l////IAAAAAAAAAAA////9////9v////Y////2P///zYAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAP///6v///+BAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8/////3f///9r///83AAAAAAAAAAD///8b////4f///w4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8r///9C////Sf///8EAAAAAAAAAAP///57///9uAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9f///wv///8M////8QAAAAD///8s////2v///wYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////z////C////wz////yAAAAAP///7X///9YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xP///+h////+gAAAAAAAAAAAAAAAP///yD////k////DgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9J////tP///7v///+7////tP///0cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////////9v///9L///9+////CQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///x8AAAAAAAAAAAAAAAAAAAAAAAAAAP///xT////5////PAAAAAAAAAAAAAAAAP///zj////6////FQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8T///9C////Sf///8X///9A////zP///0H////d////2v///zcAAAAAAAAAAAAAAAAAAAAA////qP///1v////2AAAAAAAAAAAAAAAA////pP///28AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////g////5v///8TAAAAAAAAAAD///8V////m////38AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Sf///7T///+7////u////7T///9HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////g////9n////4////2f///0f///9x////6P///+r///+X////CgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yv///+l////5f///+v////c////if///w4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8g////T////83////K////CgAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///5v////l////+f///+D///+e////9P///xoAAAAAAAAAAAAAAAAAAAAAAAAAAP///6n///+cAAAAAAAAAAAAAAAA////l////60AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Ov///9v////c////Pf///8r///9C////yv///0L///9J////wQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////wAAAAAAAAAAP///zH////c////BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0v///+oAAAAAP/////////x////5v///3UAAAAA////m////0cAAAAAAAAAAAAAAAAAAAAAAAAAAP///4P///+b////EwAAAAAAAAAA////Ff///5v///9/AAAAAAAAAAAAAAAAAAAAAAAAAAD///9Z////Nf///xH///9m////9v///9j///8s////Hv///8T///+MAAAAAAAAAAAAAAAAAAAAAAAAAAD///9R////2////1b///8IAAAAAP///xb///+Y////0v///w0AAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAA////DP///97///98AAAAAAAAAAAAAAAAAAAAAP///xT////h////r////y////8O////M/////L////i////DgAAAAAAAAAAAAAAAAAAAAAAAAAA////RP////L///8KAAAAAP///wf////v////SwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9Y////tgAAAAD////1////C////wz////xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////AAAAAAAAAAA////uv///1kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////t////xQAAAAA/////////xj///8l/////v///wr///8V////tAAAAAAAAAAAAAAAAAAAAAD///9L////qAAAAAD///8e////wP///+////+yAAAAAP///5v///9HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wT////9////ZgAAAAAAAAAA////VP///+EAAAAAAAAAAAAAAAAAAAAA////IP///+L///8eAAAAAAAAAAAAAAAAAAAAAAAAAAD///+k////hQAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////ev///9QAAAAAAAAAAAAAAAAAAAAA////jf///9j///8CAAAAAAAAAAD///96////3f///9X///+AAAAAAAAAAAAAAAAAAAAAAAAAAAD///8B////3v///14AAAAA////Vv///+b///8DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Bv///9r///8uAAAAAP////P///8L////DP////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////8AAAAAP///0X////N////Af///1v////6AAAAAAAAAAAAAAAAAAAAAAAAAAD///+8AAAAAAAAAAD/////////U////3f////f////AgAAAAD///+7AAAAAAAAAAAAAAAAAAAAAP///7f///8UAAAAAP///7L///+L////Av///yAAAAAA////Ff///7QAAAAAAAAAAAAAAAAAAAAA////HP///6b////h////4f///////////////////////////////gAAAAAAAAAAAAAAAAAAAAD///+Q////dwAAAAD///8l////xv///+T////g////HP///yf////aAAAAAAAAAAAAAAAAAAAAAP//////////////////////////AAAAAAAAAAD///9Q////9wAAAAAAAAAAAAAAAAAAAAD////Z////dwAAAAAAAAAA////LP////f///8+////d////9IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///97////vgAAAAD///+1////iAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9v////oAAAAAAAAAAA////xf///0H///9J////xQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////z///8B////zf///0T///8m////oP////YAAAAAAAAAAAAAAAAAAAAAAAAAAP///7wAAAAAAAAAAP////////+3////6v///ysAAAAAAAAAAP///7sAAAAAAAAAAAAAAAAAAAAA////vAAAAAAAAAAA////8P///yYAAAAAAAAAAAAAAAAAAAAA////uwAAAAAAAAAAAAAAAAAAAAD///+9////rf///w7///8C/////////1f///8I////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAP///9j///8qAAAAAP///77///9qAAAAAP////n///8X////Av////gAAAAAAAAAAAAAAAAAAAAA////CP////////9J////CP///wgAAAAAAAAAAP///1L////0AAAAAAAAAAAAAAAAAAAAAP////j///9WAAAAAP///wT////M////jwAAAAD///9V////9gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xr////6////K/////v///8nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Dv///+P///8dAAAAAAAAAAD///86////2////9z///89AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1r///+5////B////7z///8Y////+wAAAAAAAAAAAAAAAAAAAAAAAAAA////t////xMAAAAA/////////xj///9f////mQAAAAD///8U////tAAAAAAAAAAAAAAAAAAAAAD///+8AAAAAAAAAAD////w////JQAAAAAAAAAAAAAAAAAAAAD///+7AAAAAAAAAAAAAAAAAAAAAP////X///9MAAAAAP///yH/////////hAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9////woAAAAA////9f///x////8M/////////wb///8R////6wAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////gv///80AAAAAAAAAAAAAAAAAAAAA////+P///1UAAAAA////fP///9n///8JAAAAAP///1b////3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7L///+6////xQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8G////3P///zD///+V////VAAAAAD////8AAAAAAAAAAAAAAAAAAAAAAAAAAD///9N////pwAAAAD/////////GP///wH////C////OP///5v///9JAAAAAAAAAAAAAAAAAAAAAP///7f///8TAAAAAP///7H///+K////Av///xQAAAAA////FP///7QAAAAAAAAAAAAAAAAAAAAA////2P///4v///8X////pv///8b////w////V////yH///87////UgAAAAAAAAAAAAAAAAAAAAD////1////DwAAAAD////f////Pv///0b////5////Fv///2f///+qAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAP///xb////o////cwAAAAAAAAAAAAAAAAAAAAD////Z////eP///y3////2////OQAAAAAAAAAA////eP///9MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Tf////////9kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3D///+jAAAAAP///9f////Y////2P////////+2AAAAAAAAAAAAAAAAAAAAAAAAAAD///+H////p////xMAAAAAAAAAAP///xT///+o////gwAAAAAAAAAAAAAAAAAAAAAAAAAA////Tf///6cAAAAA////Hv///7v////v////1wAAAAD///+b////SQAAAAAAAAAAAAAAAAAAAAD///9F////4f////H///+U////BP///3L////h////+////+D///9pAAAAAAAAAAAAAAAAAAAAAP///87///9AAAAAAP///1L////g////2P///0f////P////1f///yIAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////Cf///xz///9c////3v///77///8GAAAAAAAAAAAAAAAAAAAAAP///4/////W////zf///4kAAAAAAAAAAP///wP////Z////gwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9J////9f///w0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8O////5f///yAAAAAAAAAAAAAAAAAAAAAA/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9N////t////7z///+8////t////0sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////h////6f///8TAAAAAAAAAAD///8U////qP///4MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////c////7YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////////8v///8r///9w////BQAAAAAAAAAAAAAAAAAAAAAAAAAA////Fv///+b////3////Nf///w3///8r////uP///9j///8OAAAAAAAAAAAAAAAAAAAAAP///wP///8M////J////9T///+LAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Tf///7f///+8////vP///7f///9LAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8F////vv///6z///8sAAAAAAAAAAD///8W////WQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8V////8P///6v////l////+v///+T///+U////FAAAAAAAAAAAAAAAAAAAAAAAAAAA////HP////j////w////nv///wcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8F////cf///8z////v////7f///93///+ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///27////v////jv///yD////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yf///yL///+O////8P///20AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xX////6////NgAAAAAAAAAAAAAAAP///zf////5////FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+n///+lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///5v////l////+v///+T///+W////FQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///63///+SAAAAAAAAAAAAAAAA////lv///6oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+3////j////wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////W////MP///zL////UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xT////p////pQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xT////h////sP///y////8O////Lf///63////b////DwAAAAAAAAAAAAAAAAAAAAAAAAAA////S////+r///8EAAAAAP///wb////t////RwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9L///8w////Mv///9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////t////4////8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zv////O////9v///9H///89AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9b///8w////Mv///9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+T/////////5MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xT////p////pQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////jf///9r///8DAAAAAAAAAAAAAAAA////Av///9n///+FAAAAAAAAAAAAAAAAAAAAAAAAAAD///8D////5f///0sAAAAA////Uv///+H///8CAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////+f///zwAAAAAAAAAAAAAAAD///84////+v///xUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////3P///4j///8S////i////9sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0v///zD///8y////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////mv///6b///8m////qP///5oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////t////4////8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////Z////dwAAAAAAAAAAAAAAAAAAAAAAAAAA////eP///9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+H////pgAAAAD///+v////gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+p////nAAAAAAAAAAAAAAAAP///5f///+tAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////+f///zwAAAAAAAAAAAAAAAD///84////+v///xUAAAAAAAAAAAAAAAAAAAAA////EP///+////9fAAAAAAAAAAAAAAAA////WP///+7///8PAAAAAAAAAAAAAAAAAAAAAAAAAAD////z////SwAAAAD///9W////6wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////j///9WAAAAAAAAAAAAAAAAAAAAAAAAAAD///9W////9wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yX////x////E/////b///8eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0T////y////CgAAAAD///8H////7////0sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+p////nAAAAAAAAAAAAAAAAP///5f///+tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////fv///9T///8BAAAAAAAAAAD////Q////fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6L////C////R////+b///9qAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8Z////m////+X////6////5P///5b///8VAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///5v////l////+v///+T///+W////FQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xn///+b////5f////r////k////lv///xUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////+P///1YAAAAAAAAAAAAAAAAAAAAAAAAAAP///1b////3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8P///+Y////uQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Af///97///9eAAAAAP///1b////m////AwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0T////y////CgAAAAD///8H////7////0sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8O////7v///00AAAAA////Sv///+z///8NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Lf////z////+////VwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+H///+w////L////w7///8t////rf///9v///8PAAAAAAAAAAAAAAAAAAAAAP///xT////h////sP///y////8O////Lf///63////b////DwAAAAAAAAAAAAAAAAAAAAD///8U////4f///7D///8v////Dv///y3///+t////2////w8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////Y////eAAAAAAAAAAAAAAAAAAAAAAAAAAA////eP///9MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Yf////z///9VAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////e////74AAAAA////tf///4gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Af///97///9eAAAAAP///1b////m////AwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///97////xAAAAAD////D////dwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zv////u////kf///93///+m////AgAAAAD///9s////0gAAAAAAAAAAAAAAAAAAAAD///+N////2v///wMAAAAAAAAAAAAAAAD///8C////2f///4UAAAAAAAAAAAAAAAAAAAAA////jf///9r///8DAAAAAAAAAAAAAAAA////Av///9n///+FAAAAAAAAAAAAAAAAAAAAAP///43////a////AwAAAAAAAAAAAAAAAP///wL////Z////hQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4z////b////AwAAAAAAAAAAAAAAAP///wP////Z////gwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8a////+v///yv////7////JwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////e////74AAAAA////tf///4gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///w3////s////ef///+n///8LAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0v///4IAAAAA////Hv///+D///+e////Gv///+b///9dAAAAAAAAAAAAAAAAAAAAAP///9n///93AAAAAAAAAAAAAAAAAAAAAAAAAAD///94////1AAAAAAAAAAAAAAAAAAAAAD////Z////dwAAAAAAAAAAAAAAAAAAAAAAAAAA////eP///9QAAAAAAAAAAAAAAAAAAAAA////2f///3cAAAAAAAAAAAAAAAAAAAAAAAAAAP///3j////UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+H///+7////LP///w3///8r////uP///9v///8PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+y////uv///8UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8a////+v///yv////7////JwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3f/////////cwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////0////UQAAAAAAAAAA////Iv///+P////z////nQAAAAAAAAAAAAAAAAAAAAAAAAAA////+P///1YAAAAAAAAAAAAAAAAAAAAAAAAAAP///1b////3AAAAAAAAAAAAAAAAAAAAAP////j///9WAAAAAAAAAAAAAAAAAAAAAAAAAAD///9W////9wAAAAAAAAAAAAAAAAAAAAD////4////VgAAAAAAAAAAAAAAAAAAAAAAAAAA////Vv////cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///5v////m////+v///+T///+W////FQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///03/////////ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+y////uv///8UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////If////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7r////I////Mv///yH///9b////3/////j///+MAAAAAAAAAAAAAAAAAAAAAAAAAAD////4////VgAAAAAAAAAAAAAAAAAAAAAAAAAA////Vv////cAAAAAAAAAAAAAAAAAAAAA////+P///1YAAAAAAAAAAAAAAAAAAAAAAAAAAP///1b////3AAAAAAAAAAAAAAAAAAAAAP////j///9WAAAAAAAAAAAAAAAAAAAAAAAAAAD///9W////9wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Sf////X///8NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///03/////////ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gv///6r////r////9////8////9f////Jv///+X///+EAAAAAAAAAAAAAAAAAAAAAP///9j///94AAAAAAAAAAAAAAAAAAAAAAAAAAD///94////0wAAAAAAAAAAAAAAAAAAAAD////Y////eAAAAAAAAAAAAAAAAAAAAAAAAAAA////eP///9MAAAAAAAAAAAAAAAAAAAAA////2P///3gAAAAAAAAAAAAAAAAAAAAAAAAAAP///3j////TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8Z////m////+X////6////5P///5b///8WAAAAAAAAAAAAAAAAAAAAAAAAAAD///8D////DP///yf////U////iwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Sf////X///8NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////jP///9v///8DAAAAAAAAAAAAAAAA////A////9n///+DAAAAAAAAAAAAAAAAAAAAAP///4z////b////AwAAAAAAAAAAAAAAAP///wP////Z////gwAAAAAAAAAAAAAAAAAAAAD///+M////2////wMAAAAAAAAAAAAAAAD///8D////2f///4MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+H///+w////L////w7///8t////rf///93///8QAAAAAAAAAAAAAAAAAAAAAP///xz////4////8P///57///8HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8D////DP///yf////U////iwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////4f///7v///8s////Df///yv///+4////2////w8AAAAAAAAAAAAAAAAAAAAA////FP///+H///+7////LP///w3///8r////uP///9v///8PAAAAAAAAAAAAAAAAAAAAAP///xT////h////u////yz///8N////K////7j////b////DwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+N////2v///wMAAAAAAAAAAAAAAAD///8C////2f///4UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xz////4////8P///57///8HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8Z////m////+b////6////5P///5b///8VAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///5v////m////+v///+T///+W////FQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xn///+b////5v////r////k////lv///xUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////p////+n///8UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9n///93AAAAAAAAAAAAAAAAAAAAAAAAAAD///94////1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8D////kP///7YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////+P///1YAAAAAAAAAAAAAAAAAAAAAAAAAAP///1b////3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////4////VgAAAAAAAAAAAAAAAAAAAAAAAAAA////Vv////EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xn///+b////5f////r////k////lv///xUAAAAAAAAAAAAAAAAAAAAAAAAAAP///9j///94AAAAAAAAAAAAAAAAAAAAAAAAAAD///94////0QAAAAAAAAAAAAAAAAAAAAD///8Q////7////18AAAAAAAAAAAAAAAD///9Y////7v///w8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///8G////dP///87////1////9P///9X///9wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////4f///7D///8v////Dv///y3///+t////2////w8AAAAAAAAAAAAAAAAAAAAA////jP///9v///8DAAAAAAAAAAAAAAAA////A////9n///99AAAAAAAAAAAAAAAAAAAAAAAAAAD///9+////1P///wEAAAAAAAAAAP///9D///98AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///5v////l////+v///+T///+W////FQAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA////Bv///8H////N////Rv///xD///8X////Tv///0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8Z////6gAAAAD///8V////5gAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////////9v///9L///9+////CQAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAD///+g////wf///wgAAAAAAAAAAAAAAAAAAAAA/////P///0IAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///43////a////AwAAAAAAAAAAAAAAAP///wL////Z////hQAAAAAAAAAAAAAAAAAAAAD///8U////4f///7v///8s////Df///yv///+4////0////wwAAAAAAAAAAAAAAAAAAAAAAAAAAP///w7////u////TQAAAAD///9K////7P///w0AAAAAAAAAAAAAAAAAAAAAAAAAAP///xT////h////sP///y////8O////Lf///63////b////DwAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD///93////6////w8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0z///+3AAAAAP///0j///+zAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8g////T////83////K////CgAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAA////hf///87///8OAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////2f///3cAAAAAAAAAAAAAAAAAAAAAAAAAAP///3j////UAAAAAAAAAAAAAAAAAAAAAAAAAAD///8Z////m////+b////8/////////63///8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3v////EAAAAAP///8P///93AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////jf///9r///8DAAAAAAAAAAAAAAAA////Av///9n///+FAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP///9H///+EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////f////4UAAAAA////e////4EAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAA////DP///97///98AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAP///2j////Z////FgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////4////VgAAAAAAAAAAAAAAAAAAAAAAAAAA////Vv////cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+1////zv///wMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Df///+z///95////6f///wsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////Z////dwAAAAAAAAAAAAAAAAAAAAAAAAAA////eP///9QAAAAAAAAAAAAAAAAAAAAA//////////////////////////////////////////8AAAAAAAAAAAAAAAAAAAAA////9v///1oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8P////D////8////8/////D////8////8/////AAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////ev///9QAAAAAAAAAAAAAAAAAAAAA/////////0T///9P////4f///x8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////j///9WAAAAAAAAAAAAAAAAAAAAAAAAAAD///9W////9wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yb////x////sf///wkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////d/////////9zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////j///9WAAAAAAAAAAAAAAAAAAAAAAAAAAD///9W////9wAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8I////CP///wj///9J/////wAAAAAAAAAAAAAAAAAAAAD////3////VgAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+T///8cAAAAAP///+X///8ZAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9Q////9wAAAAAAAAAAAAAAAAAAAAD/////////cv////X///9sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////2P///3gAAAAAAAAAAAAAAAAAAAAAAAAAAP///3j////TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zb///+v////BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8h/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////+P///1YAAAAAAAAAAAAAAAAAAAAAAAAAAP///1b////3AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP///9X///97AAAAAAAAAAAAAAAA////CP///0n/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///8c////4wAAAAD///8a////4gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///1L////0AAAAAAAAAAAAAAAAAAAAAP////////+g////T////+v///8bAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+M////2////wMAAAAAAAAAAAAAAAD///8D////2f///4MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////Y////eAAAAAAAAAAAAAAAAAAAAAAAAAAA////eP///9MAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA////g////+P///8IAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA////8P////P////8////8P////P////8////8P////AAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////gv///80AAAAAAAAAAAAAAAAAAAAA/////////0QAAAAA////lP///73///8BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////P///0kAAAAAAAAAAAAAAAAAAAAA////Sv////sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xT////h////u////yz///8N////K////7j////b////DwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4z////b////AwAAAAAAAAAAAAAAAP///wP////Z////gwAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD///8O////2P///8L///89////D////w3///9f/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////iP///3oAAAAA////gf///3sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAP///xb////o////cwAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAD///8K////2////3YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////W////ewAAAAAAAAAAAAAAAAAAAAD///+A////1QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xn///+b////5v////r////k////lv///xUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+H///+7////LP///w3///8r////uP///9v///8PAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///8T////k////+L////8////9v///9r///+oAAAAAAAAAAAAAAAAAAAAAAAAAAD///+4////RwAAAAD///+0////SQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////Cf///xz///9c////3v///77///8GAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAD///85////9////zMAAAAAAAAAAAAAAAAAAAAAAAAAAP///1T////y////X////xn///8Y////YP////P///9bAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///5v////m////+v///+T///+W////FQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+f///8VAAAAAP///+f///8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////////8v///8r///9w////BQAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAD///+H////2f///wsAAAAAAAAAAAAAAAAAAAAAAAAAAP///03////M////9/////b////I////UwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/////////V////BQAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///+3////m////+j////m////mv///7UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xT////p////pQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////1v///zD///8y////1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////+T///95AAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAP///5////+0////Ev///w////+l////nQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////t////4////8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+n////6f///xQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////k/////////+TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////S////MP///zL////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8c////9P///ygAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8T////9////y0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////pP///7wAAAAAAAAAAAAAAAD///+9////owAAAAAAAAAAAAAAAAAAAAD/////////Yv////L///8hAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////5f///yMAAAAAAAAAAP///w7////rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP///+Q////tgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5r///+m////Jv///6j///+aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///27////v////jv///yD////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5z///+1////qgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+h////lwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////DP///wIAAAAA////wwAAAAD///8B////DAAAAAAAAAAAAAAAAAAAAAD///8O////3v///2IAAAAA////Y////93///8NAAAAAAAAAAAAAAAAAAAAAP////////8+////jv///7UAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAD////n////IgAAAAAAAAAA////Df///9sAAAAAAAAAAAAAAAAAAAAAAAAAAP////z///9CAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////z///9CAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yf///yL///+O////8P///20AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8n////3f///wf////T////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zb////z////DgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///98////6////6X////Q////pf///+r///+BAAAAAAAAAAAAAAAAAAAAAAAAAAD///84////6v///zD////q////NwAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0P///8M////4////1QAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAP///57///+x////EP///w3///+i////mgAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA/////P///0IAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA/////P///0IAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6z///9lAAAAAP///1n///+0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8z///9sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///w7///8o////dP////T///9y////KP///w8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9+////9v///30AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAD///9T////5f///w3///9E/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////tf///53////q////6P///5////+4AAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD/////////1f///wUAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD///80////3f///wQAAAAA////Av///9n///84AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Yf///9UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xf////k////Vf///+P///8XAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5/////k////ngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAD///+1////kf///0D/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP/////////k////eQAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP///7z///9hAAAAAAAAAAAAAAAA////X////70AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8J////7f///0EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Tv///7IAAAAA////rP///1IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9N////4////xn////k////TAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAP///yH////y////Zv////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAA/////////2L////y////IQAAAAAAAAAA////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+N////qwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////E////+f///9UAAAAAP///1X////n////EgAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAP///3n////o/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAD/////////Pv///47///+1AAAAAAAAAAD///9E/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yT////5////GgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+p////uQAAAAAAAAAAAAAAAP///7r///+oAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAA////Bf///9X/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////z///9JAAAAAAAAAAAAAAAAAAAAAP///0r////7AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAP////z///9JAAAAAAAAAAAAAAAAAAAAAP///0r////7AAAAAAAAAAAAAAAAAAAAAP////////9D////DP///+P///9UAAAAAP///0T/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7j///+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////1v///3sAAAAAAAAAAAAAAAAAAAAA////gP///9UAAAAAAAAAAAAAAAAAAAAA/////P///0kAAAAAAAAAAAAAAAAAAAAA////Sv////sAAAAAAAAAAAAAAAAAAAAA/////P///0kAAAAAAAAAAAAAAAAAAAAA////Sv////sAAAAAAAAAAAAAAAAAAAAA////1v///3sAAAAAAAAAAAAAAAAAAAAA////gP///9UAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAA////U////+X///8N////RP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Tf///+X///8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9U////8v///1////8Z////GP///2D////z////WwAAAAAAAAAAAAAAAAAAAAD////W////ewAAAAAAAAAAAAAAAAAAAAD///+A////1QAAAAAAAAAAAAAAAAAAAAD////W////ewAAAAAAAAAAAAAAAAAAAAD///+A////1QAAAAAAAAAAAAAAAAAAAAD///9U////8v///1////8Z////GP///2D////z////WwAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAA////tf///5H///9A/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9N////zP////f////2////yP///1MAAAAAAAAAAAAAAAAAAAAAAAAAAP///1T////y////X////xn///8Y////YP////P///9bAAAAAAAAAAAAAAAAAAAAAP///1T////y////X////xn///8Y////YP////P///9bAAAAAAAAAAAAAAAAAAAAAAAAAAD///9N////zP////f////2////yP///1MAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAD///8h////8v///2b/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///03////M////9/////b////I////UwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///03////M////9/////b////I////UwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAD///95////6P////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////KQAAAAAAAAAAAAAAAP///yn///8BAAAAAAAAAAAAAAAAAAAAAP////////////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAP///wX////V/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yP////r////RgAAAAD///9C////6v///ysAAAAAAAAAAAAAAAAAAAAA////CP///wj///8n/////////yr///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////X////AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6j///8FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///z7////r////e////+v///9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAD///8J////x////5wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3T/////////eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yX///+8////9P///+f///+n////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88////Av///6////+z////AwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8/////6////3f////r////RQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////xv///6n///8W////KP///2AAAAAAAAAAAAAAAAAAAAAAAAAAAP//////////////+////+D///+V////EQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////qP///wUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///5P////k////+P///9////+MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9c///////////////////////////////0AAAAAAAAAAAAAAAAAAAAAP///6T//////////////////////////////6wAAAAAAAAAAAAAAAAAAAAA/////////zX///+S////x////woAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////If///+r///9CAAAAAP///z3////q////KQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////3////TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0n///8N////Nv///9P///+mAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///w7////Z////vP///zL///8R////Pf///10AAAAAAAAAAAAAAAAAAAAA////Df///6P////o/////////////////////wAAAAAAAAAAAAAAAAAAAAD///+/////jQAAAAAAAAAAAAAAAP///4P////EAAAAAAAAAAAAAAAAAAAAAP///wL///8I////CP///wj///8I////CP///wcAAAAAAAAAAAAAAAAAAAAA////Bf///wj///8I/////////w////8I////BQAAAAAAAAAAAAAAAAAAAAD/////////k/////////8rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IQAAAAAAAAAAAAAAAP///yMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9b///+XAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAA////W////+0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////hP///+X///8JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+V////////////////////2P///xj////YAAAAAAAAAAAAAAAAAAAAAP///z3////0////EwAAAAD///8H////6v///04AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////+s////pv///7f///8BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Sv////n////B////OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAD///9d////5wAAAAAAAAAAAAAAAAAAAAAAAAAA////pP//////////////////////////////rAAAAAAAAAAAAAAAAAAAAAD////V////gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+X////////////////////UAAAAAP///9QAAAAAAAAAAAAAAAAAAAAAAAAAAP///7r///+DAAAAAP///2H////W////AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////X////AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6j///8FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zz///8N////3////3EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Jv///6/////9////XQAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0n///8N////N////9T///+AAAAAAAAAAAAAAAAAAAAAAAAAAAD///8F////CP///wj/////////D////wj///8FAAAAAAAAAAAAAAAAAAAAAP////j///9YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////P///////////////////9QAAAAA////1AAAAAAAAAAAAAAAAAAAAAAAAAAA////OP///+////8O////z////2EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAD///88////9v///zEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4v////fAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////////////////////bgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////+P///1cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////x////////////////////1AAAAAD////UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////tf///7P////k////BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///+G////2P///wsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Tv////IAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAP///8r///90AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Bf///wj///8I////sP///w3///8I////BQAAAAAAAAAAAAAAAAAAAAD////Y////egAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7r////////////////////UAAAAAP///9QAAAAAAAAAAAAAAAAAAAAA////CP//////////////////////////////HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP///////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xT///9f////Ff///xz///+0////sgAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAA////Uf///+v///8MAAAAAAAAAAAAAAAAAAAAAAAAAAD///+k//////////////////////////////+sAAAAAAAAAAAAAAAAAAAAAP///47////f////BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////L////+H//////////////9QAAAAA////1AAAAAAAAAAAAAAAAAAAAAAAAAAA////CP///wj/////////Sf///wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8C////CP///wj///8I////CP///w//////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Ef///8P////z////8P///67///8YAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAD///8B////1f///3oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Ff///+P////F////Nf///w7///8h////XQAAAAAAAAAAAAAAAAAAAAAAAAAA////CP///zP///80////1AAAAAD////UAAAAAAAAAAAAAAAAAAAAAP///wj//////////////////////////////xwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1H////j////AwAAAAAAAAAAAAAAAAAAAAD///////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////CP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAD///9d////7v///w8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////G////53////m/////f////L///+/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////UAAAAAP///9QAAAAAAAAAAAAAAAAAAAAAAAAAAP///wj///8I/////////0n///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////u////30AAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8F////qAAAAAAAAAAAAAAAAAAAAAD///8o////wP///+b//////////////+b///8SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+q////rgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9QAAAAA////1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yb////5////GAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9L////0f////b////J////LgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8P///9/AAAAAP///37////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xX////yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////1AAAAAD////UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////j////6kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////9n///80////Fv///7D////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9v///0MAAAAA////Q/////QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////////9////+P///+q////IwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////D////yv///2sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////UAAAAAP///9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wn////v////PwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////////////////////wAAAAAAAAAAAAAAAAAAAAD/////////aQAAAAAAAAAA////SP////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////S////k////xL///+T////zQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///13/////////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8P////Mv///73////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9QAAAAA////1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Y////9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0n///8I////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAP////////9DAAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zT////v////+////87///8xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8K////1P////L///8wAAAAAAAAAAAAAAAAAAAAAAAAAAD////0////9P////T////0////9P////T////0AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAA////Uf////UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////M////awAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////X///8iAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4D///+N////9v///zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAA////Bf///yX///+2////ngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP///////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAA////N/////P///8NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///27////v////jv///yD////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////vv//////////////6P///1cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8b////5////xT////+////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//////////////////////////////6P///8DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8C////CP///wj///8I////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAAAAAAD///+h////lwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yf///yL///+O////8P///20AAAAAAAAAAAAAAAAAAAAAAAAAAP///5X///+e////I////yP///9/////4wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6L///98AAAAAP////////8wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wz///8/////2f///5MAAAAAAAAAAAAAAAAAAAAA////NP///7P////x////7P///6n///8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////E/////f///8tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9P///zYAAAAAAAAAAP///zj////wAAAAAAAAAAAAAAAAAAAAAAAAAAD///81////5v///wsAAAAA/////////zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAD///9b////7gAAAAAAAAAAAAAAAAAAAAD///+k////g////yL///8m////v////7MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////k////+T////4////3////4wAAAAAAAAAAAAAAAAAAAAA////QP///////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0v////R////9v///8n///8uAAAAAAAAAAAAAAAAAAAAAAAAAAD////X////bgAAAAD///8K////pP///6sAAAAAAAAAAAAAAAAAAAAAAAAAAP///8T///+G////JP///yT/////////Tf///xsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAP///2H////lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9N////8gAAAAAAAAAAAAAAAAAAAAAAAAAA////Dv///9n///+8////Mv///xH///89////XQAAAAAAAAAAAAAAAAAAAAD///8C////CP///wj///8I////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////2f///zT///8W////sP///8IAAAAAAAAAAAAAAAAAAAAAAAAAAP///zj////N////5f///9////+b////EgAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///w////8+////3P///44AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///2n////VAAAAAAAAAAAAAAAAAAAAAAAAAAD///+E////5f///wkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9pAAAAAAAAAAD///9I////8wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////////////////P///93///+D////BwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8M////2////2cAAAAAAAAAAAAAAAAAAAAAAAAAAP///9X///+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0MAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////A////7D///+v////AQAAAAAAAAAAAAAAAAAAAAAAAAAA////+P///1gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////av////////////////////////9EAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+y////5P///+T////s/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wL///+h////wf///wkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////4////VwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9+////tv///yT///8k////JP///wkAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6H///+qAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8B////mv///8X///8MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9j///96AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yL///+o////5v////n///85AAAAAAAAAAAAAAAAAAAAAP///5L///+UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///86////9P///x0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAP///w7///+g////7f///+j///94AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5P////a////Mv///yT///8k////JP///w4AAAAAAAAAAAAAAAAAAAAA////jv///9////8GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////4////6f///8t////GP///wwAAAAAAAAAAAAAAAAAAAAA////pv///30AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////90////2f////b///+l////BwAAAAAAAAAAAAAAAAAAAAAAAAAA////Av///87///97AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAA////mP///8P///8l////PP///+L///9cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////////////////////////ZAAAAAAAAAAAAAAAAAAAAAD///8V////4////8X///81////Dv///yH///9dAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///33////S////AwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+0////8/////r////m////lv///w0AAAAAAAAAAAAAAAAAAAAA/////////9D///8o////KP///9v///+AAAAAAAAAAAAAAAAAAAAAAAAAAAD///9o////2////wcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////m////SAAAAAAAAAAA////Zf///8IAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///98////6f///+v///+X////CgAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8b////nf///+b////9////8v///78AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yP///3oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xP///8k////Fv///0H////Y////pAAAAAAAAAAAAAAAAAAAAAD/////////YgAAAAAAAAAA////cf///9UAAAAAAAAAAAAAAAAAAAAA////E////+3///9LAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////H///87AAAAAAAAAAD///9G////8QAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Wv///9f///8s////Hv///8T///+MAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////w////gf///9P////z////t////xsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1b////2AAAAAAAAAAAAAAAAAAAAAP////////9BAAAAAAAAAAD///9N////+QAAAAAAAAAAAAAAAAAAAAD///+Y////tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////s////6j///8O////H////73////7AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////H////YwAAAAAAAAAA////VP///+EAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////z////C////JP///xD///+u////sgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////W////+AAAAAAAAAAAAAAAAAAAAAA/////////0MAAAAAAAAAAP///0/////4AAAAAAAAAAAAAAAAAAAAAP////3////u////5P///+T////k////HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8e////uP////T////T////gf///+wAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+7//////////////////////////gAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////Rf////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8////0wAAAAAAAAAAP///z3////xAAAAAAAAAAAAAAAAAAAAAP///3j///8s////Ff///z/////b////hAAAAAAAAAAAAAAAAAAAAAD/////////ZQAAAAAAAAAA////dP///9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Av///4v////u////6////8b///9jAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///95////xgAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8P///1f///8I////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAP////T///9IAAAAAAAAAAD///9s/////wAAAAAAAAAAAAAAAAAAAAD///////////////3////n////kv///xEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////H////aQAAAAAAAAAA////Sf///+UAAAAAAAAAAAAAAAAAAAAA////rf///+7////5////2P///3v///8FAAAAAAAAAAAAAAAAAAAAAP/////////T////KP///yn////e////dgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9z////2////yr///9Z/////////2MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///87///9+AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////J////gwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////xP///6////8W////Nf///9n/////AAAAAAAAAAAAAAAAAAAAAP////////9J////Df///zj////V////pwAAAAAAAAAAAAAAAAAAAAD///8h////sf////D////w////sP///x8AAAAAAAAAAAAAAAAAAAAA////////////////////////////////AAAAAAAAAAAAAAAAAAAAAP///1/////l////Pv///yX////E////mAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////3b////c////9////5z///8GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8////9wAAAAAP///77///+8////yQAAAAAAAAAAAAAAAAAAAAD///8H////Bf///xP///+O////5P///xUAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1b////v////U////x3///82////UQAAAAAAAAAAAAAAAAAAAAD///8w////zv////j////R////TP////8AAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAP///1z////vAAAAAAAAAAAAAAAAAAAAAP///8j///+m////If///yP///+o////zQAAAAAAAAAAAAAAAAAAAAD///8k////JP///yT///8k////jP///8gAAAAAAAAAAAAAAAAAAAAAAAAAAP///33////q////7f///5////8OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8f///03///9C////zP///0z////vAAAAAAAAAAAAAAAAAAAAAP///zb////6////6f///67///8lAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///2T////h/////P///+T///9vAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAA////Yf///+UAAAAAAAAAAAAAAAAAAAAA////8////zwAAAAAAAAAAP///z7////zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP////g////WAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Rf///87////3////5P///4MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////v////Sf///8b///9I////T////+4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8I////BQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////EP///z/////b////kQAAAAAAAAAAAAAAAAAAAAD///+f////rf///wz///8M////s////5UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////V////+P///8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////o////Zf///w////8v////QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8v///+1////wwAAAAD///9y////ygAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////////////+sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA///////////////8////3////4T///8GAAAAAAAAAAAAAAAAAAAAAP///wf///+7////7v///+3///+Z////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////J////eQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////W////MP///zL////UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9b///+c////DwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////b/////////9b////Kv///93///9oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Uv///+j///9E////b////+7///8/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////PP////b///8TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9L///8w////Mv///9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP////v////x////h////wkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9g////y////+7////v////gv///wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Af///4n////v////7P///3sAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////Z////XQAAAAAAAAAA////af///9MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+v////mgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zf////O////9v///9P///9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////T////YP///yr////J////sQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////LQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////////////////////wAAAAAAAAAAAAAAAAAAAAD///9h////5////zH///80////6v///1IAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////T///86AAAAAAAAAAD///8/////8QAAAAAAAAAAAAAAAAAAAAAAAAAA////I/////z///8rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0v///5P///8R////hv///9wAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////P///9JAAAAAP///zr////1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9s////2//////////7////tgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////CP///wj///8I////CP///7T///+pAAAAAAAAAAAAAAAAAAAAAP///77///+BAAAAAAAAAAD///+D////tAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////uP///7D///8h////Jf///7n///+tAAAAAAAAAAAAAAAAAAAAAAAAAAD///+U////uwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////9////QAAAAAD///9J////9gAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////iv///+r///9h////f////74AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Yf////T///9g////HP///yf///86AAAAAAAAAAAAAAAAAAAAAP///03////B////9P///+////+1////JgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9B////9////yAAAAAAAAAAAAAAAAAAAAAA////5P///1MAAAAAAAAAAP///1P////lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8c////sP///+/////s////pP///xQAAAAAAAAAAAAAAAAAAAAA////Ef////T///9LAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAP///5v///+5AAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////TP///8T/////////VwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////R////iAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////kP///23///8o////I////6/////KAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Av///9D///+GAAAAAAAAAAAAAAAAAAAAAAAAAAD////3////QwAAAAAAAAAA////Q/////oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAA////8P///08AAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAD///8d////nP///+D/////////5f///3sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///2v////rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAP////j///9SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Uv////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9k////5////w0AAAAAAAAAAAAAAAAAAAAAAAAAAP////b///9DAAAAAAAAAAD///9H////9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAD////y////WAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///0X/////AAAAAAAAAAAAAAAAAAAAAP///8////+c////Lf////H///8w////QAAAAAAAAAAAAAAAAAAAAAD///8P////Wv///xn///8R////ev///9oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAA////+f///1EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Cv///zv////T////hwAAAAAAAAAAAAAAAAAAAAAAAAAA////Df///+j///9jAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////4f///1QAAAAAAAAAAP///1b////gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAP///4P////y////LwAAAAAAAAAAAAAAAAAAAAD////0////SAAAAAAAAAAA////bP////8AAAAAAAAAAAAAAAAAAAAA////6P///2sAAAAA////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///w/////C////8/////T////C////MwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAD////U////hAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////f///5X///8DAAAAAAAAAAAAAAAAAAAAAAAAAAD///+H////0P///wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+4////iAAAAAAAAAAA////iv///7sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+n///+lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAA////Af///7D////DAAAAAAAAAAAAAAAAAAAAAP///8T///+v////Fv///zX////Z/////wAAAAAAAAAAAAAAAAAAAAD///9H////4v///+P////2////KwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAP///2T////y////XP///xv///8l////TQAAAAAAAAAAAAAAAAAAAAAAAAAA////EP///x3///9Q////4f///50AAAAAAAAAAAAAAAAAAAAA////IP////f///9BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1b////s////Mv///zv////u////YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+3////j////wIAAAAAAAAAAAAAAAAAAAAAAAAAAP///6f////p////FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////k/////////+TAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////R/////cAAAAAAAAAAAAAAAAAAAAA////MP///87////4////0f///0z/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///8E////Pv////z////x////bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////Rf////8AAAAAAAAAAAAAAAAAAAAAAAAAAP///27////b//////////v///+1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9Z////8gAAAAAAAAAAAAAAAAAAAAD///+q////tP///wj///8I////CP///wgAAAAAAAAAAAAAAAAAAAAAAAAAAP///4H////u////7////4r///8BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////A////5D///+2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5r///+m////Jv///6j///+aAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAP///zr///9v////4wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8P///0z////vAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9IAAAAAAAAAAD///9s/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////LQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///13////lAAAAAAAAAAAAAAAAAAAAAP///////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3z////p////6////5f///8KAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAA////zv////L///9kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///99////O////xf////y////j////9gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////6////8W////Nf///93/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+B////MP///xj///9C////3P///44AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9a////1////yz///8e////xP///4wAAAAAAAAAAAAAAAAAAAAAAAAAAP///3z////p////6////5f///8KAAAAAAAAAAAAAAAAAAAAAP///1v////S////9f///9L///87AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///67////j////+v////7////E////MwAAAAAAAAAAAAAAAAAAAAAAAAAA////Pf///83////3////5P///4QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////vv////P////a////Zf////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6T////q////+f///93///+F////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8f///9jAAAAAAAAAAD///9U////4QAAAAAAAAAAAAAAAAAAAAD///9a////1////yz///8e////xP///4wAAAAAAAAAAAAAAAAAAAAA////Qv///zz///8S////kf///88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////f////e////xD///8z////QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////84AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////7v/////////////////////////+AAAAAAAAAAAAAAAAAAAAAP///8f///9jAAAAAAAAAAD///9U////4QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///89////+QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////T////0////9P////T////0////9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+r///91AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+n///+lAAAAAAAAAAAAAAAAAAAAAAAAAAD////w////V////wj///8I////CP///wgAAAAAAAAAAAAAAAAAAAAA////7v/////////////////////////+AAAAAAAAAAAAAAAAAAAAAP///yD///+u////6P////z/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Wf////b///+9////QgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+T/////////5MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Uf///9n////2////pf///wcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+3////j////wIAAAAAAAAAAAAAAAAAAAAAAAAAAP///8n///+DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////w////V////wj///8I////CP///wgAAAAAAAAAAAAAAAAAAAAA////wP///7z///8t////R/////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////GP///4n////4////gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////mv///6b///8m////qP///5oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/////////P////KP///yj////b////gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Vv///+////9T////Hf///zb///9RAAAAAAAAAAAAAAAAAAAAAP///8n///+DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////2////TAAAAAD///9X/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///13////xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8H////of////b////X////Tv////8AAAAAAAAAAAAAAAAAAAAA/////////2IAAAAAAAAAAP///3H////VAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////ZP///+H////8////5P///28AAAAAAAAAAAAAAAAAAAAA////Vv///+////9T////Hf///zb///9RAAAAAAAAAAAAAAAAAAAAAP///9z///+D////G////8D/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8Q////Xf///xn///8S////jv///9IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAP///3/////f////Kv///yz////W/////wAAAAAAAAAAAAAAAAAAAAD/////////QQAAAAAAAAAA////Tf////kAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////ZP///+H////8////5P///28AAAAAAAAAAAAAAAAAAAAA////U////+3////l////TP////gAAAAAAAAAAAAAAAAAAAAAAAAAAP///wf///+h////9v///9n///9x/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////NP///7sAAAAAAAAAAAAAAAAAAAAA////Av///4v////u////7v///4T///8BAAAAAAAAAAAAAAAAAAAAAP///w/////B////8/////T////B////LwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAA////2P///3QAAAAAAAAAAP///2r/////AAAAAAAAAAAAAAAAAAAAAP////////9DAAAAAAAAAAD///9P////+AAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////f////9////8q////LP///9f/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Jv///6r////W////WQAAAAAAAAAAAAAAAAAAAAD///9z////2////yr///8q////2////2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8CAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAD////5////TgAAAAAAAAAA////Rv////8AAAAAAAAAAAAAAAAAAAAA/////////2UAAAAAAAAAAP///3T////UAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////Y////dAAAAAAAAAAA////av////8AAAAAAAAAAAAAAAAAAAAA////Gv///5j////U////W////wIAAAAAAAAAAAAAAAAAAAAAAAAAAP///8////9wAAAAAAAAAAD///9x////yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////bv///+////+O////IP///8gAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAP////L///9NAAAAAAAAAAD///9C/////wAAAAAAAAAAAAAAAAAAAAD/////////0////yj///8p////3v///3YAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///0X/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////n///9OAAAAAAAAAAD///9G/////wAAAAAAAAAAAAAAAAAAAAD////z////tP///wYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8f///00AAAAAAAAAAP///03////uAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////J////Iv///47////w////bQAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////Rf////8AAAAAAAAAAAAAAAAAAAAA////1P///28AAAAAAAAAAP///2X/////AAAAAAAAAAAAAAAAAAAAAP////////92////3P////f///+c////BgAAAAAAAAAAAAAAAAAAAAD////0////SAAAAAAAAAAA////bP////8AAAAAAAAAAAAAAAAAAAAAAAAAAP///6f////p////FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8v///00AAAAAAAAAAP///0L/////AAAAAAAAAAAAAAAAAAAAAP///yn///+r////2P///1z///8DAAAAAAAAAAAAAAAAAAAAAAAAAAD////v////TgAAAAAAAAAA////T////+4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////T///9IAAAAAAAAAAD///9s/////wAAAAAAAAAAAAAAAAAAAAD///96////2v///yj///8l////zf////8AAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8T///+v////Fv///zX////Z/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////A////5D///+2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////lf////L////P////WP///xL///+FAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////U////bwAAAAAAAAAA////Zf////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8x////tf///9j///9cAAAAAAAAAAAAAAAAAAAAAP///8r///9yAAAAAAAAAAD///9y////ygAAAAAAAAAAAAAAAAAAAAD///+7////MwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9b////0v////X////S////OwAAAAAAAAAAAAAAAAAAAAAAAAAA////xP///6////8W////Nf///9n/////AAAAAAAAAAAAAAAAAAAAAP///wj///+l////9////9z///90/////wAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////MP///87////4////0f///0z/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+I////E////1j////T////9P///5cAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3r////a////KP///yX////O/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Of///74AAAAAAAAAAAAAAAAAAAAA////Y////9z///8q////Kv///93///9oAAAAAAAAAAAAAAAAAAAAAP///1n////W////qf///yUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0L///88////Ev///5H////PAAAAAAAAAAAAAAAAAAAAAAAAAAD///8w////zv////j////R////TP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////CP///6X////3////3P///1L/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8B////fv///+/////v////gv///wIAAAAAAAAAAAAAAAAAAAAAAAAAAP///wL///9b////0////5j///8ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Pf////kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9u////0f////b////J////LgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8G////sf////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g////rv///+j////8/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////9r///80////Fv///7D////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8D////XP///9f///+r////KQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8D///+8////Lf///0f/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////aQAAAAAAAAAA////SP////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////XP///9j///+0////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9v///0wAAAAA////V/////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////k/////////+TAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////Rf////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9DAAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///++////OQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////c////g////xv////A/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5r///+m////Jv///6j///+aAAAAAAAAAAAAAAAAAAAAAP////T///9IAAAAAAAAAAD///9s/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////p////+n///8UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///+z////aP///1X///+kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1P////t////5f///0z////4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////bv///+////+O////IP///8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////xP///6////8W////Nf///9n/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///8D////kP///7YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAA////PP////8AAAAAAAAAAAAAAAAAAAAAAAAAAP///0P////9////8P///yEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////J////Iv///47////w////bQAAAAAAAAAAAAAAAAAAAAAAAAAA////JP///8L////1////2////1sAAAAAAAAAAAAAAAAAAAAA///////////////9////5////5L///8RAAAAAAAAAAAAAAAAAAAAAP///wL///+L////7v///+7///+E////AQAAAAAAAAAAAAAAAAAAAAD///8w////zv////j////R////TP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAD///88/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////rv///0n///+1////mgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////87AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+9////sP///xz///89////MgAAAAAAAAAAAAAAAAAAAAD/////////Sf///w3///84////1f///6cAAAAAAAAAAAAAAAAAAAAA////c////9v///8q////Kv///9v///9oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8C////i////+7////u////hP///wEAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAP///zz/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wr////j////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////3L////Z////9v///6X///8HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8C////i////+7////u////hP///wEAAAAAAAAAAAAAAAAAAAAAAAAAAP////b///9KAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAD///9b////7wAAAAAAAAAAAAAAAAAAAAD////P////cAAAAAAAAAAA////cf///8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3P////b////Kv///yr////b////aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////DP///6H////u////3P///7////+eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////z////yj///8o////2////4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////6f///6UAAAAAAAAAAAAAAAAAAAAAAAAAAP///9b///8w////Mv///9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3P////b////Kv///yr////b////aAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAP///2H////lAAAAAAAAAAAAAAAAAAAAAP////H///9NAAAAAAAAAAD///9N////7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////z////3AAAAAAAAAAAP///3H////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+O////0v///yf///8q////1v///9wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9iAAAAAAAAAAD///9x////1QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7f///+P////AgAAAAAAAAAAAAAAAAAAAAAAAAAA////0v///zD///8y////0QAAAAAAAAAAAAAAAAAAAAAAAAAA////1v///zD///8y////1AAAAAAAAAAAAAAAAAAAAAAAAAAA////z////3AAAAAAAAAAAP///3H////IAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Sf///xD///8/////2////5EAAAAAAAAAAAAAAAAAAAAA////7////04AAAAAAAAAAP///0/////uAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////x////TQAAAAAAAAAA////Tf///+4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+D///9iAAAAAAAAAAD///9g////9gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0MAAAAAAAAAAP///03////5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////S////MP///zL////RAAAAAAAAAAAAAAAAAAAAAAAAAAD////x////TQAAAAAAAAAA////Tf///+4AAAAAAAAAAAAAAAAAAAAA////+P/////////9/////P////wAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////P///9////+E////BgAAAAAAAAAAAAAAAAAAAAD////K////cgAAAAAAAAAA////cv///8oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////6f///6UAAAAAAAAAAAAAAAAAAAAAAAAAAP///+////9OAAAAAAAAAAD///9P////7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9////0kAAAAAAAAAAP///0z////rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////QwAAAAAAAAAA////T/////gAAAAAAAAAAAAAAAAAAAAA////W////9L////1////0v///zsAAAAAAAAAAAAAAAAAAAAA////W////9L////1////0v///zsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+////9OAAAAAAAAAAD///9P////7gAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///2P////c////Kv///yr////d////aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7f///+P////AgAAAAAAAAAAAAAAAAAAAAAAAAAA////yv///3IAAAAAAAAAAP///3L////KAAAAAAAAAAAAAAAAAAAAAAAAAAD////W////MP///zL////UAAAAAAAAAAAAAAAAAAAAAAAAAAD////a////YwAAAAAAAAAA////bf///8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9lAAAAAAAAAAD///90////1AAAAAAAAAAAAAAAAAAAAAD///9C////PP///xL///+R////zwAAAAAAAAAAAAAAAAAAAAD///9C////PP///xL///+R////zwAAAAAAAAAAAAAAAAAAAAAAAAAA////fP///+n////r////l////woAAAAAAAAAAAAAAAAAAAAA////yv///3IAAAAAAAAAAP///3L////KAAAAAAAAAAAAAAAAAAAAAP///wf/////////NgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Af///37////v////7////4L///8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9j////3P///yr///8q////3f///2gAAAAAAAAAAAAAAAAAAAAAAAAAAP///9L///8w////Mv///9EAAAAAAAAAAAAAAAAAAAAAAAAAAP///4D////V////KP///yj////Z////YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////9L///8o////Kf///97///92AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///z3////5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///z3////5AAAAAAAAAAAAAAAAAAAAAP///1r////X////LP///x7////E////jAAAAAAAAAAAAAAAAAAAAAD///9j////3P///yr///8q////3f///2gAAAAAAAAAAAAAAAAAAAAA////Wv///9L///8n////JP///yT///8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Av///4v////u////7v///4T///8BAAAAAAAAAAAAAAAAAAAAAP///wH///9+////7////+////+C////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////B////47////n////7////4n///8BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////7////S////9z////3////nP///wYAAAAAAAAAAAAAAAAAAAAA////IP///67////o/////P////8AAAAAAAAAAAAAAAAAAAAA////IP///67////o/////P////8AAAAAAAAAAAAAAAAAAAAA////x////2MAAAAAAAAAAP///1T////hAAAAAAAAAAAAAAAAAAAAAP///wH///9+////7////+////+C////AgAAAAAAAAAAAAAAAAAAAAD///////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9z////2////yr///8q////2////2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wL///+L////7v///+7///+E////AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////A////vP///y3///9H/////wAAAAAAAAAAAAAAAAAAAAD////A////vP///y3///9H/////wAAAAAAAAAAAAAAAAAAAAD////u//////////////////////////4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8////9wAAAAAAAAAAD///9x////yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////c////9v///8q////Kv///9v///9oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////b///9MAAAAAP///1f/////AAAAAAAAAAAAAAAAAAAAAP////b///9MAAAAAP///1f/////AAAAAAAAAAAAAAAAAAAAAP////D///9X////CP///wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////8f///00AAAAAAAAAAP///03////uAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////P////cAAAAAAAAAAA////cf///8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////3P///4P///8b////wP////8AAAAAAAAAAAAAAAAAAAAA////3P///4P///8b////wP////8AAAAAAAAAAAAAAAAAAAAA////yf///4MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8C////hf///+D////0////tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////v////TgAAAAAAAAAA////T////+4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////H///9NAAAAAAAAAAD///9N////7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9T////7f///+X///9M////+AAAAAAAAAAAAAAAAAAAAAD///9T////7f///+X///9M////+AAAAAAAAAAAAAAAAAAAAAD///9W////7////1P///8d////Nv///1EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3D////p////R////yP///9BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8r///9yAAAAAAAAAAD///9y////ygAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////7////04AAAAAAAAAAP///0/////uAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+n////6f///xQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9Y////1gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////R////8n////0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9k////4f////z////k////bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5P/////////kwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5QAAAAAAAAAAP///5IAAAAAAAAAAAAAAAAAAAAA////lAAAAAAAAAAA////kQAAAAAAAAAAAAAAAAAAAAAAAAAA////0f///3oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Y////9z///8q////Kv///93///9oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////K////cgAAAAAAAAAA////cv///8oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP///+Q////tgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1r////ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////q////g////xEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+a////pv///yb///+o////mgAAAAAAAAAAAAAAAAAAAAD///89////nAAAAAD///86////mwAAAAAAAAAAAAAAAAAAAAD///+d////PAAAAAD///+c////OQAAAAAAAAAAAAAAAAAAAAD////3////TwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8B////fv///+/////v////gv///wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///2P////c////Kv///yr////d////aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7T///80AAAAAP///7T///80AAAAAAAAAAAAAAAAAAAAAP///zT///+0AAAAAP///zT///+zAAAAAAAAAAAAAAAAAAAAAP////n///9OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Af///37////v////7////4L///8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1v////S////9f///9L///87AAAAAAAAAAAAAAAAAAAAAAAAAAD///8z////+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////z8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////fP///+n////r////l////woAAAAAAAAAAAAAAAAAAAAA////t////zQAAAAA////t////zQAAAAAAAAAAAAAAAAAAAAA////NP///7cAAAAA////NP///7cAAAAAAAAAAAAAAAAAAAAA////1v///3cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Qv///zz///8S////kf///88AAAAAAAAAAAAAAAAAAAAAAAAAAP///3/////YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Cv///1/////7////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////W////MP///zL////UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1r////X////LP///x7////E////jAAAAAAAAAAAAAAAAAAAAAD///8/////nAAAAAD///89////nAAAAAAAAAAAAAAAAAAAAAD///+d////PgAAAAD///+c////PAAAAAAAAAAAAAAAAAAAAAD///90////5v///0P///8k////TQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///89////+QAAAAAAAAAAAAAAAAAAAAD///8r////+P///18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////7f///04AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9L///8w////Mv///9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8C////hf///+D////0////tAAAAAAAAAAAAAAAAAAAAAAAAAAA////x////2MAAAAAAAAAAP///1T////hAAAAAAAAAAAAAAAAAAAAAAAAAAD///+VAAAAAAAAAAD///+TAAAAAAAAAAAAAAAAAAAAAP///5QAAAAAAAAAAP///5IAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP///+L////5P////b///+pAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD///+u////6P////z/////AAAAAAAAAAAAAAAAAAAAAP///7D///+pAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xT///91////7v///xIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///3D////p////R////yP///9BAAAAAAAAAAAAAAAAAAAAAAAAAAD////u//////////////////////////4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9////08AAAAA////9////08AAAAAAAAAAAAAAAAAAAAA////fv///9j////h////bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////wP///7z///8t////R/////8AAAAAAAAAAAAAAAAAAAAA////8f///z8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wT/////////PQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zj////l/////////+b///87AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0f///3oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////D///9X////CP///wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////l////PQAAAAD////l////PQAAAAAAAAAAAAAAAAAAAAD///85////Cf///xD////xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////b////ywAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9b////0v////X////S////OwAAAAAAAAAAAAAAAAAAAAD////2////TAAAAAD///9X/////wAAAAAAAAAAAAAAAAAAAAD////0////OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////3////TwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////yf///4MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9P///8rAAAAAP///9P///8rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////R////7cAAAAAAAAAAAAAAAAAAAAAAAAAAP///wb////h////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0L///88////Ev///5H////PAAAAAAAAAAAAAAAAAAAAAP///9z///+D////G////8D/////AAAAAAAAAAAAAAAAAAAAAP///7v///+s////JP///0H///9sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////n///9OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9W////7////1P///8d////Nv///1EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////wf///xkAAAAA////wf///xkAAAAAAAAAAAAAAAAAAAAAAAAAAP///zn///+/////EwAAAAAAAAAAAAAAAAAAAAAAAAAA////xP/////////q////5P///9UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Pf////kAAAAAAAAAAAAAAAAAAAAA////U////+3////l////TP////gAAAAAAAAAAAAAAAAAAAAA////Iv///77////1////3f///4MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////Y////j////xIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////1v///3cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9k////4f////z////k////bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////////8AAAAAAAAAAAAAAAAAAAAA////OP///+X/////////5v///zsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9C////qf///w0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g////rv///+j////8/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zP////A////8wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///90////5v///0P///8k////TQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////f////b////2P///9j///82AAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8D///+8////Lf///0f/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP///+L////5P////b///+pAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9v///0wAAAAA////V/////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////qv///64AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////c////g////xv////A/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8V////8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////p////+n///8UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////+////PgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1P////t////5f///0z////4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////w////8r///9rAAAAAAAAAAAAAAAAAAAAAAAAAAD///+T/////////5MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////kP///8L///+KAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8D////kP///7YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9n///+O////Dv///xoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAD///+n////6f///xQAAAAAAAAAAAAAAAAAAAAAAAAAAP////T////I////RQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zj////k/////////+X///87AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////mv///6b///8m////qP///5oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////KAAAAAP///8sAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8U////6f///6UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////P////9j////7////5QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP///+Q////tgAAAAAAAAAAAAAAAAAAAAAAAAAA////Ef///4X////oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5P////B////jAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAD//////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7f///+P////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAP///zj////l/////////+b///87AAAAAAAAAAAAAAAAAAAAAAAAAAD///9A/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAA////W////9L////1////0v///zsAAAAAAAAAAAAAAAAAAAAA//////////////////////////8AAAAAAAAAAAAAAAAAAAAA////OP///+T/////////5f///zsAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9b///8w////Mv///9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD////7////X////wkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Sf///9r////5////wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAD///9C////PP///xL///+R////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0v///zD///8y////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0/////u/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAD////i////f////w////8ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///z3////5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP//////////////////////////AAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+T/////////5MAAAAAAAAAAAAAAAAAAAAAAAAAAP///4H////Z////9f///8P///8qAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8S////7v///3X///8UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8o////KP///ygAAAAAAAAAAAAAAAAAAAAAAAAAAP////7///89AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP///67////o/////P////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0n///8I////CP///wgAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////mv///6b///8m////qP///5oAAAAAAAAAAAAAAAAAAAAA////bf///0T///8k////nv///8gAAAAAAAAAAAAAAAAAAAAA//////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///z3/////////BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+1/////////+r////kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAD////A////vP///y3///9H/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///80////+AAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAP////b///9MAAAAAP///1f/////AAAAAAAAAAAAAAAAAAAAAP///5/////G////z////3wAAAAAAAAAAAAAAAAAAAAA////Rf///8b////F////QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAP//////////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///2n////XAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Cv////////8yAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9B/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAA////3P///4P///8b////wP////8AAAAAAAAAAAAAAAAAAAAA////BQAAAAD///8E////5QAAAAAAAAAAAAAAAAAAAAD////Q////Ef///xP////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0n///8I////CP///wgAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0n///8I////CP///wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8t////8v///1oAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Fv///xD///9/////5f///wcAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAA////Ev///5L////VAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9T////7f///+X///9M////+AAAAAAAAAAAAAAAAAAAAAD///9p////yf///8H////5AAAAAAAAAAAAAAAAAAAAAP///+AAAAAAAAAAAP///+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//////////////////////////wAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8j///+fAAAAAAAAAAAAAAAAAAAAAAAAAAD//////////////////////////wAAAAAAAAAAAAAAAAAAAAD////x////9P///8L///80AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAD////z////v////zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+n///8I////EP////YAAAAAAAAAAAAAAAAAAAAA////z////xL///8U////0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////P///zYAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zj////k/////////+X///87AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////lf///8r///+z////1QAAAAAAAAAAAAAAAAAAAAD///9B////xv///8b///9DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////////8AAAAAAAAAAAAAAAAAAAAA//////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9r///9XAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+n///+lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////2////1cAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9J////CP///wj///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+3////j////wIAAAAAAAAAAAAAAAAAAAAAAAAAAP///5P/////////kwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9a/////P///zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9m////vQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///6r///+uAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+a////pv///yb///+o////mgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////X////9z////5////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////Sf///wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Df///+////85AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////CP///+H///81AAAAAAAAAAAAAAAAAAAAAP///wj////h////NQAAAAAAAAAAAAAAAAAAAAAAAAAA////Ff////IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zj////l/////////+b///87AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+n////6f///xQAAAAAAAAAAAAAAAAAAAAA////FP///+n///+lAAAAAAAAAAAAAAAAAAAAAAAAAAD///+m////I/////v///8wAAAAAAAAAAAAAAAAAAAAAP///5H////f////2////44AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP//////////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9m////2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8I////4f///zUAAAAAAAAAAAAAAAAAAAAA////CP///+H///81AAAAAAAAAAAAAAAAAAAAAP///8P////K////awAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAA////OP///+X/////////5v///zsAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP///+Q////tgAAAAAAAAAAAAAAAAAAAAD///+3////j////wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zAAAAAAAAAAAAAAAAAAAAAA////KP///wP///8s////4wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7D///+VAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+n////6f///xQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////MAAAAAAAAAAAAAAAAAAAAAAAAAAA////wf///+v///9kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////4v///2UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wP///+Q////tgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Gf///+0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9b///8w////Mv///9QAAAAAAAAAAAAAAAAAAAAA/////////y7////Q////6wAAAAAAAAAAAAAAAAAAAAD////3////UQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zAAAAAAAAAAAAAAAAAAAAAA////HQAAAAD///8p////4wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0v///zD///8y////0QAAAAAAAAAAAAAAAAAAAAD/////////z////1P///8nAAAAAAAAAAAAAAAAAAAAAP////j///9PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////MAAAAAAAAAAAAAAAAAAAAAD////J////2////9P///9MAAAAAAAAAAAAAAAAAAAAAP///0n////h////3////0cAAAAAAAAAAAAAAAAAAAAA////1v///zD///8y////1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////91AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////5f///2MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////3////TwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////4v///z3///8o////3wAAAAAAAAAAAAAAAAAAAAD////S////MP///zL////RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+1////kgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+X///89AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yD/////////JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////k////Of///yT////gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///23////VAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////0////ysAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////Y////VgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////IP////////8kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0v////h////3////0kAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////EP////L///80AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////B////GQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///9v///9YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///zj////k/////////+X///87AAAAAAAAAAAAAAAAAAAAAAAAAAD///8g/////////yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAP///83////LAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////af///7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////OP///+T/////////5f///zsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAA////zv///80AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////OgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////x////FQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8T////QP////3///8ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////P///8fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAD///+6////aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////H////s////dQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9f///ykAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////CP///0b/////AAAAAAAAAAAAAAAAAAAAAP///zj////v////DAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////3////MwAAAAAAAAAAAAAAAAAAAAAAAAAA////FP///+n///+lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP////8AAAAAAAAAAAAAAAAAAAAAAAAAAP///9n///9mAAAAAAAAAAAAAAAAAAAAAP////////9G////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////n///89AAAAAAAAAAAAAAAAAAAAAAAAAAD///+3////j////wIAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAP///xP///+h////+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9A/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////lv///60AAAAAAAAAAAAAAAAAAAAA/////////0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAP///9D////OAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////+////0cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8o////KP///ygAAAAAAAAAAAAAAAAAAAAA////qP///1v////2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0D/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///9m////3gAAAAAAAAAAAAAAAAAAAAD/////////QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////wgAAAAAAAAAAAAAAAAAAAAA////zv///80AAAAAAAAAAAAAAAAAAAAA/////////wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////9////UQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP////8AAAAAAAAAAAAAAAAAAAAAAAAAAP///1L////1AAAAAAAAAAAAAAAAAAAAAP////////9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAD////N////zAAAAAAAAAAAAAAAAAAAAAD///+I////4QAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9bAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9A/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////UP////YAAAAAAAAAAAAAAAAAAAAA/////////0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAP///87////NAAAAAAAAAAAAAAAAAAAAAP///7P///+MAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0D/////AAAAAAAAAAAAAAAAAAAAAAAAAAD///9k////4gAAAAAAAAAAAAAAAAAAAAD/////////QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////5P///ycAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP////8AAAAAAAAAAAAAAAAAAAAAAAAAAP///5P///+yAAAAAAAAAAAAAAAAAAAAAP////////9AAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////XgAAAAAAAAAAAAAAAAAAAAD////Q////zgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9A/////wAAAAAAAAAAAAAAAAAAAAAAAAAA////1f///20AAAAAAAAAAAAAAAAAAAAA/////////0AAAAAAAAAAAAAAAAAAAAAAAAAAAP////3///9SAAAAAAAAAAAAAAAAAAAAAP///87////NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAP///83////MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////CP///0b/////AAAAAAAAAAAAAAAAAAAAAP///zT////y////EAAAAAAAAAAAAAAAAAAAAAD/////////QAAAAAAAAAAAAAAAAAAAAAAAAAAA////+////0cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////wgAAAAAAAAAAAAAAAAAAAAA////zv///80AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAA////tv///2sAAAAAAAAAAAAAAAAAAAAAAAAAAP////////9G////CAAAAAAAAAAAAAAAAAAAAAD////4////OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAP////b///8wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////9P///yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////x////GQAAAAAAAAAAAAAAAAAAAAD///+I////4QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7P///+MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////2v///1cAAAAAAAAAAAAAAAAAAAAA////5P///ycAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////b////VwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="), +"format": "RGBA8", +"height": 256, +"mipmaps": false, +"width": 128 +} + +[sub_resource type="FontFile" id="37"] +fixed_size = 16 +cache/0/16/0/ascent = 11.0 +cache/0/16/0/descent = 3.0 +cache/0/16/0/underline_position = 0.0 +cache/0/16/0/underline_thickness = 0.0 +cache/0/16/0/scale = 1.0 +cache/0/16/0/textures/0/offsets = PackedInt32Array() +cache/0/16/0/textures/0/image = SubResource("Image_s0fda") +cache/0/16/0/glyphs/64/advance = Vector2(12, 0) +cache/0/16/0/glyphs/64/offset = Vector2(1, 1) +cache/0/16/0/glyphs/64/size = Vector2(0, 0) +cache/0/16/0/glyphs/64/uv_rect = Rect2(72, 34, 10, 11) +cache/0/16/0/glyphs/64/texture_idx = 0 +cache/0/16/0/glyphs/224/advance = Vector2(7, 0) +cache/0/16/0/glyphs/224/offset = Vector2(1, 0) +cache/0/16/0/glyphs/224/size = Vector2(0, 0) +cache/0/16/0/glyphs/224/uv_rect = Rect2(85, 180, 5, 11) +cache/0/16/0/glyphs/224/texture_idx = 0 +cache/0/16/0/glyphs/192/advance = Vector2(9, 0) +cache/0/16/0/glyphs/192/offset = Vector2(-1, -2) +cache/0/16/0/glyphs/192/size = Vector2(0, 0) +cache/0/16/0/glyphs/192/uv_rect = Rect2(32, 16, 11, 13) +cache/0/16/0/glyphs/192/texture_idx = 0 +cache/0/16/0/glyphs/96/advance = Vector2(8, 0) +cache/0/16/0/glyphs/96/offset = Vector2(3, 0) +cache/0/16/0/glyphs/96/size = Vector2(0, 0) +cache/0/16/0/glyphs/96/uv_rect = Rect2(2, 216, 3, 2) +cache/0/16/0/glyphs/96/texture_idx = 0 +cache/0/16/0/glyphs/160/advance = Vector2(4, 0) +cache/0/16/0/glyphs/160/offset = Vector2(0, 11) +cache/0/16/0/glyphs/160/size = Vector2(0, 0) +cache/0/16/0/glyphs/160/uv_rect = Rect2(1.73444e+09, 0, 0, 0) +cache/0/16/0/glyphs/160/texture_idx = 0 +cache/0/16/0/glyphs/32/advance = Vector2(4, 0) +cache/0/16/0/glyphs/32/offset = Vector2(0, 11) +cache/0/16/0/glyphs/32/size = Vector2(0, 0) +cache/0/16/0/glyphs/32/uv_rect = Rect2(0, 0, 0, 0) +cache/0/16/0/glyphs/32/texture_idx = 0 +cache/0/16/0/glyphs/33/advance = Vector2(4, 0) +cache/0/16/0/glyphs/33/offset = Vector2(1, 1) +cache/0/16/0/glyphs/33/size = Vector2(0, 0) +cache/0/16/0/glyphs/33/uv_rect = Rect2(65, 234, 2, 10) +cache/0/16/0/glyphs/33/texture_idx = 0 +cache/0/16/0/glyphs/225/advance = Vector2(7, 0) +cache/0/16/0/glyphs/225/offset = Vector2(1, 0) +cache/0/16/0/glyphs/225/size = Vector2(0, 0) +cache/0/16/0/glyphs/225/uv_rect = Rect2(112, 169, 5, 11) +cache/0/16/0/glyphs/225/texture_idx = 0 +cache/0/16/0/glyphs/193/advance = Vector2(9, 0) +cache/0/16/0/glyphs/193/offset = Vector2(-1, -2) +cache/0/16/0/glyphs/193/size = Vector2(0, 0) +cache/0/16/0/glyphs/193/uv_rect = Rect2(17, 16, 11, 13) +cache/0/16/0/glyphs/193/texture_idx = 0 +cache/0/16/0/glyphs/161/advance = Vector2(4, 0) +cache/0/16/0/glyphs/161/offset = Vector2(1, 3) +cache/0/16/0/glyphs/161/size = Vector2(0, 0) +cache/0/16/0/glyphs/161/uv_rect = Rect2(2, 222, 2, 11) +cache/0/16/0/glyphs/161/texture_idx = 0 +cache/0/16/0/glyphs/65/advance = Vector2(9, 0) +cache/0/16/0/glyphs/65/offset = Vector2(-1, 1) +cache/0/16/0/glyphs/65/size = Vector2(0, 0) +cache/0/16/0/glyphs/65/uv_rect = Rect2(2, 16, 11, 10) +cache/0/16/0/glyphs/65/texture_idx = 0 +cache/0/16/0/glyphs/97/advance = Vector2(7, 0) +cache/0/16/0/glyphs/97/offset = Vector2(1, 3) +cache/0/16/0/glyphs/97/size = Vector2(0, 0) +cache/0/16/0/glyphs/97/uv_rect = Rect2(76, 188, 5, 8) +cache/0/16/0/glyphs/97/texture_idx = 0 +cache/0/16/0/glyphs/98/advance = Vector2(8, 0) +cache/0/16/0/glyphs/98/offset = Vector2(1, 0) +cache/0/16/0/glyphs/98/size = Vector2(0, 0) +cache/0/16/0/glyphs/98/uv_rect = Rect2(102, 165, 6, 11) +cache/0/16/0/glyphs/98/texture_idx = 0 +cache/0/16/0/glyphs/226/advance = Vector2(7, 0) +cache/0/16/0/glyphs/226/offset = Vector2(1, 0) +cache/0/16/0/glyphs/226/size = Vector2(0, 0) +cache/0/16/0/glyphs/226/uv_rect = Rect2(72, 143, 6, 11) +cache/0/16/0/glyphs/226/texture_idx = 0 +cache/0/16/0/glyphs/194/advance = Vector2(9, 0) +cache/0/16/0/glyphs/194/offset = Vector2(-1, -2) +cache/0/16/0/glyphs/194/size = Vector2(0, 0) +cache/0/16/0/glyphs/194/uv_rect = Rect2(113, 2, 11, 13) +cache/0/16/0/glyphs/194/texture_idx = 0 +cache/0/16/0/glyphs/66/advance = Vector2(9, 0) +cache/0/16/0/glyphs/66/offset = Vector2(1, 1) +cache/0/16/0/glyphs/66/size = Vector2(0, 0) +cache/0/16/0/glyphs/66/uv_rect = Rect2(46, 109, 7, 10) +cache/0/16/0/glyphs/66/texture_idx = 0 +cache/0/16/0/glyphs/162/advance = Vector2(8, 0) +cache/0/16/0/glyphs/162/offset = Vector2(1, 1) +cache/0/16/0/glyphs/162/size = Vector2(0, 0) +cache/0/16/0/glyphs/162/uv_rect = Rect2(12, 136, 6, 10) +cache/0/16/0/glyphs/162/texture_idx = 0 +cache/0/16/0/glyphs/34/advance = Vector2(6, 0) +cache/0/16/0/glyphs/34/offset = Vector2(1, 1) +cache/0/16/0/glyphs/34/size = Vector2(0, 0) +cache/0/16/0/glyphs/34/uv_rect = Rect2(49, 187, 5, 4) +cache/0/16/0/glyphs/34/texture_idx = 0 +cache/0/16/0/glyphs/35/advance = Vector2(9, 0) +cache/0/16/0/glyphs/35/offset = Vector2(0, 1) +cache/0/16/0/glyphs/35/size = Vector2(0, 0) +cache/0/16/0/glyphs/35/uv_rect = Rect2(78, 66, 8, 10) +cache/0/16/0/glyphs/35/texture_idx = 0 +cache/0/16/0/glyphs/163/advance = Vector2(8, 0) +cache/0/16/0/glyphs/163/offset = Vector2(1, 1) +cache/0/16/0/glyphs/163/size = Vector2(0, 0) +cache/0/16/0/glyphs/163/uv_rect = Rect2(22, 167, 6, 10) +cache/0/16/0/glyphs/163/texture_idx = 0 +cache/0/16/0/glyphs/195/advance = Vector2(9, 0) +cache/0/16/0/glyphs/195/offset = Vector2(-1, -3) +cache/0/16/0/glyphs/195/size = Vector2(0, 0) +cache/0/16/0/glyphs/195/uv_rect = Rect2(53, 2, 11, 14) +cache/0/16/0/glyphs/195/texture_idx = 0 +cache/0/16/0/glyphs/227/advance = Vector2(7, 0) +cache/0/16/0/glyphs/227/offset = Vector2(1, -1) +cache/0/16/0/glyphs/227/size = Vector2(0, 0) +cache/0/16/0/glyphs/227/uv_rect = Rect2(2, 155, 6, 12) +cache/0/16/0/glyphs/227/texture_idx = 0 +cache/0/16/0/glyphs/67/advance = Vector2(8, 0) +cache/0/16/0/glyphs/67/offset = Vector2(1, 1) +cache/0/16/0/glyphs/67/size = Vector2(0, 0) +cache/0/16/0/glyphs/67/uv_rect = Rect2(68, 115, 7, 10) +cache/0/16/0/glyphs/67/texture_idx = 0 +cache/0/16/0/glyphs/99/advance = Vector2(7, 0) +cache/0/16/0/glyphs/99/offset = Vector2(1, 3) +cache/0/16/0/glyphs/99/size = Vector2(0, 0) +cache/0/16/0/glyphs/99/uv_rect = Rect2(40, 179, 5, 8) +cache/0/16/0/glyphs/99/texture_idx = 0 +cache/0/16/0/glyphs/228/advance = Vector2(7, 0) +cache/0/16/0/glyphs/228/offset = Vector2(1, 0) +cache/0/16/0/glyphs/228/size = Vector2(0, 0) +cache/0/16/0/glyphs/228/uv_rect = Rect2(121, 169, 5, 11) +cache/0/16/0/glyphs/228/texture_idx = 0 +cache/0/16/0/glyphs/196/advance = Vector2(9, 0) +cache/0/16/0/glyphs/196/offset = Vector2(-1, -2) +cache/0/16/0/glyphs/196/size = Vector2(0, 0) +cache/0/16/0/glyphs/196/uv_rect = Rect2(98, 2, 11, 13) +cache/0/16/0/glyphs/196/texture_idx = 0 +cache/0/16/0/glyphs/36/advance = Vector2(8, 0) +cache/0/16/0/glyphs/36/offset = Vector2(1, 0) +cache/0/16/0/glyphs/36/size = Vector2(0, 0) +cache/0/16/0/glyphs/36/uv_rect = Rect2(102, 137, 6, 12) +cache/0/16/0/glyphs/36/texture_idx = 0 +cache/0/16/0/glyphs/100/advance = Vector2(8, 0) +cache/0/16/0/glyphs/100/offset = Vector2(1, 0) +cache/0/16/0/glyphs/100/size = Vector2(0, 0) +cache/0/16/0/glyphs/100/uv_rect = Rect2(82, 150, 6, 11) +cache/0/16/0/glyphs/100/texture_idx = 0 +cache/0/16/0/glyphs/68/advance = Vector2(10, 0) +cache/0/16/0/glyphs/68/offset = Vector2(1, 1) +cache/0/16/0/glyphs/68/size = Vector2(0, 0) +cache/0/16/0/glyphs/68/uv_rect = Rect2(90, 66, 8, 10) +cache/0/16/0/glyphs/68/texture_idx = 0 +cache/0/16/0/glyphs/164/advance = Vector2(8, 0) +cache/0/16/0/glyphs/164/offset = Vector2(0, 3) +cache/0/16/0/glyphs/164/size = Vector2(0, 0) +cache/0/16/0/glyphs/164/uv_rect = Rect2(14, 79, 8, 7) +cache/0/16/0/glyphs/164/texture_idx = 0 +cache/0/16/0/glyphs/37/advance = Vector2(12, 0) +cache/0/16/0/glyphs/37/offset = Vector2(1, 1) +cache/0/16/0/glyphs/37/size = Vector2(0, 0) +cache/0/16/0/glyphs/37/uv_rect = Rect2(2, 30, 10, 10) +cache/0/16/0/glyphs/37/texture_idx = 0 +cache/0/16/0/glyphs/69/advance = Vector2(7, 0) +cache/0/16/0/glyphs/69/offset = Vector2(1, 1) +cache/0/16/0/glyphs/69/size = Vector2(0, 0) +cache/0/16/0/glyphs/69/uv_rect = Rect2(29, 191, 5, 10) +cache/0/16/0/glyphs/69/texture_idx = 0 +cache/0/16/0/glyphs/165/advance = Vector2(8, 0) +cache/0/16/0/glyphs/165/offset = Vector2(0, 1) +cache/0/16/0/glyphs/165/size = Vector2(0, 0) +cache/0/16/0/glyphs/165/uv_rect = Rect2(79, 98, 7, 10) +cache/0/16/0/glyphs/165/texture_idx = 0 +cache/0/16/0/glyphs/229/advance = Vector2(7, 0) +cache/0/16/0/glyphs/229/offset = Vector2(1, -1) +cache/0/16/0/glyphs/229/size = Vector2(0, 0) +cache/0/16/0/glyphs/229/uv_rect = Rect2(20, 196, 5, 12) +cache/0/16/0/glyphs/229/texture_idx = 0 +cache/0/16/0/glyphs/197/advance = Vector2(9, 0) +cache/0/16/0/glyphs/197/offset = Vector2(-1, -1) +cache/0/16/0/glyphs/197/size = Vector2(0, 0) +cache/0/16/0/glyphs/197/uv_rect = Rect2(83, 2, 11, 12) +cache/0/16/0/glyphs/197/texture_idx = 0 +cache/0/16/0/glyphs/101/advance = Vector2(8, 0) +cache/0/16/0/glyphs/101/offset = Vector2(1, 3) +cache/0/16/0/glyphs/101/size = Vector2(0, 0) +cache/0/16/0/glyphs/101/uv_rect = Rect2(32, 124, 6, 8) +cache/0/16/0/glyphs/101/texture_idx = 0 +cache/0/16/0/glyphs/38/advance = Vector2(10, 0) +cache/0/16/0/glyphs/38/offset = Vector2(1, 1) +cache/0/16/0/glyphs/38/size = Vector2(0, 0) +cache/0/16/0/glyphs/38/uv_rect = Rect2(67, 49, 9, 10) +cache/0/16/0/glyphs/38/texture_idx = 0 +cache/0/16/0/glyphs/70/advance = Vector2(7, 0) +cache/0/16/0/glyphs/70/offset = Vector2(1, 1) +cache/0/16/0/glyphs/70/size = Vector2(0, 0) +cache/0/16/0/glyphs/70/uv_rect = Rect2(101, 105, 6, 10) +cache/0/16/0/glyphs/70/texture_idx = 0 +cache/0/16/0/glyphs/198/advance = Vector2(12, 0) +cache/0/16/0/glyphs/198/offset = Vector2(-1, 1) +cache/0/16/0/glyphs/198/size = Vector2(0, 0) +cache/0/16/0/glyphs/198/uv_rect = Rect2(21, 2, 12, 10) +cache/0/16/0/glyphs/198/texture_idx = 0 +cache/0/16/0/glyphs/166/advance = Vector2(7, 0) +cache/0/16/0/glyphs/166/offset = Vector2(3, 0) +cache/0/16/0/glyphs/166/size = Vector2(0, 0) +cache/0/16/0/glyphs/166/uv_rect = Rect2(95, 228, 2, 14) +cache/0/16/0/glyphs/166/texture_idx = 0 +cache/0/16/0/glyphs/102/advance = Vector2(4, 0) +cache/0/16/0/glyphs/102/offset = Vector2(0, 0) +cache/0/16/0/glyphs/102/size = Vector2(0, 0) +cache/0/16/0/glyphs/102/uv_rect = Rect2(2, 201, 5, 11) +cache/0/16/0/glyphs/102/texture_idx = 0 +cache/0/16/0/glyphs/230/advance = Vector2(12, 0) +cache/0/16/0/glyphs/230/offset = Vector2(1, 3) +cache/0/16/0/glyphs/230/size = Vector2(0, 0) +cache/0/16/0/glyphs/230/uv_rect = Rect2(58, 34, 10, 8) +cache/0/16/0/glyphs/230/texture_idx = 0 +cache/0/16/0/glyphs/71/advance = Vector2(10, 0) +cache/0/16/0/glyphs/71/offset = Vector2(1, 1) +cache/0/16/0/glyphs/71/size = Vector2(0, 0) +cache/0/16/0/glyphs/71/uv_rect = Rect2(66, 65, 8, 10) +cache/0/16/0/glyphs/71/texture_idx = 0 +cache/0/16/0/glyphs/231/advance = Vector2(7, 0) +cache/0/16/0/glyphs/231/offset = Vector2(1, 3) +cache/0/16/0/glyphs/231/size = Vector2(0, 0) +cache/0/16/0/glyphs/231/uv_rect = Rect2(2, 186, 5, 11) +cache/0/16/0/glyphs/231/texture_idx = 0 +cache/0/16/0/glyphs/199/advance = Vector2(8, 0) +cache/0/16/0/glyphs/199/offset = Vector2(1, 1) +cache/0/16/0/glyphs/199/size = Vector2(0, 0) +cache/0/16/0/glyphs/199/uv_rect = Rect2(57, 97, 7, 13) +cache/0/16/0/glyphs/199/texture_idx = 0 +cache/0/16/0/glyphs/103/advance = Vector2(7, 0) +cache/0/16/0/glyphs/103/offset = Vector2(1, 3) +cache/0/16/0/glyphs/103/size = Vector2(0, 0) +cache/0/16/0/glyphs/103/uv_rect = Rect2(13, 107, 7, 11) +cache/0/16/0/glyphs/103/texture_idx = 0 +cache/0/16/0/glyphs/167/advance = Vector2(7, 0) +cache/0/16/0/glyphs/167/offset = Vector2(0, 0) +cache/0/16/0/glyphs/167/size = Vector2(0, 0) +cache/0/16/0/glyphs/167/uv_rect = Rect2(112, 131, 6, 11) +cache/0/16/0/glyphs/167/texture_idx = 0 +cache/0/16/0/glyphs/39/advance = Vector2(3, 0) +cache/0/16/0/glyphs/39/offset = Vector2(1, 1) +cache/0/16/0/glyphs/39/size = Vector2(0, 0) +cache/0/16/0/glyphs/39/uv_rect = Rect2(119, 219, 2, 4) +cache/0/16/0/glyphs/39/texture_idx = 0 +cache/0/16/0/glyphs/72/advance = Vector2(10, 0) +cache/0/16/0/glyphs/72/offset = Vector2(1, 1) +cache/0/16/0/glyphs/72/size = Vector2(0, 0) +cache/0/16/0/glyphs/72/uv_rect = Rect2(54, 65, 8, 10) +cache/0/16/0/glyphs/72/texture_idx = 0 +cache/0/16/0/glyphs/232/advance = Vector2(8, 0) +cache/0/16/0/glyphs/232/offset = Vector2(1, 0) +cache/0/16/0/glyphs/232/size = Vector2(0, 0) +cache/0/16/0/glyphs/232/uv_rect = Rect2(62, 143, 6, 11) +cache/0/16/0/glyphs/232/texture_idx = 0 +cache/0/16/0/glyphs/200/advance = Vector2(7, 0) +cache/0/16/0/glyphs/200/offset = Vector2(1, -2) +cache/0/16/0/glyphs/200/size = Vector2(0, 0) +cache/0/16/0/glyphs/200/uv_rect = Rect2(47, 195, 5, 13) +cache/0/16/0/glyphs/200/texture_idx = 0 +cache/0/16/0/glyphs/40/advance = Vector2(4, 0) +cache/0/16/0/glyphs/40/offset = Vector2(1, 1) +cache/0/16/0/glyphs/40/size = Vector2(0, 0) +cache/0/16/0/glyphs/40/uv_rect = Rect2(93, 212, 4, 12) +cache/0/16/0/glyphs/40/texture_idx = 0 +cache/0/16/0/glyphs/104/advance = Vector2(8, 0) +cache/0/16/0/glyphs/104/offset = Vector2(1, 0) +cache/0/16/0/glyphs/104/size = Vector2(0, 0) +cache/0/16/0/glyphs/104/uv_rect = Rect2(72, 158, 6, 11) +cache/0/16/0/glyphs/104/texture_idx = 0 +cache/0/16/0/glyphs/168/advance = Vector2(8, 0) +cache/0/16/0/glyphs/168/offset = Vector2(2, 0) +cache/0/16/0/glyphs/168/size = Vector2(0, 0) +cache/0/16/0/glyphs/168/uv_rect = Rect2(77, 217, 4, 2) +cache/0/16/0/glyphs/168/texture_idx = 0 +cache/0/16/0/glyphs/73/advance = Vector2(5, 0) +cache/0/16/0/glyphs/73/offset = Vector2(0, 1) +cache/0/16/0/glyphs/73/size = Vector2(0, 0) +cache/0/16/0/glyphs/73/uv_rect = Rect2(38, 191, 5, 10) +cache/0/16/0/glyphs/73/texture_idx = 0 +cache/0/16/0/glyphs/169/advance = Vector2(12, 0) +cache/0/16/0/glyphs/169/offset = Vector2(1, 1) +cache/0/16/0/glyphs/169/size = Vector2(0, 0) +cache/0/16/0/glyphs/169/uv_rect = Rect2(44, 34, 10, 10) +cache/0/16/0/glyphs/169/texture_idx = 0 +cache/0/16/0/glyphs/233/advance = Vector2(8, 0) +cache/0/16/0/glyphs/233/offset = Vector2(1, 0) +cache/0/16/0/glyphs/233/size = Vector2(0, 0) +cache/0/16/0/glyphs/233/uv_rect = Rect2(52, 142, 6, 11) +cache/0/16/0/glyphs/233/texture_idx = 0 +cache/0/16/0/glyphs/201/advance = Vector2(7, 0) +cache/0/16/0/glyphs/201/offset = Vector2(1, -2) +cache/0/16/0/glyphs/201/size = Vector2(0, 0) +cache/0/16/0/glyphs/201/uv_rect = Rect2(56, 197, 5, 13) +cache/0/16/0/glyphs/201/texture_idx = 0 +cache/0/16/0/glyphs/41/advance = Vector2(4, 0) +cache/0/16/0/glyphs/41/offset = Vector2(0, 1) +cache/0/16/0/glyphs/41/size = Vector2(0, 0) +cache/0/16/0/glyphs/41/uv_rect = Rect2(51, 226, 3, 12) +cache/0/16/0/glyphs/41/texture_idx = 0 +cache/0/16/0/glyphs/105/advance = Vector2(4, 0) +cache/0/16/0/glyphs/105/offset = Vector2(0, 0) +cache/0/16/0/glyphs/105/size = Vector2(0, 0) +cache/0/16/0/glyphs/105/uv_rect = Rect2(109, 213, 3, 11) +cache/0/16/0/glyphs/105/texture_idx = 0 +cache/0/16/0/glyphs/106/advance = Vector2(4, 0) +cache/0/16/0/glyphs/106/offset = Vector2(-1, 0) +cache/0/16/0/glyphs/106/size = Vector2(0, 0) +cache/0/16/0/glyphs/106/uv_rect = Rect2(101, 213, 4, 14) +cache/0/16/0/glyphs/106/texture_idx = 0 +cache/0/16/0/glyphs/74/advance = Vector2(3, 0) +cache/0/16/0/glyphs/74/offset = Vector2(-2, 1) +cache/0/16/0/glyphs/74/size = Vector2(0, 0) +cache/0/16/0/glyphs/74/uv_rect = Rect2(92, 195, 5, 13) +cache/0/16/0/glyphs/74/texture_idx = 0 +cache/0/16/0/glyphs/202/advance = Vector2(7, 0) +cache/0/16/0/glyphs/202/offset = Vector2(1, -2) +cache/0/16/0/glyphs/202/size = Vector2(0, 0) +cache/0/16/0/glyphs/202/uv_rect = Rect2(65, 202, 5, 13) +cache/0/16/0/glyphs/202/texture_idx = 0 +cache/0/16/0/glyphs/42/advance = Vector2(8, 0) +cache/0/16/0/glyphs/42/offset = Vector2(0, 0) +cache/0/16/0/glyphs/42/size = Vector2(0, 0) +cache/0/16/0/glyphs/42/uv_rect = Rect2(108, 80, 7, 6) +cache/0/16/0/glyphs/42/texture_idx = 0 +cache/0/16/0/glyphs/170/advance = Vector2(5, 0) +cache/0/16/0/glyphs/170/offset = Vector2(0, 1) +cache/0/16/0/glyphs/170/size = Vector2(0, 0) +cache/0/16/0/glyphs/170/uv_rect = Rect2(29, 205, 4, 5) +cache/0/16/0/glyphs/170/texture_idx = 0 +cache/0/16/0/glyphs/234/advance = Vector2(8, 0) +cache/0/16/0/glyphs/234/offset = Vector2(1, 0) +cache/0/16/0/glyphs/234/size = Vector2(0, 0) +cache/0/16/0/glyphs/234/uv_rect = Rect2(12, 181, 6, 11) +cache/0/16/0/glyphs/234/texture_idx = 0 +cache/0/16/0/glyphs/171/advance = Vector2(7, 0) +cache/0/16/0/glyphs/171/offset = Vector2(1, 4) +cache/0/16/0/glyphs/171/size = Vector2(0, 0) +cache/0/16/0/glyphs/171/uv_rect = Rect2(22, 181, 5, 6) +cache/0/16/0/glyphs/171/texture_idx = 0 +cache/0/16/0/glyphs/43/advance = Vector2(8, 0) +cache/0/16/0/glyphs/43/offset = Vector2(0, 3) +cache/0/16/0/glyphs/43/size = Vector2(0, 0) +cache/0/16/0/glyphs/43/uv_rect = Rect2(101, 94, 7, 7) +cache/0/16/0/glyphs/43/texture_idx = 0 +cache/0/16/0/glyphs/107/advance = Vector2(7, 0) +cache/0/16/0/glyphs/107/offset = Vector2(1, 0) +cache/0/16/0/glyphs/107/size = Vector2(0, 0) +cache/0/16/0/glyphs/107/uv_rect = Rect2(112, 92, 7, 11) +cache/0/16/0/glyphs/107/texture_idx = 0 +cache/0/16/0/glyphs/203/advance = Vector2(7, 0) +cache/0/16/0/glyphs/203/offset = Vector2(1, -2) +cache/0/16/0/glyphs/203/size = Vector2(0, 0) +cache/0/16/0/glyphs/203/uv_rect = Rect2(83, 200, 5, 13) +cache/0/16/0/glyphs/203/texture_idx = 0 +cache/0/16/0/glyphs/235/advance = Vector2(8, 0) +cache/0/16/0/glyphs/235/offset = Vector2(1, 0) +cache/0/16/0/glyphs/235/size = Vector2(0, 0) +cache/0/16/0/glyphs/235/uv_rect = Rect2(2, 171, 6, 11) +cache/0/16/0/glyphs/235/texture_idx = 0 +cache/0/16/0/glyphs/75/advance = Vector2(8, 0) +cache/0/16/0/glyphs/75/offset = Vector2(1, 1) +cache/0/16/0/glyphs/75/size = Vector2(0, 0) +cache/0/16/0/glyphs/75/uv_rect = Rect2(102, 66, 8, 10) +cache/0/16/0/glyphs/75/texture_idx = 0 +cache/0/16/0/glyphs/44/advance = Vector2(4, 0) +cache/0/16/0/glyphs/44/offset = Vector2(1, 9) +cache/0/16/0/glyphs/44/size = Vector2(0, 0) +cache/0/16/0/glyphs/44/uv_rect = Rect2(107, 231, 2, 3) +cache/0/16/0/glyphs/44/texture_idx = 0 +cache/0/16/0/glyphs/172/advance = Vector2(8, 0) +cache/0/16/0/glyphs/172/offset = Vector2(0, 6) +cache/0/16/0/glyphs/172/size = Vector2(0, 0) +cache/0/16/0/glyphs/172/uv_rect = Rect2(2, 104, 7, 4) +cache/0/16/0/glyphs/172/texture_idx = 0 +cache/0/16/0/glyphs/108/advance = Vector2(4, 0) +cache/0/16/0/glyphs/108/offset = Vector2(1, 0) +cache/0/16/0/glyphs/108/size = Vector2(0, 0) +cache/0/16/0/glyphs/108/uv_rect = Rect2(113, 228, 2, 11) +cache/0/16/0/glyphs/108/texture_idx = 0 +cache/0/16/0/glyphs/204/advance = Vector2(5, 0) +cache/0/16/0/glyphs/204/offset = Vector2(0, -2) +cache/0/16/0/glyphs/204/size = Vector2(0, 0) +cache/0/16/0/glyphs/204/uv_rect = Rect2(101, 196, 5, 13) +cache/0/16/0/glyphs/204/texture_idx = 0 +cache/0/16/0/glyphs/236/advance = Vector2(4, 0) +cache/0/16/0/glyphs/236/offset = Vector2(0, 0) +cache/0/16/0/glyphs/236/size = Vector2(0, 0) +cache/0/16/0/glyphs/236/uv_rect = Rect2(30, 214, 3, 11) +cache/0/16/0/glyphs/236/texture_idx = 0 +cache/0/16/0/glyphs/76/advance = Vector2(7, 0) +cache/0/16/0/glyphs/76/offset = Vector2(1, 1) +cache/0/16/0/glyphs/76/size = Vector2(0, 0) +cache/0/16/0/glyphs/76/uv_rect = Rect2(22, 124, 6, 10) +cache/0/16/0/glyphs/76/texture_idx = 0 +cache/0/16/0/glyphs/173/advance = Vector2(5, 0) +cache/0/16/0/glyphs/173/offset = Vector2(1, 7) +cache/0/16/0/glyphs/173/size = Vector2(0, 0) +cache/0/16/0/glyphs/173/uv_rect = Rect2(16, 229, 3, 2) +cache/0/16/0/glyphs/173/texture_idx = 0 +cache/0/16/0/glyphs/45/advance = Vector2(5, 0) +cache/0/16/0/glyphs/45/offset = Vector2(1, 7) +cache/0/16/0/glyphs/45/size = Vector2(0, 0) +cache/0/16/0/glyphs/45/uv_rect = Rect2(123, 201, 3, 2) +cache/0/16/0/glyphs/45/texture_idx = 0 +cache/0/16/0/glyphs/109/advance = Vector2(13, 0) +cache/0/16/0/glyphs/109/offset = Vector2(1, 3) +cache/0/16/0/glyphs/109/size = Vector2(0, 0) +cache/0/16/0/glyphs/109/uv_rect = Rect2(68, 2, 11, 8) +cache/0/16/0/glyphs/109/texture_idx = 0 +cache/0/16/0/glyphs/205/advance = Vector2(5, 0) +cache/0/16/0/glyphs/205/offset = Vector2(0, -2) +cache/0/16/0/glyphs/205/size = Vector2(0, 0) +cache/0/16/0/glyphs/205/uv_rect = Rect2(11, 211, 5, 13) +cache/0/16/0/glyphs/205/texture_idx = 0 +cache/0/16/0/glyphs/237/advance = Vector2(4, 0) +cache/0/16/0/glyphs/237/offset = Vector2(1, 0) +cache/0/16/0/glyphs/237/size = Vector2(0, 0) +cache/0/16/0/glyphs/237/uv_rect = Rect2(37, 214, 3, 11) +cache/0/16/0/glyphs/237/texture_idx = 0 +cache/0/16/0/glyphs/77/advance = Vector2(12, 0) +cache/0/16/0/glyphs/77/offset = Vector2(1, 1) +cache/0/16/0/glyphs/77/size = Vector2(0, 0) +cache/0/16/0/glyphs/77/uv_rect = Rect2(62, 20, 10, 10) +cache/0/16/0/glyphs/77/texture_idx = 0 +cache/0/16/0/glyphs/46/advance = Vector2(4, 0) +cache/0/16/0/glyphs/46/offset = Vector2(1, 9) +cache/0/16/0/glyphs/46/size = Vector2(0, 0) +cache/0/16/0/glyphs/46/uv_rect = Rect2(101, 231, 2, 2) +cache/0/16/0/glyphs/46/texture_idx = 0 +cache/0/16/0/glyphs/110/advance = Vector2(8, 0) +cache/0/16/0/glyphs/110/offset = Vector2(1, 3) +cache/0/16/0/glyphs/110/size = Vector2(0, 0) +cache/0/16/0/glyphs/110/uv_rect = Rect2(111, 107, 6, 8) +cache/0/16/0/glyphs/110/texture_idx = 0 +cache/0/16/0/glyphs/206/advance = Vector2(5, 0) +cache/0/16/0/glyphs/206/offset = Vector2(0, -2) +cache/0/16/0/glyphs/206/size = Vector2(0, 0) +cache/0/16/0/glyphs/206/uv_rect = Rect2(20, 212, 5, 13) +cache/0/16/0/glyphs/206/texture_idx = 0 +cache/0/16/0/glyphs/238/advance = Vector2(4, 0) +cache/0/16/0/glyphs/238/offset = Vector2(-1, 0) +cache/0/16/0/glyphs/238/size = Vector2(0, 0) +cache/0/16/0/glyphs/238/uv_rect = Rect2(11, 196, 5, 11) +cache/0/16/0/glyphs/238/texture_idx = 0 +cache/0/16/0/glyphs/174/advance = Vector2(12, 0) +cache/0/16/0/glyphs/174/offset = Vector2(1, 1) +cache/0/16/0/glyphs/174/size = Vector2(0, 0) +cache/0/16/0/glyphs/174/uv_rect = Rect2(30, 33, 10, 10) +cache/0/16/0/glyphs/174/texture_idx = 0 +cache/0/16/0/glyphs/78/advance = Vector2(10, 0) +cache/0/16/0/glyphs/78/offset = Vector2(1, 1) +cache/0/16/0/glyphs/78/size = Vector2(0, 0) +cache/0/16/0/glyphs/78/uv_rect = Rect2(2, 79, 8, 10) +cache/0/16/0/glyphs/78/texture_idx = 0 +cache/0/16/0/glyphs/175/advance = Vector2(7, 0) +cache/0/16/0/glyphs/175/offset = Vector2(0, -1) +cache/0/16/0/glyphs/175/size = Vector2(0, 0) +cache/0/16/0/glyphs/175/uv_rect = Rect2(35, 111, 7, 1) +cache/0/16/0/glyphs/175/texture_idx = 0 +cache/0/16/0/glyphs/111/advance = Vector2(8, 0) +cache/0/16/0/glyphs/111/offset = Vector2(1, 3) +cache/0/16/0/glyphs/111/size = Vector2(0, 0) +cache/0/16/0/glyphs/111/uv_rect = Rect2(102, 153, 6, 8) +cache/0/16/0/glyphs/111/texture_idx = 0 +cache/0/16/0/glyphs/207/advance = Vector2(5, 0) +cache/0/16/0/glyphs/207/offset = Vector2(0, -2) +cache/0/16/0/glyphs/207/size = Vector2(0, 0) +cache/0/16/0/glyphs/207/uv_rect = Rect2(119, 184, 5, 13) +cache/0/16/0/glyphs/207/texture_idx = 0 +cache/0/16/0/glyphs/239/advance = Vector2(4, 0) +cache/0/16/0/glyphs/239/offset = Vector2(0, 0) +cache/0/16/0/glyphs/239/size = Vector2(0, 0) +cache/0/16/0/glyphs/239/uv_rect = Rect2(69, 219, 4, 11) +cache/0/16/0/glyphs/239/texture_idx = 0 +cache/0/16/0/glyphs/79/advance = Vector2(11, 0) +cache/0/16/0/glyphs/79/offset = Vector2(1, 1) +cache/0/16/0/glyphs/79/size = Vector2(0, 0) +cache/0/16/0/glyphs/79/uv_rect = Rect2(41, 66, 9, 10) +cache/0/16/0/glyphs/79/texture_idx = 0 +cache/0/16/0/glyphs/47/advance = Vector2(5, 0) +cache/0/16/0/glyphs/47/offset = Vector2(-1, 1) +cache/0/16/0/glyphs/47/size = Vector2(0, 0) +cache/0/16/0/glyphs/47/uv_rect = Rect2(90, 105, 7, 10) +cache/0/16/0/glyphs/47/texture_idx = 0 +cache/0/16/0/glyphs/176/advance = Vector2(6, 0) +cache/0/16/0/glyphs/176/offset = Vector2(1, 1) +cache/0/16/0/glyphs/176/size = Vector2(0, 0) +cache/0/16/0/glyphs/176/uv_rect = Rect2(61, 219, 4, 4) +cache/0/16/0/glyphs/176/texture_idx = 0 +cache/0/16/0/glyphs/112/advance = Vector2(8, 0) +cache/0/16/0/glyphs/112/offset = Vector2(1, 3) +cache/0/16/0/glyphs/112/size = Vector2(0, 0) +cache/0/16/0/glyphs/112/uv_rect = Rect2(32, 150, 6, 11) +cache/0/16/0/glyphs/112/texture_idx = 0 +cache/0/16/0/glyphs/240/advance = Vector2(8, 0) +cache/0/16/0/glyphs/240/offset = Vector2(1, 0) +cache/0/16/0/glyphs/240/size = Vector2(0, 0) +cache/0/16/0/glyphs/240/uv_rect = Rect2(82, 165, 6, 11) +cache/0/16/0/glyphs/240/texture_idx = 0 +cache/0/16/0/glyphs/208/advance = Vector2(10, 0) +cache/0/16/0/glyphs/208/offset = Vector2(0, 1) +cache/0/16/0/glyphs/208/size = Vector2(0, 0) +cache/0/16/0/glyphs/208/uv_rect = Rect2(86, 33, 9, 10) +cache/0/16/0/glyphs/208/texture_idx = 0 +cache/0/16/0/glyphs/80/advance = Vector2(8, 0) +cache/0/16/0/glyphs/80/offset = Vector2(1, 1) +cache/0/16/0/glyphs/80/size = Vector2(0, 0) +cache/0/16/0/glyphs/80/uv_rect = Rect2(52, 128, 6, 10) +cache/0/16/0/glyphs/80/texture_idx = 0 +cache/0/16/0/glyphs/48/advance = Vector2(8, 0) +cache/0/16/0/glyphs/48/offset = Vector2(1, 1) +cache/0/16/0/glyphs/48/size = Vector2(0, 0) +cache/0/16/0/glyphs/48/uv_rect = Rect2(42, 135, 6, 10) +cache/0/16/0/glyphs/48/texture_idx = 0 +cache/0/16/0/glyphs/177/advance = Vector2(8, 0) +cache/0/16/0/glyphs/177/offset = Vector2(0, 3) +cache/0/16/0/glyphs/177/size = Vector2(0, 0) +cache/0/16/0/glyphs/177/uv_rect = Rect2(46, 97, 7, 8) +cache/0/16/0/glyphs/177/texture_idx = 0 +cache/0/16/0/glyphs/113/advance = Vector2(8, 0) +cache/0/16/0/glyphs/113/offset = Vector2(1, 3) +cache/0/16/0/glyphs/113/size = Vector2(0, 0) +cache/0/16/0/glyphs/113/uv_rect = Rect2(22, 152, 6, 11) +cache/0/16/0/glyphs/113/texture_idx = 0 +cache/0/16/0/glyphs/241/advance = Vector2(8, 0) +cache/0/16/0/glyphs/241/offset = Vector2(1, -1) +cache/0/16/0/glyphs/241/size = Vector2(0, 0) +cache/0/16/0/glyphs/241/uv_rect = Rect2(2, 112, 6, 12) +cache/0/16/0/glyphs/241/texture_idx = 0 +cache/0/16/0/glyphs/81/advance = Vector2(11, 0) +cache/0/16/0/glyphs/81/offset = Vector2(1, 1) +cache/0/16/0/glyphs/81/size = Vector2(0, 0) +cache/0/16/0/glyphs/81/uv_rect = Rect2(15, 59, 9, 13) +cache/0/16/0/glyphs/81/texture_idx = 0 +cache/0/16/0/glyphs/209/advance = Vector2(10, 0) +cache/0/16/0/glyphs/209/offset = Vector2(1, -3) +cache/0/16/0/glyphs/209/size = Vector2(0, 0) +cache/0/16/0/glyphs/209/uv_rect = Rect2(74, 80, 8, 14) +cache/0/16/0/glyphs/209/texture_idx = 0 +cache/0/16/0/glyphs/49/advance = Vector2(8, 0) +cache/0/16/0/glyphs/49/offset = Vector2(2, 1) +cache/0/16/0/glyphs/49/size = Vector2(0, 0) +cache/0/16/0/glyphs/49/uv_rect = Rect2(45, 212, 4, 10) +cache/0/16/0/glyphs/49/texture_idx = 0 +cache/0/16/0/glyphs/178/advance = Vector2(5, 0) +cache/0/16/0/glyphs/178/offset = Vector2(0, 1) +cache/0/16/0/glyphs/178/size = Vector2(0, 0) +cache/0/16/0/glyphs/178/uv_rect = Rect2(58, 187, 5, 6) +cache/0/16/0/glyphs/178/texture_idx = 0 +cache/0/16/0/glyphs/114/advance = Vector2(5, 0) +cache/0/16/0/glyphs/114/offset = Vector2(1, 3) +cache/0/16/0/glyphs/114/size = Vector2(0, 0) +cache/0/16/0/glyphs/114/uv_rect = Rect2(85, 217, 4, 8) +cache/0/16/0/glyphs/114/texture_idx = 0 +cache/0/16/0/glyphs/210/advance = Vector2(11, 0) +cache/0/16/0/glyphs/210/offset = Vector2(1, -2) +cache/0/16/0/glyphs/210/size = Vector2(0, 0) +cache/0/16/0/glyphs/210/uv_rect = Rect2(2, 62, 9, 13) +cache/0/16/0/glyphs/210/texture_idx = 0 +cache/0/16/0/glyphs/242/advance = Vector2(8, 0) +cache/0/16/0/glyphs/242/offset = Vector2(1, 0) +cache/0/16/0/glyphs/242/size = Vector2(0, 0) +cache/0/16/0/glyphs/242/uv_rect = Rect2(62, 165, 6, 11) +cache/0/16/0/glyphs/242/texture_idx = 0 +cache/0/16/0/glyphs/82/advance = Vector2(8, 0) +cache/0/16/0/glyphs/82/offset = Vector2(1, 1) +cache/0/16/0/glyphs/82/size = Vector2(0, 0) +cache/0/16/0/glyphs/82/uv_rect = Rect2(35, 97, 7, 10) +cache/0/16/0/glyphs/82/texture_idx = 0 +cache/0/16/0/glyphs/50/advance = Vector2(8, 0) +cache/0/16/0/glyphs/50/offset = Vector2(1, 1) +cache/0/16/0/glyphs/50/size = Vector2(0, 0) +cache/0/16/0/glyphs/50/uv_rect = Rect2(57, 114, 7, 10) +cache/0/16/0/glyphs/50/texture_idx = 0 +cache/0/16/0/glyphs/179/advance = Vector2(5, 0) +cache/0/16/0/glyphs/179/offset = Vector2(0, 1) +cache/0/16/0/glyphs/179/size = Vector2(0, 0) +cache/0/16/0/glyphs/179/uv_rect = Rect2(53, 214, 4, 6) +cache/0/16/0/glyphs/179/texture_idx = 0 +cache/0/16/0/glyphs/115/advance = Vector2(7, 0) +cache/0/16/0/glyphs/115/offset = Vector2(0, 3) +cache/0/16/0/glyphs/115/size = Vector2(0, 0) +cache/0/16/0/glyphs/115/uv_rect = Rect2(112, 146, 6, 8) +cache/0/16/0/glyphs/115/texture_idx = 0 +cache/0/16/0/glyphs/211/advance = Vector2(11, 0) +cache/0/16/0/glyphs/211/offset = Vector2(1, -2) +cache/0/16/0/glyphs/211/size = Vector2(0, 0) +cache/0/16/0/glyphs/211/uv_rect = Rect2(106, 49, 9, 13) +cache/0/16/0/glyphs/211/texture_idx = 0 +cache/0/16/0/glyphs/243/advance = Vector2(8, 0) +cache/0/16/0/glyphs/243/offset = Vector2(1, 0) +cache/0/16/0/glyphs/243/size = Vector2(0, 0) +cache/0/16/0/glyphs/243/uv_rect = Rect2(52, 172, 6, 11) +cache/0/16/0/glyphs/243/texture_idx = 0 +cache/0/16/0/glyphs/83/advance = Vector2(7, 0) +cache/0/16/0/glyphs/83/offset = Vector2(0, 1) +cache/0/16/0/glyphs/83/size = Vector2(0, 0) +cache/0/16/0/glyphs/83/uv_rect = Rect2(24, 96, 7, 10) +cache/0/16/0/glyphs/83/texture_idx = 0 +cache/0/16/0/glyphs/51/advance = Vector2(8, 0) +cache/0/16/0/glyphs/51/offset = Vector2(1, 1) +cache/0/16/0/glyphs/51/size = Vector2(0, 0) +cache/0/16/0/glyphs/51/uv_rect = Rect2(22, 138, 6, 10) +cache/0/16/0/glyphs/51/texture_idx = 0 +cache/0/16/0/glyphs/180/advance = Vector2(8, 0) +cache/0/16/0/glyphs/180/offset = Vector2(3, 0) +cache/0/16/0/glyphs/180/size = Vector2(0, 0) +cache/0/16/0/glyphs/180/uv_rect = Rect2(9, 228, 3, 2) +cache/0/16/0/glyphs/180/texture_idx = 0 +cache/0/16/0/glyphs/116/advance = Vector2(5, 0) +cache/0/16/0/glyphs/116/offset = Vector2(0, 1) +cache/0/16/0/glyphs/116/size = Vector2(0, 0) +cache/0/16/0/glyphs/116/uv_rect = Rect2(67, 188, 5, 10) +cache/0/16/0/glyphs/116/texture_idx = 0 +cache/0/16/0/glyphs/212/advance = Vector2(11, 0) +cache/0/16/0/glyphs/212/offset = Vector2(1, -2) +cache/0/16/0/glyphs/212/size = Vector2(0, 0) +cache/0/16/0/glyphs/212/uv_rect = Rect2(93, 49, 9, 13) +cache/0/16/0/glyphs/212/texture_idx = 0 +cache/0/16/0/glyphs/244/advance = Vector2(8, 0) +cache/0/16/0/glyphs/244/offset = Vector2(1, 0) +cache/0/16/0/glyphs/244/size = Vector2(0, 0) +cache/0/16/0/glyphs/244/uv_rect = Rect2(42, 164, 6, 11) +cache/0/16/0/glyphs/244/texture_idx = 0 +cache/0/16/0/glyphs/84/advance = Vector2(7, 0) +cache/0/16/0/glyphs/84/offset = Vector2(0, 1) +cache/0/16/0/glyphs/84/size = Vector2(0, 0) +cache/0/16/0/glyphs/84/uv_rect = Rect2(13, 93, 7, 10) +cache/0/16/0/glyphs/84/texture_idx = 0 +cache/0/16/0/glyphs/52/advance = Vector2(8, 0) +cache/0/16/0/glyphs/52/offset = Vector2(1, 1) +cache/0/16/0/glyphs/52/size = Vector2(0, 0) +cache/0/16/0/glyphs/52/uv_rect = Rect2(24, 110, 7, 10) +cache/0/16/0/glyphs/52/texture_idx = 0 +cache/0/16/0/glyphs/53/advance = Vector2(8, 0) +cache/0/16/0/glyphs/53/offset = Vector2(1, 1) +cache/0/16/0/glyphs/53/size = Vector2(0, 0) +cache/0/16/0/glyphs/53/uv_rect = Rect2(92, 119, 6, 10) +cache/0/16/0/glyphs/53/texture_idx = 0 +cache/0/16/0/glyphs/85/advance = Vector2(10, 0) +cache/0/16/0/glyphs/85/offset = Vector2(1, 1) +cache/0/16/0/glyphs/85/size = Vector2(0, 0) +cache/0/16/0/glyphs/85/uv_rect = Rect2(114, 66, 8, 10) +cache/0/16/0/glyphs/85/texture_idx = 0 +cache/0/16/0/glyphs/213/advance = Vector2(11, 0) +cache/0/16/0/glyphs/213/offset = Vector2(1, -3) +cache/0/16/0/glyphs/213/size = Vector2(0, 0) +cache/0/16/0/glyphs/213/uv_rect = Rect2(2, 44, 9, 14) +cache/0/16/0/glyphs/213/texture_idx = 0 +cache/0/16/0/glyphs/117/advance = Vector2(8, 0) +cache/0/16/0/glyphs/117/offset = Vector2(1, 3) +cache/0/16/0/glyphs/117/size = Vector2(0, 0) +cache/0/16/0/glyphs/117/uv_rect = Rect2(42, 123, 6, 8) +cache/0/16/0/glyphs/117/texture_idx = 0 +cache/0/16/0/glyphs/181/advance = Vector2(8, 0) +cache/0/16/0/glyphs/181/offset = Vector2(1, 3) +cache/0/16/0/glyphs/181/size = Vector2(0, 0) +cache/0/16/0/glyphs/181/uv_rect = Rect2(2, 140, 6, 11) +cache/0/16/0/glyphs/181/texture_idx = 0 +cache/0/16/0/glyphs/245/advance = Vector2(8, 0) +cache/0/16/0/glyphs/245/offset = Vector2(1, -1) +cache/0/16/0/glyphs/245/size = Vector2(0, 0) +cache/0/16/0/glyphs/245/uv_rect = Rect2(12, 165, 6, 12) +cache/0/16/0/glyphs/245/texture_idx = 0 +cache/0/16/0/glyphs/54/advance = Vector2(8, 0) +cache/0/16/0/glyphs/54/offset = Vector2(1, 1) +cache/0/16/0/glyphs/54/size = Vector2(0, 0) +cache/0/16/0/glyphs/54/uv_rect = Rect2(82, 121, 6, 10) +cache/0/16/0/glyphs/54/texture_idx = 0 +cache/0/16/0/glyphs/86/advance = Vector2(8, 0) +cache/0/16/0/glyphs/86/offset = Vector2(-1, 1) +cache/0/16/0/glyphs/86/size = Vector2(0, 0) +cache/0/16/0/glyphs/86/uv_rect = Rect2(76, 18, 10, 10) +cache/0/16/0/glyphs/86/texture_idx = 0 +cache/0/16/0/glyphs/246/advance = Vector2(8, 0) +cache/0/16/0/glyphs/246/offset = Vector2(1, 0) +cache/0/16/0/glyphs/246/size = Vector2(0, 0) +cache/0/16/0/glyphs/246/uv_rect = Rect2(72, 173, 6, 11) +cache/0/16/0/glyphs/246/texture_idx = 0 +cache/0/16/0/glyphs/214/advance = Vector2(11, 0) +cache/0/16/0/glyphs/214/offset = Vector2(1, -2) +cache/0/16/0/glyphs/214/size = Vector2(0, 0) +cache/0/16/0/glyphs/214/uv_rect = Rect2(80, 49, 9, 13) +cache/0/16/0/glyphs/214/texture_idx = 0 +cache/0/16/0/glyphs/182/advance = Vector2(9, 0) +cache/0/16/0/glyphs/182/offset = Vector2(1, 0) +cache/0/16/0/glyphs/182/size = Vector2(0, 0) +cache/0/16/0/glyphs/182/uv_rect = Rect2(68, 98, 7, 13) +cache/0/16/0/glyphs/182/texture_idx = 0 +cache/0/16/0/glyphs/118/advance = Vector2(7, 0) +cache/0/16/0/glyphs/118/offset = Vector2(-1, 3) +cache/0/16/0/glyphs/118/size = Vector2(0, 0) +cache/0/16/0/glyphs/118/uv_rect = Rect2(15, 47, 9, 8) +cache/0/16/0/glyphs/118/texture_idx = 0 +cache/0/16/0/glyphs/55/advance = Vector2(8, 0) +cache/0/16/0/glyphs/55/offset = Vector2(1, 1) +cache/0/16/0/glyphs/55/size = Vector2(0, 0) +cache/0/16/0/glyphs/55/uv_rect = Rect2(72, 129, 6, 10) +cache/0/16/0/glyphs/55/texture_idx = 0 +cache/0/16/0/glyphs/87/advance = Vector2(13, 0) +cache/0/16/0/glyphs/87/offset = Vector2(-1, 1) +cache/0/16/0/glyphs/87/size = Vector2(0, 0) +cache/0/16/0/glyphs/87/uv_rect = Rect2(2, 2, 15, 10) +cache/0/16/0/glyphs/87/texture_idx = 0 +cache/0/16/0/glyphs/119/advance = Vector2(10, 0) +cache/0/16/0/glyphs/119/offset = Vector2(-1, 3) +cache/0/16/0/glyphs/119/size = Vector2(0, 0) +cache/0/16/0/glyphs/119/uv_rect = Rect2(37, 2, 12, 8) +cache/0/16/0/glyphs/119/texture_idx = 0 +cache/0/16/0/glyphs/247/advance = Vector2(8, 0) +cache/0/16/0/glyphs/247/offset = Vector2(0, 3) +cache/0/16/0/glyphs/247/size = Vector2(0, 0) +cache/0/16/0/glyphs/247/uv_rect = Rect2(90, 94, 7, 7) +cache/0/16/0/glyphs/247/texture_idx = 0 +cache/0/16/0/glyphs/215/advance = Vector2(8, 0) +cache/0/16/0/glyphs/215/offset = Vector2(0, 3) +cache/0/16/0/glyphs/215/size = Vector2(0, 0) +cache/0/16/0/glyphs/215/uv_rect = Rect2(2, 93, 7, 7) +cache/0/16/0/glyphs/215/texture_idx = 0 +cache/0/16/0/glyphs/183/advance = Vector2(4, 0) +cache/0/16/0/glyphs/183/offset = Vector2(1, 5) +cache/0/16/0/glyphs/183/size = Vector2(0, 0) +cache/0/16/0/glyphs/183/uv_rect = Rect2(77, 223, 2, 2) +cache/0/16/0/glyphs/183/texture_idx = 0 +cache/0/16/0/glyphs/56/advance = Vector2(8, 0) +cache/0/16/0/glyphs/56/offset = Vector2(1, 1) +cache/0/16/0/glyphs/56/size = Vector2(0, 0) +cache/0/16/0/glyphs/56/uv_rect = Rect2(62, 129, 6, 10) +cache/0/16/0/glyphs/56/texture_idx = 0 +cache/0/16/0/glyphs/88/advance = Vector2(8, 0) +cache/0/16/0/glyphs/88/offset = Vector2(-1, 1) +cache/0/16/0/glyphs/88/size = Vector2(0, 0) +cache/0/16/0/glyphs/88/uv_rect = Rect2(90, 19, 10, 10) +cache/0/16/0/glyphs/88/texture_idx = 0 +cache/0/16/0/glyphs/216/advance = Vector2(11, 0) +cache/0/16/0/glyphs/216/offset = Vector2(1, 0) +cache/0/16/0/glyphs/216/size = Vector2(0, 0) +cache/0/16/0/glyphs/216/uv_rect = Rect2(99, 33, 9, 12) +cache/0/16/0/glyphs/216/texture_idx = 0 +cache/0/16/0/glyphs/248/advance = Vector2(8, 0) +cache/0/16/0/glyphs/248/offset = Vector2(1, 3) +cache/0/16/0/glyphs/248/size = Vector2(0, 0) +cache/0/16/0/glyphs/248/uv_rect = Rect2(2, 128, 6, 8) +cache/0/16/0/glyphs/248/texture_idx = 0 +cache/0/16/0/glyphs/120/advance = Vector2(7, 0) +cache/0/16/0/glyphs/120/offset = Vector2(0, 3) +cache/0/16/0/glyphs/120/size = Vector2(0, 0) +cache/0/16/0/glyphs/120/uv_rect = Rect2(119, 80, 7, 8) +cache/0/16/0/glyphs/120/texture_idx = 0 +cache/0/16/0/glyphs/184/advance = Vector2(3, 0) +cache/0/16/0/glyphs/184/offset = Vector2(0, 11) +cache/0/16/0/glyphs/184/size = Vector2(0, 0) +cache/0/16/0/glyphs/184/uv_rect = Rect2(116, 212, 3, 3) +cache/0/16/0/glyphs/184/texture_idx = 0 +cache/0/16/0/glyphs/89/advance = Vector2(7, 0) +cache/0/16/0/glyphs/89/offset = Vector2(-1, 1) +cache/0/16/0/glyphs/89/size = Vector2(0, 0) +cache/0/16/0/glyphs/89/uv_rect = Rect2(28, 65, 9, 10) +cache/0/16/0/glyphs/89/texture_idx = 0 +cache/0/16/0/glyphs/217/advance = Vector2(10, 0) +cache/0/16/0/glyphs/217/offset = Vector2(1, -2) +cache/0/16/0/glyphs/217/size = Vector2(0, 0) +cache/0/16/0/glyphs/217/uv_rect = Rect2(38, 80, 8, 13) +cache/0/16/0/glyphs/217/texture_idx = 0 +cache/0/16/0/glyphs/249/advance = Vector2(8, 0) +cache/0/16/0/glyphs/249/offset = Vector2(1, 0) +cache/0/16/0/glyphs/249/size = Vector2(0, 0) +cache/0/16/0/glyphs/249/uv_rect = Rect2(52, 157, 6, 11) +cache/0/16/0/glyphs/249/texture_idx = 0 +cache/0/16/0/glyphs/121/advance = Vector2(7, 0) +cache/0/16/0/glyphs/121/offset = Vector2(-1, 3) +cache/0/16/0/glyphs/121/size = Vector2(0, 0) +cache/0/16/0/glyphs/121/uv_rect = Rect2(112, 33, 9, 11) +cache/0/16/0/glyphs/121/texture_idx = 0 +cache/0/16/0/glyphs/57/advance = Vector2(8, 0) +cache/0/16/0/glyphs/57/offset = Vector2(1, 1) +cache/0/16/0/glyphs/57/size = Vector2(0, 0) +cache/0/16/0/glyphs/57/uv_rect = Rect2(12, 122, 6, 10) +cache/0/16/0/glyphs/57/texture_idx = 0 +cache/0/16/0/glyphs/185/advance = Vector2(5, 0) +cache/0/16/0/glyphs/185/offset = Vector2(0, 1) +cache/0/16/0/glyphs/185/size = Vector2(0, 0) +cache/0/16/0/glyphs/185/uv_rect = Rect2(23, 229, 3, 6) +cache/0/16/0/glyphs/185/texture_idx = 0 +cache/0/16/0/glyphs/218/advance = Vector2(10, 0) +cache/0/16/0/glyphs/218/offset = Vector2(1, -2) +cache/0/16/0/glyphs/218/size = Vector2(0, 0) +cache/0/16/0/glyphs/218/uv_rect = Rect2(26, 79, 8, 13) +cache/0/16/0/glyphs/218/texture_idx = 0 +cache/0/16/0/glyphs/250/advance = Vector2(8, 0) +cache/0/16/0/glyphs/250/offset = Vector2(1, 0) +cache/0/16/0/glyphs/250/size = Vector2(0, 0) +cache/0/16/0/glyphs/250/uv_rect = Rect2(42, 149, 6, 11) +cache/0/16/0/glyphs/250/texture_idx = 0 +cache/0/16/0/glyphs/90/advance = Vector2(8, 0) +cache/0/16/0/glyphs/90/offset = Vector2(1, 1) +cache/0/16/0/glyphs/90/size = Vector2(0, 0) +cache/0/16/0/glyphs/90/uv_rect = Rect2(32, 136, 6, 10) +cache/0/16/0/glyphs/90/texture_idx = 0 +cache/0/16/0/glyphs/122/advance = Vector2(7, 0) +cache/0/16/0/glyphs/122/offset = Vector2(1, 3) +cache/0/16/0/glyphs/122/size = Vector2(0, 0) +cache/0/16/0/glyphs/122/uv_rect = Rect2(112, 119, 6, 8) +cache/0/16/0/glyphs/122/texture_idx = 0 +cache/0/16/0/glyphs/58/advance = Vector2(4, 0) +cache/0/16/0/glyphs/58/offset = Vector2(1, 3) +cache/0/16/0/glyphs/58/size = Vector2(0, 0) +cache/0/16/0/glyphs/58/uv_rect = Rect2(89, 229, 2, 8) +cache/0/16/0/glyphs/58/texture_idx = 0 +cache/0/16/0/glyphs/186/advance = Vector2(5, 0) +cache/0/16/0/glyphs/186/offset = Vector2(0, 1) +cache/0/16/0/glyphs/186/size = Vector2(0, 0) +cache/0/16/0/glyphs/186/uv_rect = Rect2(37, 205, 4, 5) +cache/0/16/0/glyphs/186/texture_idx = 0 +cache/0/16/0/glyphs/219/advance = Vector2(10, 0) +cache/0/16/0/glyphs/219/offset = Vector2(1, -2) +cache/0/16/0/glyphs/219/size = Vector2(0, 0) +cache/0/16/0/glyphs/219/uv_rect = Rect2(50, 80, 8, 13) +cache/0/16/0/glyphs/219/texture_idx = 0 +cache/0/16/0/glyphs/91/advance = Vector2(4, 0) +cache/0/16/0/glyphs/91/offset = Vector2(1, 1) +cache/0/16/0/glyphs/91/size = Vector2(0, 0) +cache/0/16/0/glyphs/91/uv_rect = Rect2(58, 227, 3, 12) +cache/0/16/0/glyphs/91/texture_idx = 0 +cache/0/16/0/glyphs/123/advance = Vector2(5, 0) +cache/0/16/0/glyphs/123/offset = Vector2(0, 1) +cache/0/16/0/glyphs/123/size = Vector2(0, 0) +cache/0/16/0/glyphs/123/uv_rect = Rect2(103, 180, 5, 12) +cache/0/16/0/glyphs/123/texture_idx = 0 +cache/0/16/0/glyphs/251/advance = Vector2(8, 0) +cache/0/16/0/glyphs/251/offset = Vector2(1, 0) +cache/0/16/0/glyphs/251/size = Vector2(0, 0) +cache/0/16/0/glyphs/251/uv_rect = Rect2(12, 150, 6, 11) +cache/0/16/0/glyphs/251/texture_idx = 0 +cache/0/16/0/glyphs/59/advance = Vector2(4, 0) +cache/0/16/0/glyphs/59/offset = Vector2(1, 3) +cache/0/16/0/glyphs/59/size = Vector2(0, 0) +cache/0/16/0/glyphs/59/uv_rect = Rect2(71, 234, 2, 9) +cache/0/16/0/glyphs/59/texture_idx = 0 +cache/0/16/0/glyphs/187/advance = Vector2(7, 0) +cache/0/16/0/glyphs/187/offset = Vector2(1, 4) +cache/0/16/0/glyphs/187/size = Vector2(0, 0) +cache/0/16/0/glyphs/187/uv_rect = Rect2(31, 181, 5, 6) +cache/0/16/0/glyphs/187/texture_idx = 0 +cache/0/16/0/glyphs/188/advance = Vector2(10, 0) +cache/0/16/0/glyphs/188/offset = Vector2(0, 1) +cache/0/16/0/glyphs/188/size = Vector2(0, 0) +cache/0/16/0/glyphs/188/uv_rect = Rect2(16, 33, 10, 10) +cache/0/16/0/glyphs/188/texture_idx = 0 +cache/0/16/0/glyphs/124/advance = Vector2(7, 0) +cache/0/16/0/glyphs/124/offset = Vector2(3, 0) +cache/0/16/0/glyphs/124/size = Vector2(0, 0) +cache/0/16/0/glyphs/124/uv_rect = Rect2(83, 229, 2, 14) +cache/0/16/0/glyphs/124/texture_idx = 0 +cache/0/16/0/glyphs/220/advance = Vector2(10, 0) +cache/0/16/0/glyphs/220/offset = Vector2(1, -2) +cache/0/16/0/glyphs/220/size = Vector2(0, 0) +cache/0/16/0/glyphs/220/uv_rect = Rect2(62, 79, 8, 13) +cache/0/16/0/glyphs/220/texture_idx = 0 +cache/0/16/0/glyphs/252/advance = Vector2(8, 0) +cache/0/16/0/glyphs/252/offset = Vector2(1, 0) +cache/0/16/0/glyphs/252/size = Vector2(0, 0) +cache/0/16/0/glyphs/252/uv_rect = Rect2(92, 133, 6, 11) +cache/0/16/0/glyphs/252/texture_idx = 0 +cache/0/16/0/glyphs/92/advance = Vector2(5, 0) +cache/0/16/0/glyphs/92/offset = Vector2(-1, 1) +cache/0/16/0/glyphs/92/size = Vector2(0, 0) +cache/0/16/0/glyphs/92/uv_rect = Rect2(97, 80, 7, 10) +cache/0/16/0/glyphs/92/texture_idx = 0 +cache/0/16/0/glyphs/60/advance = Vector2(8, 0) +cache/0/16/0/glyphs/60/offset = Vector2(1, 3) +cache/0/16/0/glyphs/60/size = Vector2(0, 0) +cache/0/16/0/glyphs/60/uv_rect = Rect2(92, 153, 6, 7) +cache/0/16/0/glyphs/60/texture_idx = 0 +cache/0/16/0/glyphs/189/advance = Vector2(10, 0) +cache/0/16/0/glyphs/189/offset = Vector2(0, 1) +cache/0/16/0/glyphs/189/size = Vector2(0, 0) +cache/0/16/0/glyphs/189/uv_rect = Rect2(47, 20, 11, 10) +cache/0/16/0/glyphs/189/texture_idx = 0 +cache/0/16/0/glyphs/253/advance = Vector2(7, 0) +cache/0/16/0/glyphs/253/offset = Vector2(-1, 0) +cache/0/16/0/glyphs/253/size = Vector2(0, 0) +cache/0/16/0/glyphs/253/uv_rect = Rect2(28, 47, 9, 14) +cache/0/16/0/glyphs/253/texture_idx = 0 +cache/0/16/0/glyphs/221/advance = Vector2(7, 0) +cache/0/16/0/glyphs/221/offset = Vector2(-1, -2) +cache/0/16/0/glyphs/221/size = Vector2(0, 0) +cache/0/16/0/glyphs/221/uv_rect = Rect2(54, 48, 9, 13) +cache/0/16/0/glyphs/221/texture_idx = 0 +cache/0/16/0/glyphs/93/advance = Vector2(4, 0) +cache/0/16/0/glyphs/93/offset = Vector2(0, 1) +cache/0/16/0/glyphs/93/size = Vector2(0, 0) +cache/0/16/0/glyphs/93/uv_rect = Rect2(44, 226, 3, 12) +cache/0/16/0/glyphs/93/texture_idx = 0 +cache/0/16/0/glyphs/125/advance = Vector2(5, 0) +cache/0/16/0/glyphs/125/offset = Vector2(0, 1) +cache/0/16/0/glyphs/125/size = Vector2(0, 0) +cache/0/16/0/glyphs/125/uv_rect = Rect2(110, 196, 5, 12) +cache/0/16/0/glyphs/125/texture_idx = 0 +cache/0/16/0/glyphs/61/advance = Vector2(8, 0) +cache/0/16/0/glyphs/61/offset = Vector2(0, 4) +cache/0/16/0/glyphs/61/size = Vector2(0, 0) +cache/0/16/0/glyphs/61/uv_rect = Rect2(79, 112, 7, 5) +cache/0/16/0/glyphs/61/texture_idx = 0 +cache/0/16/0/glyphs/190/advance = Vector2(10, 0) +cache/0/16/0/glyphs/190/offset = Vector2(0, 1) +cache/0/16/0/glyphs/190/size = Vector2(0, 0) +cache/0/16/0/glyphs/190/uv_rect = Rect2(104, 19, 10, 10) +cache/0/16/0/glyphs/190/texture_idx = 0 +cache/0/16/0/glyphs/222/advance = Vector2(8, 0) +cache/0/16/0/glyphs/222/offset = Vector2(1, 1) +cache/0/16/0/glyphs/222/size = Vector2(0, 0) +cache/0/16/0/glyphs/222/uv_rect = Rect2(32, 165, 6, 10) +cache/0/16/0/glyphs/222/texture_idx = 0 +cache/0/16/0/glyphs/254/advance = Vector2(8, 0) +cache/0/16/0/glyphs/254/offset = Vector2(1, 0) +cache/0/16/0/glyphs/254/size = Vector2(0, 0) +cache/0/16/0/glyphs/254/uv_rect = Rect2(102, 119, 6, 14) +cache/0/16/0/glyphs/254/texture_idx = 0 +cache/0/16/0/glyphs/62/advance = Vector2(8, 0) +cache/0/16/0/glyphs/62/offset = Vector2(1, 3) +cache/0/16/0/glyphs/62/size = Vector2(0, 0) +cache/0/16/0/glyphs/62/uv_rect = Rect2(112, 158, 6, 7) +cache/0/16/0/glyphs/62/texture_idx = 0 +cache/0/16/0/glyphs/94/advance = Vector2(7, 0) +cache/0/16/0/glyphs/94/offset = Vector2(0, 1) +cache/0/16/0/glyphs/94/size = Vector2(0, 0) +cache/0/16/0/glyphs/94/uv_rect = Rect2(86, 80, 7, 6) +cache/0/16/0/glyphs/94/texture_idx = 0 +cache/0/16/0/glyphs/126/advance = Vector2(8, 0) +cache/0/16/0/glyphs/126/offset = Vector2(1, 5) +cache/0/16/0/glyphs/126/size = Vector2(0, 0) +cache/0/16/0/glyphs/126/uv_rect = Rect2(62, 158, 6, 3) +cache/0/16/0/glyphs/126/texture_idx = 0 +cache/0/16/0/glyphs/223/advance = Vector2(8, 0) +cache/0/16/0/glyphs/223/offset = Vector2(1, 0) +cache/0/16/0/glyphs/223/size = Vector2(0, 0) +cache/0/16/0/glyphs/223/uv_rect = Rect2(82, 135, 6, 11) +cache/0/16/0/glyphs/223/texture_idx = 0 +cache/0/16/0/glyphs/255/advance = Vector2(7, 0) +cache/0/16/0/glyphs/255/offset = Vector2(-1, 0) +cache/0/16/0/glyphs/255/size = Vector2(0, 0) +cache/0/16/0/glyphs/255/uv_rect = Rect2(41, 48, 9, 14) +cache/0/16/0/glyphs/255/texture_idx = 0 +cache/0/16/0/glyphs/191/advance = Vector2(6, 0) +cache/0/16/0/glyphs/191/offset = Vector2(0, 3) +cache/0/16/0/glyphs/191/size = Vector2(0, 0) +cache/0/16/0/glyphs/191/uv_rect = Rect2(94, 180, 5, 11) +cache/0/16/0/glyphs/191/texture_idx = 0 +cache/0/16/0/glyphs/63/advance = Vector2(6, 0) +cache/0/16/0/glyphs/63/offset = Vector2(0, 1) +cache/0/16/0/glyphs/63/size = Vector2(0, 0) +cache/0/16/0/glyphs/63/uv_rect = Rect2(74, 202, 5, 10) +cache/0/16/0/glyphs/63/texture_idx = 0 +cache/0/16/0/glyphs/95/advance = Vector2(6, 0) +cache/0/16/0/glyphs/95/offset = Vector2(0, 12) +cache/0/16/0/glyphs/95/size = Vector2(0, 0) +cache/0/16/0/glyphs/95/uv_rect = Rect2(92, 148, 6, 1) +cache/0/16/0/glyphs/95/texture_idx = 0 +cache/0/16/0/kerning_overrides/16/0 = Vector2(0, 0) + +[sub_resource type="Image" id="Image_5p1jv"] +data = { +"data": PackedByteArray("4ODg4ODg4OD//////////+Dg4ODg4ODg///////////g4ODg4ODg4P//////////4ODg4ODg4OD//////////+Dg4ODg4ODg///////////g4ODg4ODg4P//////////4ODg4ODg4OD//////////+Dg4ODg4ODg/////////////////////+Dg4ODg4ODg///////////g4ODg4ODg4P//////////4ODg4ODg4OD//////////+Dg4ODg4ODg///////////g4ODg4ODg4P//////////4ODg4ODg4OD//////////+Dg4ODg4ODg///////////g4ODg4ODg4A=="), +"format": "Lum8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="447"] +image = SubResource("Image_5p1jv") + +[sub_resource type="Image" id="Image_ehwy8"] +data = { +"data": PackedByteArray("AAQACgARABkAHwAiACQAJAAkACQAIgAfABkAEQAKAAQACgAVACUANAA/AEYARwBIAEgARwBGAD8ANAAlABUACgARACU/d1rvVv9W/1b/Vv9W/1b/Vv9W/1rvP3cAJQARABkANFnvSP9E/0P/Q/9D/0P/Q/9D/0T/SP9Z7wA0ABkAHwA/VP9D/0P/Q/9D/0P/Q/9D/0P/Q/9D/1T/AD8AHwAiAEZS/0L/Qv9C/0L/Qv9C/0L/Qv9C/0L/Uv8ARgAiACQAR1H/QP9A/0D/QP9A/0D/QP9A/0D/QP9R/wBHACQAJABIT/8//z//P/8//z//P/8//z//P/8//0//AEgAJAAkAEhN/z7/Pv8+/z7/Pv8+/z7/Pv8+/z7/Tf8ASAAkACQAR0z/Pf89/z3/Pf89/z3/Pf89/z3/Pf9M/wBHACQAIgBGSv87/zv/O/87/zv/O/87/zv/O/87/0r/AEYAIgAfAD9J/zr/Ov86/zr/Ov86/zr/Ov86/zr/Sf8APwAfABkANEvvPf85/zn/Of85/zn/Of85/zn/Pf9L7wA0ABkAEQAlNXdK70f/Rv9G/0b/Rv9G/0b/R/9K7TV3ACUAEQAKABUAJQA0AD8ARgBHAEgASABHAEYAPwA0ACUAFQAKAAQACgARABkAHwAiACQAJAAkACQAIgAfABkAEQAKAAQ="), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="53"] +image = SubResource("Image_ehwy8") + +[sub_resource type="StyleBoxTexture" id="54"] +content_margin_left = 6.0 +content_margin_top = 2.0 +content_margin_right = 6.0 +content_margin_bottom = 2.0 +texture = SubResource("53") +expand_margin_left = 2.0 +expand_margin_top = 2.0 +expand_margin_right = 2.0 +expand_margin_bottom = 2.0 +region_rect = Rect2(0, 0, 16, 16) + +[sub_resource type="Image" id="Image_vtygx"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEeMvw5HjL85R4y/aEeMv3pHjL97R4y/e0eMv3tHjL97R4y/ekeMv2hHjL85R4y/DgAAAAAAAAAAAAAAAAAAAABHjL86R4y/dEeMvxBHjL8IR4y/CEeMvwhHjL8IR4y/CEeMvwhHjL8QR4y/dEeMvzoAAAAAAAAAAAAAAAAAAAAAR4y/aUeMvw8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEeMvw9HjL9pAAAAAAAAAAAAAAAAAAAAAEeMv3tHjL8GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHjL8GR4y/ewAAAAAAAAAAAAAAAAAAAABHjL97R4y/CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAR4y/CEeMv3sAAAAAAAAAAAAAAAAAAAAAR4y/e0eMvwgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEeMvwhHjL97AAAAAAAAAAAAAAAAAAAAAEeMv3tHjL8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHjL8IR4y/ewAAAAAAAAAAAAAAAAAAAABHjL97R4y/CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAR4y/CEeMv3sAAAAAAAAAAAAAAAAAAAAAR4y/e0eMvwYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEeMvwZHjL97AAAAAAAAAAAAAAAAAAAAAEeMv2lHjL8PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHjL8OR4y/aQAAAAAAAAAAAAAAAAAAAABHjL86R4y/dUeMvw9HjL8IR4y/CEeMvwhHjL8IR4y/CEeMvwhHjL8RR4y/dEeMvzoAAAAAAAAAAAAAAAAAAAAAR4y/DkeMvzpHjL9oR4y/ekeMv3tHjL97R4y/e0eMv3tHjL96R4y/aEeMvzlHjL8OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="56"] +image = SubResource("Image_vtygx") + +[sub_resource type="StyleBoxTexture" id="57"] +content_margin_left = 6.0 +content_margin_top = 2.0 +content_margin_right = 6.0 +content_margin_bottom = 2.0 +texture = SubResource("56") +expand_margin_left = 2.0 +expand_margin_top = 2.0 +expand_margin_right = 2.0 +expand_margin_bottom = 2.0 +region_rect = Rect2(0, 0, 16, 16) + +[sub_resource type="Image" id="Image_oqbeh"] +data = { +"data": PackedByteArray("AAAABAAAAAoAAAARAAAAGQAAAB8AAAAiAAAAJAAAACQAAAAkAAAAJAAAACIAAAAfAAAAGQAAABEAAAAKAAAABAAAAAoAAAAVAAAAJQAAADQAAAA/AAAARgAAAEcAAABIAAAASAAAAEcAAABGAAAAPwAAADQAAAAlAAAAFQAAAAoAAAARAAAAJUJAS3dfWmzvW1do/1pWZ/9aVmf/WlZn/1pWZ/9aVmf/WlZn/1tXaP9fWmzvQkBLdwAAACUAAAARAAAAGQAAADRfWmvvTUpX/0lGUv9IRVH/SEVR/0hFUf9IRVH/SEVR/0hFUf9JRlL/TUpX/19aa+8AAAA0AAAAGQAAAB8AAAA/W1dm/0lGUv9IRVH/SEVR/0hFUf9IRVH/SEVR/0hFUf9IRVH/SEVR/0lGUv9bV2b/AAAAPwAAAB8AAAAiAAAARllVZP9HRFD/R0RQ/0dEUP9HRFD/R0RQ/0dEUP9HRFD/R0RQ/0dEUP9HRFD/WVVk/wAAAEYAAAAiAAAAJAAAAEdYVGT/RkNQ/0ZDUP9GQ1D/RkNQ/0ZDUP9GQ1D/RkNQ/0ZDUP9GQ1D/RkNQ/1hUZP8AAABHAAAAJAAAACQAAABIVlNj/0VCT/9FQk//RUJP/0VCT/9FQk//RUJP/0VCT/9FQk//RUJP/0VCT/9WU2P/AAAASAAAACQAAAAkAAAASFZTYv9FQk7/RUJO/0VCTv9FQk7/RUJO/0VCTv9FQk7/RUJO/0VCTv9FQk7/VlNi/wAAAEgAAAAkAAAAJAAAAEdVUWL/REFO/0RBTv9EQU7/REFO/0RBTv9EQU7/REFO/0RBTv9EQU7/REFO/1VRYv8AAABHAAAAJAAAACIAAABGVVFg/0RBTf9EQU3/REFN/0RBTf9EQU3/REFN/0RBTf9EQU3/REFN/0RBTf9VUWD/AAAARgAAACIAAAAfAAAAP1VRYP9EQU3/Q0BM/0NATP9DQEz/Q0BM/0NATP9DQEz/Q0BM/0NATP9EQU3/VVFg/wAAAD8AAAAfAAAAGQAAADRWU2TvR0NR/0M/Tf9CP0z/Qj9M/0I/TP9CP0z/Qj9M/0I/TP9DP03/R0NR/1dTZO8AAAA0AAAAGQAAABEAAAAlPjtGd1dTY+9TUF//U09e/1NPXv9TT17/U09e/1NPXv9TT17/U1Bf/1dTY+0+O0Z3AAAAJQAAABEAAAAKAAAAFQAAACUAAAA0AAAAPwAAAEYAAABHAAAASAAAAEgAAABHAAAARgAAAD8AAAA0AAAAJQAAABUAAAAKAAAABAAAAAoAAAARAAAAGQAAAB8AAAAiAAAAJAAAACQAAAAkAAAAJAAAACIAAAAfAAAAGQAAABEAAAAKAAAABA=="), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="59"] +image = SubResource("Image_oqbeh") + +[sub_resource type="StyleBoxTexture" id="60"] +content_margin_left = 6.0 +content_margin_top = 2.0 +content_margin_right = 6.0 +content_margin_bottom = 2.0 +texture = SubResource("59") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +expand_margin_left = 2.0 +expand_margin_top = 2.0 +expand_margin_right = 2.0 +expand_margin_bottom = 2.0 +region_rect = Rect2(0, 0, 16, 16) + +[sub_resource type="Image" id="Image_270th"] +data = { +"data": PackedByteArray("AAAABAAAAAoAAAARAAAAGQAAAB8AAAAiAAAAJAAAACQAAAAkAAAAJAAAACIAAAAfAAAAGQAAABEAAAAKAAAABAAAAAoAAAAVAAAAJQAAADQAAAA/AAAARgAAAEcAAABIAAAASAAAAEcAAABGAAAAPwAAADQAAAAlAAAAFQAAAAoAAAARAAAAJTw6RHdWU2HvUlBd/1FPXf9RT13/UU9d/1FPXf9RT13/UU9d/1JQXf9WU2HvPDpEdwAAACUAAAARAAAAGQAAADRWUmDvRkJO/0I+Sv9BPkn/QT5J/0E+Sf9BPkn/QT5J/0E+Sf9CPkr/RkJO/1ZSYO8AAAA0AAAAGQAAAB8AAAA/UU5b/0E+Sf9APkj/QD5I/0A+SP9APkj/QD5I/0A+SP9APkj/QD5I/0E+Sf9RTlv/AAAAPwAAAB8AAAAiAAAARk9MWf8/PUf/Pz1H/z89R/8/PUf/Pz1H/z89R/8/PUf/Pz1H/z89R/8/PUf/T0xZ/wAAAEYAAAAiAAAAJAAAAEdOSlj/PjtG/z47Rv8+O0b/PjtG/z47Rv8+O0b/PjtG/z47Rv8+O0b/PjtG/05KWP8AAABHAAAAJAAAACQAAABIS0lV/zw6RP88OkT/PDpE/zw6RP88OkT/PDpE/zw6RP88OkT/PDpE/zw6RP9LSVX/AAAASAAAACQAAAAkAAAASEpHVP87OUP/OzlD/zs5Q/87OUP/OzlD/zs5Q/87OUP/OzlD/zs5Q/87OUP/SkdU/wAAAEgAAAAkAAAAJAAAAEdJRlP/OjhC/zo4Qv86OEL/OjhC/zo4Qv86OEL/OjhC/zo4Qv86OEL/OjhC/0lGU/8AAABHAAAAJAAAACIAAABGR0VQ/zk3QP85N0D/OTdA/zk3QP85N0D/OTdA/zk3QP85N0D/OTdA/zk3QP9HRVD/AAAARgAAACIAAAAfAAAAP0dDUP84NT//ODU//zg1P/84NT//ODU//zg1P/84NT//ODU//zg1P/84NT//R0NQ/wAAAD8AAAAfAAAAGQAAADRHRFLvOjhC/zY0Pv82ND7/NjQ+/zY0Pv82ND7/NjQ+/zY0Pv82ND7/OjhC/0dEUu8AAAA0AAAAGQAAABEAAAAlMzE5d0dEUO9EQk3/REFM/0RBTP9EQUz/REFM/0RBTP9EQUz/REJN/0dEUe0zMTl3AAAAJQAAABEAAAAKAAAAFQAAACUAAAA0AAAAPwAAAEYAAABHAAAASAAAAEgAAABHAAAARgAAAD8AAAA0AAAAJQAAABUAAAAKAAAABAAAAAoAAAARAAAAGQAAAB8AAAAiAAAAJAAAACQAAAAkAAAAJAAAACIAAAAfAAAAGQAAABEAAAAKAAAABA=="), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="62"] +image = SubResource("Image_270th") + +[sub_resource type="StyleBoxTexture" id="63"] +content_margin_left = 6.0 +content_margin_top = 3.0 +content_margin_right = 6.0 +content_margin_bottom = 3.0 +texture = SubResource("62") +expand_margin_left = 2.0 +expand_margin_top = 2.0 +expand_margin_right = 2.0 +expand_margin_bottom = 2.0 +region_rect = Rect2(0, 0, 16, 16) + +[sub_resource type="Image" id="Image_48aqh"] +data = { +"data": PackedByteArray("AAAABAAAAAoAAAARAAAAGQAAAB8AAAAiAAAAJAAAACQAAAAkAAAAJAAAACIAAAAfAAAAGQAAABEAAAAKAAAABAAAAAsAAAAWAAAAJwAAADYAAABBAAAASQAAAEoAAABLAAAASwAAAEoAAABJAAAAQQAAADYAAAAnAAAAFgAAAAsAAAATAAAAKTEvN4BGQ0/xQ0BM/0JAS/9CQEv/QkBL/0JAS/9CQEv/QkBL/0NATP9GQ0/xMS83fwAAACkAAAATAAAAHgAAAD1HRFDyOjhB/wsLDP8LCgz/CwoM/wsKDP8LCgz/CwsM/wsLDP8LCwz/OjhB/0dEUPIAAAA9AAAAHgAAACcAAABNREJO/w8OEf8PDhH/Dw4R/w8OEf8PDhH/Dw4R/w8OEf8PDhH/Dw4R/w8OEf9EQk7/AAAATQAAACcAAAAsAAAAWEZCT/8UExb/ExIW/xMSFv8UExb/ExIW/xQTFv8UExb/FBMW/xQTFv8TEhb/RkJP/wAAAFgAAAAsAAAAMgAAAF1HRVD/GBcb/xgXG/8YFxv/GBcb/xgXG/8YFxv/GBcb/xkYHP8YFxv/GBcb/0dFUP8AAABdAAAAMgAAADMAAABjSUZT/x0cIf8dHCH/HRwh/x0cIf8dHCH/HRwh/x0cIf8dHCH/HRwh/x0cIf9JRlP/AAAAYwAAADMAAAA2AAAAZkpHVP8iISf/IiEn/yIhJ/8iISf/IiEn/yIhJ/8iISf/IiEn/yIhJ/8iISf/SkdU/wAAAGYAAAA2AAAAOQAAAGlLSVX/JyYt/ycmLf8nJi3/JyYt/ycmLf8nJi3/JyYt/ygmLf8nJi3/KCYt/0tJVf8AAABpAAAAOQAAADgAAABsTkpY/y0rM/8tKzP/LSsz/y0rM/8tKzP/LSsz/y0rM/8tKzP/LSsz/y0rM/9OSlj/AAAAbAAAADgAAAA1AAAAZVBNWv8zMTr/MzE5/zMxOf8zMTn/MzE5/zMxOf8zMTn/MzE5/zMxOf8zMTr/UE1a/wAAAGUAAAA1AAAALQAAAFlVUl/8RUJN/zk3QP84N0D/OTdA/zg3QP84N0D/ODdA/zg3QP86N0H/RUJN/1VSYPwAAABZAAAALQAAACAAAABEPTpFtFZSYP1STlz/UU5b/1FOW/9RTlv/UU5b/1FOW/9RTlv/Uk5c/1ZSYP09OkW0AAAARAAAACAAAAAUAAAAKAAAAEUAAABdAAAAbgAAAHkAAAB6AAAAfAAAAHwAAAB6AAAAeQAAAG4AAABdAAAARQAAACgAAAAUAAAACAAAABQAAAAhAAAAMAAAADoAAAA/AAAAQwAAAEMAAABDAAAAQwAAAD8AAAA6AAAAMAAAACEAAAAUAAAACA=="), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="65"] +image = SubResource("Image_48aqh") + +[sub_resource type="StyleBoxTexture" id="66"] +content_margin_left = 6.0 +content_margin_top = 3.0 +content_margin_right = 6.0 +content_margin_bottom = 3.0 +texture = SubResource("65") +expand_margin_left = 2.0 +expand_margin_top = 2.0 +expand_margin_right = 2.0 +expand_margin_bottom = 2.0 +region_rect = Rect2(0, 0, 16, 16) + +[sub_resource type="Image" id="Image_l26ap"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/wAAAADf39+IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAODg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P8AAAAA4ODg/9/f34gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADg4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/AAAAAODg4P/g4OD/39/fiAAAAAAAAAAAAAAAAAAAAAAAAAAA4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/wAAAADg4OD/4ODg/+Dg4P/f39+IAAAAAAAAAAAAAAAAAAAAAODg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADg4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P8AAAAAAAAAAAAAAAAAAAAA4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/AAAAAAAAAAAAAAAAAAAAAODg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/wAAAAAAAAAAAAAAAAAAAADg4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P8AAAAAAAAAAAAAAAAAAAAA4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/AAAAAAAAAAAAAAAAAAAAAODg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/wAAAAAAAAAAAAAAAAAAAADg4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P8AAAAAAAAAAAAAAAAAAAAA4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/AAAAAAAAAAAAAAAAAAAAAODg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="425"] +image = SubResource("Image_l26ap") + +[sub_resource type="Image" id="Image_xkxgd"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4MXg/+D/4P/g/+D/4P/gwwAAAAAAAAAAAAAAAAAAAADg/+D/4P/g/+D/4P/g/+D/AAAAAAAAAAAAAAAAAAAAAOD/4P/g/+D/4P/g/+D/4P/hPAAAAAAAAAAAAAAAAAAA4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/gwwAAAADg/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/AAAAAOD/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P8AAAAA4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/wAAAADg/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/AAAAAOD/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P8AAAAA4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/wAAAADg/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/AAAAAODD4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/38IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="427"] +image = SubResource("Image_xkxgd") + +[sub_resource type="Image" id="Image_yc2ij"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3hfgz+DO3hcAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3Bbh0uD+4P7g1+AZAAAAAAAAAAAAAAAAAAAAAAAA3Bbh0uD+4P7g/uD+4NfgGQAAAAAAAAAAAAAAAAAA3hfg1OD+4NHg/uD94dLg/uDU3hcAAAAAAAAAAAAAAADgzeD+4NDcFuD+4P3bFeDR4P7gzAAAAAAAAAAAAAAAAOC+4MXZFP8B4P7g/QAA2xXhyeDFAAAAAAAAAAAAAAAAAAAAAAAA/wHg/uD9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/AeD+4P0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4MThwQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="429"] +image = SubResource("Image_yc2ij") + +[sub_resource type="Image" id="Image_8t0ya"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADbB99u4Mfg8+Dz4MfebdsHAAAAAAAAAAAAAAAAAADjG+DP4P7g/uD+4P7g/uD+4M7jGwAAAAAAAAAAAADbB+DP4P7g4eBT2A3YDd9Q4Nfg/uDO2wcAAAAAAAAAAN9u4P7g4eMSAAAAAAAAAADhEeDh4P7ebAAAAAAAAAAA4Mjg/uBTAAAAAAAAAAAAAAAA3lXg/uDGAAAAAAAAAADg8uD+2A0AAAAAAAAAAAAAAADbDuD+4PEAAAAA4J7g/uD+4P7g/uCeAAAAAAAAAAAAAN0P4P7g8QAAAADoC+DU4P7g/uDU6AsAAAAAAAAAAAAA3lbg/uDGAAAAAAAA4Svg8+Dz4SsAAAAAAAAAAAAA5BPh4uD+3mwAAAAAAAAAAN9g32AAAAAAAAAAANsO3lbh4uD+4M7VBgAAAAAAAAAAAAAAAAAAAAAAAAAA4P7g/uD+4M7jGwAAAAAAAAAAAAAAAAAAAAAAAAAAAADg8uDF3mzVBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="431"] +image = SubResource("Image_8t0ya") + +[sub_resource type="Image" id="Image_y414r"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA39/fCN7e3mzg4ODF4ODg9ODg4PPg4ODF3t7ebePj4wkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3t7eLuDg4Njg4OD+4ODg/uDg4P7g4OD+4ODg/uDg4P7h4eHa4ODgMgAAAAAAAAAAAAAAAAAAAAAAAAAA3t7eL+Dg4PDg4OD+4ODg4eDg4FPY2NgN2NjYDd/f31Dg4ODX4ODg/uDg4PLh4eEzAAAAAAAAAAAAAAAA4+PjCeDg4Nzg4OD+4ODg4ePj4xIAAAAAAAAAAAAAAAAAAAAA4eHhEeDg4OHg4OD+4ODg3+bm5goAAAAAAAAAAN/f33fg4OD+4ODg/uDg4FMAAAAA4ODgS+Dg4OPh4eHi4ODgSQAAAADe3t5V4ODg/uDg4P7f3995AAAAAAAAAADh4eHa4ODg/uDg4P7Y2NgNAAAAAOHh4eLg4OD+4ODg/uDg4OEAAAAA29vbDuDg4P7g4OD+4eHh2gAAAAAAAAAA4ODg2+Dg4P7g4OD+2NjYDQAAAADh4eHi4ODg/uDg4P7g4ODhAAAAAN3d3Q/g4OD+4ODg/uDg4NsAAAAAAAAAAN7e3nzg4OD+4ODg/t/f31AAAAAA4ODgSeHh4eLg4ODh39/fSAAAAADe3t5W4ODg/uDg4P7g4OB7AAAAAAAAAADV1dUM4ODg4+Dg4P7g4ODX4eHhEQAAAAAAAAAAAAAAAAAAAADk5OQT4eHh4uDg4P7g4ODh1dXVDAAAAAAAAAAAAAAAAN/f3zjg4OD04ODg/uDg4OHe3t5V29vbDtvb2w7e3t5W4eHh4uDg4P7g4OD03t7eNgAAAAAAAAAAAAAAAAAAAAAAAAAA39/fN+Dg4N7g4OD+4ODg/uDg4P7g4OD+4ODg/uDg4P7g4ODd3t7eNgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADm5uYK39/fcODg4MXg4ODz4ODg8+Dg4MXf399u5ubmCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="433"] +image = SubResource("Image_y414r") + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_g6bu4"] +texture = ExtResource("1_ak8qr") +texture_margin_left = 7.0 +texture_margin_top = 7.0 +texture_margin_right = 7.0 +texture_margin_bottom = 7.0 +axis_stretch_horizontal = 1 +axis_stretch_vertical = 1 +region_rect = Rect2(112, 64, 16, 16) + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_5b0pw"] +texture = ExtResource("1_ak8qr") +texture_margin_left = 7.0 +texture_margin_top = 7.0 +texture_margin_right = 7.0 +texture_margin_bottom = 7.0 +axis_stretch_horizontal = 1 +axis_stretch_vertical = 1 +region_rect = Rect2(112, 80, 16, 16) + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_bfd3g"] +texture = ExtResource("1_ak8qr") +texture_margin_left = 7.0 +texture_margin_top = 7.0 +texture_margin_right = 7.0 +texture_margin_bottom = 7.0 +axis_stretch_horizontal = 1 +axis_stretch_vertical = 1 +region_rect = Rect2(112, 80, 16, 16) + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_lsn07"] +content_margin_left = 0.0 +content_margin_top = 7.0 +content_margin_right = 0.0 +content_margin_bottom = 7.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 3.0 +texture_margin_top = 3.0 +texture_margin_right = 3.0 +texture_margin_bottom = 3.0 +axis_stretch_horizontal = 1 +axis_stretch_vertical = 1 +region_rect = Rect2(32, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_8681i"] +content_margin_left = 0.0 +content_margin_top = 7.0 +content_margin_right = 0.0 +content_margin_bottom = 7.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 3.0 +texture_margin_top = 3.0 +texture_margin_right = 3.0 +texture_margin_bottom = 3.0 +axis_stretch_horizontal = 1 +axis_stretch_vertical = 1 +region_rect = Rect2(16, 40, 8, 8) + +[sub_resource type="StyleBoxFlat" id="576"] +draw_center = false +border_width_top = 1 +border_color = Color(0.2, 0.2, 0.2, 1) +anti_aliasing = false + +[sub_resource type="StyleBoxTexture" id="461"] +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +axis_stretch_vertical = 2 +region_rect = Rect2(16, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="462"] +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +axis_stretch_vertical = 2 +region_rect = Rect2(24, 40, 8, 8) + +[sub_resource type="StyleBoxFlat" id="476"] +bg_color = Color(0.359375, 0.359375, 0.359375, 1) +corner_detail = 1 +anti_aliasing = false + +[sub_resource type="StyleBoxFlat" id="490"] +bg_color = Color(0.490196, 0.490196, 0.490196, 1) +corner_detail = 1 +anti_aliasing = false + +[sub_resource type="Image" id="Image_cagoq"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN9Y3BYAAAAAAAAAAAAAAADcFt9YAAAAAAAAAAAAAN9Y4P7g09wWAAAAAAAAAADcFuDT4P7fWAAAAAAAAAAA2xXf0uD/4NfgGQAAAADbFd/S4P/g198YAAAAAAAAAAAAANsV39Lg/+DX4BnbFd/S4P/g198YAAAAAAAAAAAAAAAAAADbFd/S4P/h2uDW4P/g198YAAAAAAAAAAAAAAAAAAAAAAAA2xXf1uD/4P/g298YAAAAAAAAAAAAAAAAAAAAAAAAAADbFd/W4P/g/+Db4BkAAAAAAAAAAAAAAAAAAAAAAADbFd/S4P/f2uDW4P/g1+AZAAAAAAAAAAAAAAAAAADbFd/S4P/g198Y2xXf0uD/4NfgGQAAAAAAAAAAAADbFd/S4P/g198YAAAAANsV39Lg/+DX4BkAAAAAAAAAAN9Y4P7g09wWAAAAAAAAAADcFuDT4P7fWAAAAAAAAAAAAADfWNwWAAAAAAAAAAAAAAAA3BbfWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="), +"format": "LumAlpha8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="49"] +image = SubResource("Image_cagoq") + +[sub_resource type="StyleBoxTexture" id="127"] +content_margin_left = 4.0 +content_margin_top = 2.0 +content_margin_right = 4.0 +content_margin_bottom = 2.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 1.0 +texture_margin_top = 1.0 +texture_margin_right = 1.0 +texture_margin_bottom = 1.0 +region_rect = Rect2(8, 24, 8, 8) + +[sub_resource type="StyleBoxTexture" id="128"] +content_margin_left = 4.0 +content_margin_top = 4.0 +content_margin_right = 4.0 +content_margin_bottom = 4.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +region_rect = Rect2(0, 24, 8, 8) + +[sub_resource type="StyleBoxTexture" id="51"] +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +region_rect = Rect2(0, 24, 8, 8) + +[sub_resource type="StyleBoxFlat" id="540"] +draw_center = false +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 +corner_radius_top_left = 2 +corner_radius_top_right = 2 +corner_radius_bottom_right = 2 +corner_radius_bottom_left = 2 +anti_aliasing = false + +[sub_resource type="AtlasTexture" id="144"] +atlas = ExtResource("3_0m6kw") +region = Rect2(104, 48, 8, 8) + +[sub_resource type="StyleBoxTexture" id="71"] +content_margin_left = 4.0 +content_margin_top = 3.0 +content_margin_right = 8.0 +content_margin_bottom = 3.0 +texture = ExtResource("1_ak8qr") +expand_margin_left = 1.0 +expand_margin_top = 1.0 +expand_margin_right = 1.0 +expand_margin_bottom = 1.0 +region_rect = Rect2(64, 40, 28, 8) + +[sub_resource type="StyleBoxTexture" id="72"] +content_margin_left = 4.0 +content_margin_top = 3.0 +content_margin_right = 8.0 +content_margin_bottom = 3.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 22.0 +texture_margin_bottom = 2.0 +expand_margin_left = 1.0 +expand_margin_top = 1.0 +expand_margin_right = 1.0 +expand_margin_bottom = 1.0 +region_rect = Rect2(64, 40, 28, 8) + +[sub_resource type="StyleBoxTexture" id="160"] +content_margin_left = 4.0 +content_margin_top = 3.0 +content_margin_right = 8.0 +content_margin_bottom = 3.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 22.0 +texture_margin_bottom = 2.0 +expand_margin_left = 1.0 +expand_margin_top = 1.0 +expand_margin_right = 1.0 +expand_margin_bottom = 1.0 +region_rect = Rect2(64, 48, 28, 8) + +[sub_resource type="StyleBoxTexture" id="78"] +content_margin_left = 4.0 +content_margin_top = 3.0 +content_margin_right = 8.0 +content_margin_bottom = 3.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 22.0 +texture_margin_bottom = 2.0 +expand_margin_left = 1.0 +expand_margin_top = 1.0 +expand_margin_right = 1.0 +expand_margin_bottom = 1.0 +region_rect = Rect2(64, 40, 28, 8) + +[sub_resource type="StyleBoxTexture" id="176"] +content_margin_left = 4.0 +content_margin_top = 3.0 +content_margin_right = 8.0 +content_margin_bottom = 3.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 22.0 +texture_margin_bottom = 2.0 +expand_margin_left = 1.0 +expand_margin_top = 1.0 +expand_margin_right = 1.0 +expand_margin_bottom = 1.0 +region_rect = Rect2(64, 56, 28, 8) + +[sub_resource type="StyleBoxTexture" id="1"] +texture = ExtResource("1_ak8qr") +texture_margin_left = 6.0 +texture_margin_top = 6.0 +texture_margin_right = 6.0 +texture_margin_bottom = 6.0 +region_rect = Rect2(0, 8, 16, 16) + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_r7viw"] +texture = ExtResource("1_ak8qr") +texture_margin_left = 6.0 +texture_margin_top = 6.0 +texture_margin_right = 6.0 +texture_margin_bottom = 6.0 +region_rect = Rect2(0, 8, 16, 16) + +[sub_resource type="FontFile" id="2"] +fallbacks = Array[Font]([ExtResource("2_yegrt")]) +cache/0/16/0/ascent = 0.0 +cache/0/16/0/descent = 0.0 +cache/0/16/0/underline_position = 0.0 +cache/0/16/0/underline_thickness = 0.0 +cache/0/16/0/scale = 1.0 +cache/0/16/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/16/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/38/0/ascent = 0.0 +cache/0/38/0/descent = 0.0 +cache/0/38/0/underline_position = 0.0 +cache/0/38/0/underline_thickness = 0.0 +cache/0/38/0/scale = 1.0 +cache/0/38/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/38/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/37/0/ascent = 0.0 +cache/0/37/0/descent = 0.0 +cache/0/37/0/underline_position = 0.0 +cache/0/37/0/underline_thickness = 0.0 +cache/0/37/0/scale = 1.0 +cache/0/37/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/37/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/36/0/ascent = 0.0 +cache/0/36/0/descent = 0.0 +cache/0/36/0/underline_position = 0.0 +cache/0/36/0/underline_thickness = 0.0 +cache/0/36/0/scale = 1.0 +cache/0/36/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/36/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/35/0/ascent = 0.0 +cache/0/35/0/descent = 0.0 +cache/0/35/0/underline_position = 0.0 +cache/0/35/0/underline_thickness = 0.0 +cache/0/35/0/scale = 1.0 +cache/0/35/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/35/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/34/0/ascent = 0.0 +cache/0/34/0/descent = 0.0 +cache/0/34/0/underline_position = 0.0 +cache/0/34/0/underline_thickness = 0.0 +cache/0/34/0/scale = 1.0 +cache/0/34/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/34/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/33/0/ascent = 0.0 +cache/0/33/0/descent = 0.0 +cache/0/33/0/underline_position = 0.0 +cache/0/33/0/underline_thickness = 0.0 +cache/0/33/0/scale = 1.0 +cache/0/33/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/33/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/32/0/ascent = 0.0 +cache/0/32/0/descent = 0.0 +cache/0/32/0/underline_position = 0.0 +cache/0/32/0/underline_thickness = 0.0 +cache/0/32/0/scale = 1.0 +cache/0/32/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/32/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/31/0/ascent = 0.0 +cache/0/31/0/descent = 0.0 +cache/0/31/0/underline_position = 0.0 +cache/0/31/0/underline_thickness = 0.0 +cache/0/31/0/scale = 1.0 +cache/0/31/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/31/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/30/0/ascent = 0.0 +cache/0/30/0/descent = 0.0 +cache/0/30/0/underline_position = 0.0 +cache/0/30/0/underline_thickness = 0.0 +cache/0/30/0/scale = 1.0 +cache/0/30/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/30/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/29/0/ascent = 0.0 +cache/0/29/0/descent = 0.0 +cache/0/29/0/underline_position = 0.0 +cache/0/29/0/underline_thickness = 0.0 +cache/0/29/0/scale = 1.0 +cache/0/29/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/29/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/28/0/ascent = 0.0 +cache/0/28/0/descent = 0.0 +cache/0/28/0/underline_position = 0.0 +cache/0/28/0/underline_thickness = 0.0 +cache/0/28/0/scale = 1.0 +cache/0/28/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/28/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/27/0/ascent = 0.0 +cache/0/27/0/descent = 0.0 +cache/0/27/0/underline_position = 0.0 +cache/0/27/0/underline_thickness = 0.0 +cache/0/27/0/scale = 1.0 +cache/0/27/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/27/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/26/0/ascent = 0.0 +cache/0/26/0/descent = 0.0 +cache/0/26/0/underline_position = 0.0 +cache/0/26/0/underline_thickness = 0.0 +cache/0/26/0/scale = 1.0 +cache/0/26/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/26/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/25/0/ascent = 0.0 +cache/0/25/0/descent = 0.0 +cache/0/25/0/underline_position = 0.0 +cache/0/25/0/underline_thickness = 0.0 +cache/0/25/0/scale = 1.0 +cache/0/25/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/25/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/24/0/ascent = 0.0 +cache/0/24/0/descent = 0.0 +cache/0/24/0/underline_position = 0.0 +cache/0/24/0/underline_thickness = 0.0 +cache/0/24/0/scale = 1.0 +cache/0/24/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/24/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/23/0/ascent = 0.0 +cache/0/23/0/descent = 0.0 +cache/0/23/0/underline_position = 0.0 +cache/0/23/0/underline_thickness = 0.0 +cache/0/23/0/scale = 1.0 +cache/0/23/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/23/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/22/0/ascent = 0.0 +cache/0/22/0/descent = 0.0 +cache/0/22/0/underline_position = 0.0 +cache/0/22/0/underline_thickness = 0.0 +cache/0/22/0/scale = 1.0 +cache/0/22/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/22/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/21/0/ascent = 0.0 +cache/0/21/0/descent = 0.0 +cache/0/21/0/underline_position = 0.0 +cache/0/21/0/underline_thickness = 0.0 +cache/0/21/0/scale = 1.0 +cache/0/21/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/21/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/20/0/ascent = 0.0 +cache/0/20/0/descent = 0.0 +cache/0/20/0/underline_position = 0.0 +cache/0/20/0/underline_thickness = 0.0 +cache/0/20/0/scale = 1.0 +cache/0/20/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/20/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/19/0/ascent = 0.0 +cache/0/19/0/descent = 0.0 +cache/0/19/0/underline_position = 0.0 +cache/0/19/0/underline_thickness = 0.0 +cache/0/19/0/scale = 1.0 +cache/0/19/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/19/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/18/0/ascent = 0.0 +cache/0/18/0/descent = 0.0 +cache/0/18/0/underline_position = 0.0 +cache/0/18/0/underline_thickness = 0.0 +cache/0/18/0/scale = 1.0 +cache/0/18/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/18/0/kerning_overrides/17/0 = Vector2(0, 0) +cache/0/17/0/ascent = 0.0 +cache/0/17/0/descent = 0.0 +cache/0/17/0/underline_position = 0.0 +cache/0/17/0/underline_thickness = 0.0 +cache/0/17/0/scale = 1.0 +cache/0/17/0/kerning_overrides/16/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/38/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/37/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/36/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/35/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/34/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/33/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/32/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/31/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/30/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/29/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/28/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/27/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/26/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/25/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/24/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/23/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/22/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/21/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/20/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/19/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/18/0 = Vector2(0, 0) +cache/0/17/0/kerning_overrides/17/0 = Vector2(0, 0) + +[sub_resource type="AtlasTexture" id="230"] +atlas = ExtResource("1_ak8qr") +region = Rect2(72, 80, 8, 8) + +[sub_resource type="AtlasTexture" id="218"] +atlas = ExtResource("1_ak8qr") +region = Rect2(72, 72, 8, 8) + +[sub_resource type="AtlasTexture" id="219"] +atlas = ExtResource("1_ak8qr") +region = Rect2(64, 72, 8, 8) + +[sub_resource type="AtlasTexture" id="231"] +atlas = ExtResource("3_0m6kw") +region = Rect2(40, 48, 8, 8) + +[sub_resource type="AtlasTexture" id="232"] +atlas = ExtResource("1_ak8qr") +region = Rect2(64, 80, 8, 8) + +[sub_resource type="StyleBoxTexture" id="243"] +content_margin_left = 4.0 +content_margin_top = 4.0 +content_margin_right = 4.0 +content_margin_bottom = 4.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +region_rect = Rect2(72, 64, 8, 8) + +[sub_resource type="Image" id="Image_d4bp8"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAc5uqs87c4bPO3OGzztzhs87c4bPO3OGzztzhs3ObqrMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), +"format": "RGBA8", +"height": 8, +"mipmaps": false, +"width": 8 +} + +[sub_resource type="ImageTexture" id="199"] +image = SubResource("Image_d4bp8") + +[sub_resource type="StyleBoxTexture" id="200"] +texture = SubResource("199") +texture_margin_left = 2.0 +texture_margin_right = 2.0 +region_rect = Rect2(0, 0, 8, 8) + +[sub_resource type="StyleBoxTexture" id="201"] +texture = SubResource("199") +region_rect = Rect2(0, 0, 8, 8) + +[sub_resource type="StyleBoxTexture" id="202"] +content_margin_left = 4.0 +content_margin_top = 4.0 +content_margin_right = 4.0 +content_margin_bottom = 4.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +region_rect = Rect2(64, 64, 8, 8) + +[sub_resource type="Image" id="Image_2ut3u"] +data = { +"data": PackedByteArray("/wD//wD//wD//wD/Z3qFZnqGaHuGaHuGaHuGaHuGZnqGZ3qF/wD//wD//wD//wD//wD//wD/Z3qFZnqGV1FRTEJATUNBTUNBTUNBTUNBTEJAV1FRZnqGZ3qF/wD//wD//wD/Z3qFVkxLTEJATURBTUNBTkRCTkRCTkRCTkRCTUNBTURBTEJAV1FRZ3qF/wD//wD/ZnqGTEJATEJATUNBT0VDT0VDT0VDT0VDT0VDT0VDTUNBTEJATEJAZ3uH/wD/Z3qFV1FRTEJATEJATkRCT0RDUEVEUkZEUkZEUUZFT0RDTkRCTEJATEJAV1FRZ3qFZnqGS0A/TEJATUNBT0RDUUdFUkhGU0hHU0hHUkhGUUdFT0RDTkRCTEJAS0E/Z3uHZ3uHS0E/TEJATUNBT0RDUUdFVElGVUpHVUlHVUpHUkhGUEVETUNBTEJAS0E/aHyIZ3uHSkA+S0E/TUNBT0VDUUdFVElGVUtJVk1LVElGU0lHUEZETkRCTEJAS0E/aHyIZ3uHSkE+S0E/TEJAT0VDUUdFVElGVUtJVUtJVUpHUkhGUEZETkRCTEJASkA+aHyIZ3uHSD48S0I/S0E/TkRCUEVEUUZFU0lHU0lHUkhGUEVETkRCTEJAS0E/ST89aHyIZ3uHRj08SD48SkA+TEJATkRCT0RDUEVEUEVEUEZET0VDTEJAS0A/ST89Rz07Z3uHZ3qFV1FRRz47SUA9S0E/TEJATUNBTkRCTkRCTUNBTEJAS0E/ST89Rz07V1FRaHuG/wD/Z3uHRj08Rz07SD48ST89SkA+S0E/S0E/S0A/SkA+SD48Rz47Rz07Z3uH/wD//wD/Z3qFV1FRRTw7Rz07Rz07Rz07SD48SD48Rz07Rz07Rz47Rj08V1FRZnqG/wD//wD//wD/Z3qFZ3uHV1FRRjw6Rjw6Rz47Rz47Rjw6Rjw6V1FRZ3uHaHuG/wD//wD//wD//wD//wD//wD/ZnqGZ3uHaHyIaHyIaHyIaHyIZ3uHaHuG/wD//wD//wD//wD/"), +"format": "RGB8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="204"] +image = SubResource("Image_2ut3u") + +[sub_resource type="StyleBoxTexture" id="205"] +texture = SubResource("204") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +region_rect = Rect2(0, 0, 16, 16) + +[sub_resource type="StyleBoxTexture" id="206"] +texture = SubResource("199") +texture_margin_left = 2.0 +texture_margin_right = 2.0 +region_rect = Rect2(0, 0, 8, 8) + +[sub_resource type="StyleBoxTexture" id="507"] +texture = ExtResource("1_ak8qr") +texture_margin_left = 3.0 +texture_margin_top = 3.0 +texture_margin_right = 3.0 +texture_margin_bottom = 3.0 +axis_stretch_horizontal = 2 +axis_stretch_vertical = 2 +region_rect = Rect2(8, 48, 8, 8) + +[sub_resource type="StyleBoxTexture" id="508"] +content_margin_left = 2.0 +content_margin_top = 1.0 +content_margin_right = 2.0 +content_margin_bottom = 1.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 3.0 +texture_margin_top = 3.0 +texture_margin_right = 3.0 +texture_margin_bottom = 3.0 +axis_stretch_horizontal = 2 +axis_stretch_vertical = 2 +region_rect = Rect2(24, 24, 8, 8) + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_2fae3"] +content_margin_left = 2.0 +content_margin_top = 1.0 +content_margin_right = 2.0 +content_margin_bottom = 1.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 3.0 +texture_margin_top = 3.0 +texture_margin_right = 3.0 +texture_margin_bottom = 3.0 +axis_stretch_horizontal = 2 +axis_stretch_vertical = 2 +region_rect = Rect2(24, 24, 8, 8) + +[sub_resource type="AtlasTexture" id="319"] +atlas = ExtResource("3_0m6kw") +region = Rect2(111, 48, 10, 8) + +[sub_resource type="StyleBoxTexture" id="420"] +texture = ExtResource("1_ak8qr") +texture_margin_left = 7.0 +texture_margin_top = 7.0 +texture_margin_right = 7.0 +texture_margin_bottom = 7.0 +axis_stretch_horizontal = 1 +axis_stretch_vertical = 1 +region_rect = Rect2(0, 8, 16, 16) + +[sub_resource type="StyleBoxTexture" id="525"] +content_margin_left = 6.0 +content_margin_top = 1.0 +content_margin_right = 6.0 +content_margin_bottom = 0.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 4.0 +texture_margin_top = 4.0 +texture_margin_right = 4.0 +texture_margin_bottom = 4.0 +axis_stretch_horizontal = 2 +axis_stretch_vertical = 2 +region_rect = Rect2(80, 0, 16, 8) + +[sub_resource type="StyleBoxTexture" id="422"] +content_margin_left = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 1.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 5.0 +texture_margin_top = 5.0 +texture_margin_right = 5.0 +texture_margin_bottom = 5.0 +expand_margin_bottom = 1.0 +axis_stretch_horizontal = 2 +axis_stretch_vertical = 2 +region_rect = Rect2(80, 8, 16, 8) +modulate_color = Color(0.654902, 0.654902, 0.654902, 1) + +[sub_resource type="StyleBoxTexture" id="423"] +content_margin_left = 6.0 +content_margin_top = 0.0 +content_margin_right = 6.0 +content_margin_bottom = 2.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 5.0 +texture_margin_top = 5.0 +texture_margin_right = 5.0 +texture_margin_bottom = 5.0 +expand_margin_top = 2.0 +expand_margin_bottom = 1.0 +axis_stretch_horizontal = 2 +axis_stretch_vertical = 2 +region_rect = Rect2(80, 0, 16, 8) + +[sub_resource type="Image" id="Image_1mcls"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOD/4P/g/+D/4P/g/+D/4P8AAAAAAAAAAOD/4P/g/+D/4P/g/+D/4P8AAAAAAAAAAOD/4P/g/+D/4P/g/+D/4P8AAAAAAAAAAOFe4PTg/+D/4P/g/+D24WYAAAAAAAAAAAAA3yjf0uD/4P/g1+MtAAAAAAAAAAAAAAAAAADoC+Gf4Z/oCwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"), +"format": "LumAlpha8", +"height": 12, +"mipmaps": false, +"width": 12 +} + +[sub_resource type="ImageTexture" id="306"] +image = SubResource("Image_1mcls") + +[sub_resource type="Image" id="Image_4lma7"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4P/g/+D/32AAAAAAAAAAAAAAAAAAAAAA4P/g/+D/4PThKwAAAAAAAAAAAAAAAAAA4P/g/+D/4P/g1egLAAAAAAAAAAAAAAAA4P/g/+D/4P/g/+GfAAAAAAAAAAAAAAAA4P/g/+D/4P/g/+GfAAAAAAAAAAAAAAAA4P/g/+D/4P/g1egLAAAAAAAAAAAAAAAA4P/g/+D/4PThKwAAAAAAAAAAAAAAAAAA4P/g/+D/32AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"), +"format": "LumAlpha8", +"height": 12, +"mipmaps": false, +"width": 12 +} + +[sub_resource type="ImageTexture" id="308"] +image = SubResource("Image_4lma7") + +[sub_resource type="Image" id="Image_bvxll"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAA/1n/FP8U/1kAAAAAAAAAAAAA/1n/FP8U/1kAAAAAAAAAAAAA/1n/FP8U/1kAAAAAAAAAAP9Z/xT/FP9ZAAAAAAAA/1n/FP8U/1kAAAAAAAD/Wf8U/xT/WQAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="), +"format": "LumAlpha8", +"height": 8, +"mipmaps": false, +"width": 8 +} + +[sub_resource type="ImageTexture" id="292"] +image = SubResource("Image_bvxll") + +[sub_resource type="Image" id="Image_wpliq"] +data = { +"data": PackedByteArray("FxYabx0cIe8gHiT3IR8l9yEfJfchHyX3IR8l9yAeJPcdHCHvFxYabx0cIfAkIin/KCYt/ygmLv8oJi7/KCYu/ygmLv8oJi3/JCIp/x0cIfAgHiT5KCYt/ysqMf8sKjL/LCoy/ywqMv8sKjL/Kyox/ygmLf8gHiT5IR8l9ygmLv8sKjL/LCoy/ywqMv8sKjL/LCoy/ywqMv8oJi7/IR8l9yEfJfcoJi7/LCoy/ywqMv8sKjL/LCoy/ywqMv8sKjL/KCYu/yEfJfchHyX3KCYu/ywqMv8sKjL/LCoy/ywqMv8sKjL/LCoy/ygmLv8hHyX3IR8l9ygmLv8sKjL/LCoy/ywqMv8sKjL/LCoy/ywqMv8oJi7/IR8l9yAeJPkoJi3/Kyox/ywqMv8sKjL/LCoy/ywqMv8rKjH/KCYt/yAeJPkdHCHwJCIp/ygmLf8oJi7/KCYu/ygmLv8oJi7/KCYt/yQiKf8dHCHxFxYabx0cIfAgHiT3IR8l9yEfJfchHyX3IR8l9yAeJPcdHCHuFxYabw=="), +"format": "RGBA8", +"height": 10, +"mipmaps": false, +"width": 10 +} + +[sub_resource type="ImageTexture" id="39"] +image = SubResource("Image_wpliq") + +[sub_resource type="StyleBoxTexture" id="272"] +content_margin_left = 0.0 +content_margin_top = 0.0 +content_margin_right = 0.0 +content_margin_bottom = 0.0 +texture = SubResource("39") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +region_rect = Rect2(0, 0, 10, 10) + +[sub_resource type="StyleBoxTexture" id="41"] +content_margin_left = 4.0 +content_margin_top = 4.0 +content_margin_right = 4.0 +content_margin_bottom = 4.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +expand_margin_left = 1.0 +expand_margin_top = 1.0 +expand_margin_right = 1.0 +expand_margin_bottom = 1.0 +region_rect = Rect2(0, 24, 8, 8) + +[sub_resource type="StyleBoxTexture" id="293"] +content_margin_left = 4.0 +content_margin_top = 4.0 +content_margin_right = 4.0 +content_margin_bottom = 4.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +expand_margin_left = 1.0 +expand_margin_top = 1.0 +expand_margin_right = 1.0 +expand_margin_bottom = 1.0 +region_rect = Rect2(16, 24, 8, 8) + +[sub_resource type="StyleBoxTexture" id="409"] +content_margin_left = 6.0 +content_margin_top = 4.0 +content_margin_right = 6.0 +content_margin_bottom = 4.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +axis_stretch_vertical = 2 +region_rect = Rect2(24, 40, 8, 8) + +[sub_resource type="Image" id="Image_o0a4y"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNS1kHTUtZJ01LWVBNS1lmTUtZaE1LWWhNS1loTUtZaE1LWWhNS1loWFZjarCvtYFNS1knTUtZBwAAAAAAAAAATUtZJzg3QLQgICT6Hh4i/x8fI/8fHyP/Hx8j/x8fI/8fHyP/Hx8j/4uLjf//////tra53U1LWScAAAAAAAAAAE1LWVAgICT6ICAk/yIiJ/8jIyj/IyMo/yMjKP8jIyj/IyMo/0JCR//4+Pj//v7+/1dXWvtNS1lQAAAAAAAAAABNS1lmHh4i/yIiJ/8lJSr/JSUq/05OUv8mJiv/JSUq/yUlKv/Fxcf//////6qqq/8eHiL/TUtZZgAAAAAAAAAATUtZaB8fI/8jIyj/JSUq/7i4uv//////X19j/yUlKv90dHf//////+3t7f8zMzj/Hx8j/01LWWgAAAAAAAAAAE1LWWgfHyP/IyMo/yUlKv+NjY///////7i4uf81NTn/7e3t//////90dHf/IyMo/x8fI/9NS1loAAAAAAAAAABNS1loHx8j/yMjKP8lJSr/Ojo+//v7+//6+vr/srK0///////Fxcf/JSUq/yMjKP8fHyP/TUtZaAAAAAAAAAAATUtZaB8fI/8jIyj/JSUq/yUlKv+4uLr///////7+/v/4+Pj/RUVJ/yUlKv8jIyj/Hx8j/01LWWgAAAAAAAAAAE1LWWgfHyP/IyMo/yUlKv8lJSr/YWFl////////////j4+S/yUlKv8lJSr/IyMo/x8fI/9NS1loAAAAAAAAAABNS1loHx8j/yMjKP8lJSr/JSUq/yYmK/9OTlL/Y2Nm/yoqL/8lJSr/JSUq/yMjKP8fHyP/TUtZaAAAAAAAAAAATUtZZh4eIv8iIif/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8iIif/Hh4i/01LWWYAAAAAAAAAAE1LWVAgICT6ICAk/yIiJ/8jIyj/IyMo/yMjKP8jIyj/IyMo/yMjKP8iIif/ICAk/yAgJPtNS1lQAAAAAAAAAABNS1knODZAtCAgJPseHiL/Hx8j/x8fI/8fHyP/Hx8j/x8fI/8fHyP/Hh4i/yAgJfo4NkC0TUtZJwAAAAAAAAAATUtZB01LWSdNS1lQTUtZZk1LWWhNS1loTUtZaE1LWWhNS1loTUtZaE1LWWZNS1lQTUtZJ01LWQcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="334"] +image = SubResource("Image_o0a4y") + +[sub_resource type="Image" id="Image_68c2u"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNS1kHTUtZJ01LWVBNS1lmTUtZaE1LWWhNS1loTUtZaE1LWWhNS1loTUtZZk1LWVBNS1knTUtZBwAAAAAAAAAATUtZJzg3QLQgICT6Hh4i/x8fI/8fHyP/Hx8j/x8fI/8fHyP/Hx8j/x4eIv8gICT6ODdAtE1LWScAAAAAAAAAAE1LWVAgICT6ICAk/yIiJ/8jIyj/IyMo/yMjKP8jIyj/IyMo/yMjKP8iIif/ICAk/yAgJPpNS1lQAAAAAAAAAABNS1lmHh4i/yIiJ/8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yIiJ/8eHiL/TUtZZgAAAAAAAAAATUtZaB8fI/8jIyj/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8jIyj/Hx8j/01LWWgAAAAAAAAAAE1LWWgfHyP/IyMo/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/IyMo/x8fI/9NS1loAAAAAAAAAABNS1loHx8j/yMjKP8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yMjKP8fHyP/TUtZaAAAAAAAAAAATUtZaB8fI/8jIyj/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8jIyj/Hx8j/01LWWgAAAAAAAAAAE1LWWgfHyP/IyMo/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/IyMo/x8fI/9NS1loAAAAAAAAAABNS1loHx8j/yMjKP8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yMjKP8fHyP/TUtZaAAAAAAAAAAATUtZZh4eIv8iIif/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8iIif/Hh4i/01LWWYAAAAAAAAAAE1LWVAgICT6ICAk/yIiJ/8jIyj/IyMo/yMjKP8jIyj/IyMo/yMjKP8iIif/ICAk/yAgJPtNS1lQAAAAAAAAAABNS1knODZAtCAgJPseHiL/Hx8j/x8fI/8fHyP/Hx8j/x8fI/8fHyP/Hh4i/yAgJfo4NkC0TUtZJwAAAAAAAAAATUtZB01LWSdNS1lQTUtZZk1LWWhNS1loTUtZaE1LWWhNS1loTUtZaE1LWWZNS1lQTUtZJ01LWQcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="336"] +image = SubResource("Image_68c2u") + +[sub_resource type="AtlasTexture" id="359"] +atlas = ExtResource("1_ak8qr") +region = Rect2(8, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="360"] +texture = SubResource("359") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_c4ymr"] +texture = ExtResource("1_ak8qr") +texture_margin_left = 7.0 +texture_margin_top = 7.0 +texture_margin_right = 7.0 +texture_margin_bottom = 7.0 +axis_stretch_horizontal = 1 +axis_stretch_vertical = 1 +region_rect = Rect2(112, 64, 16, 16) + +[sub_resource type="StyleBoxTexture" id="393"] +texture = ExtResource("1_ak8qr") +texture_margin_left = 7.0 +texture_margin_top = 7.0 +texture_margin_right = 7.0 +texture_margin_bottom = 7.0 +axis_stretch_horizontal = 1 +axis_stretch_vertical = 1 +region_rect = Rect2(112, 80, 16, 16) + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_bo7kv"] +texture = ExtResource("1_ak8qr") +texture_margin_left = 7.0 +texture_margin_top = 7.0 +texture_margin_right = 7.0 +texture_margin_bottom = 7.0 +axis_stretch_horizontal = 1 +axis_stretch_vertical = 1 +region_rect = Rect2(112, 80, 16, 16) + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_frxxy"] +content_margin_left = 7.0 +content_margin_top = 0.0 +content_margin_right = 7.0 +content_margin_bottom = 0.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 3.0 +texture_margin_top = 3.0 +texture_margin_right = 3.0 +texture_margin_bottom = 3.0 +axis_stretch_horizontal = 1 +axis_stretch_vertical = 1 +region_rect = Rect2(32, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_w2ibl"] +content_margin_left = 7.0 +content_margin_top = 0.0 +content_margin_right = 7.0 +content_margin_bottom = 0.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 3.0 +texture_margin_top = 3.0 +texture_margin_right = 3.0 +texture_margin_bottom = 3.0 +axis_stretch_horizontal = 1 +axis_stretch_vertical = 1 +region_rect = Rect2(16, 40, 8, 8) + +[sub_resource type="StyleBoxFlat" id="563"] +border_width_left = 1 +border_color = Color(0.2, 0.2, 0.2, 1) +anti_aliasing = false + +[sub_resource type="AtlasTexture" id="250"] +atlas = ExtResource("1_ak8qr") +region = Rect2(96, 64, 16, 16) + +[sub_resource type="AtlasTexture" id="251"] +atlas = ExtResource("1_ak8qr") +region = Rect2(96, 96, 16, 16) + +[sub_resource type="AtlasTexture" id="252"] +atlas = ExtResource("1_ak8qr") +region = Rect2(96, 80, 16, 16) + +[sub_resource type="Image" id="Image_y8hpv"] +data = { +"data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIKCgnmNjY15mJiYeYGirQCMrLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOFVfAE5OTjGCgoJ5jY2NeZiYmHlOTk4xTk5OMU5OTjE4VV8AOFVfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADhVXwBOTk4cTk5OMU5OTjFOTk4xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), +"format": "RGBA8", +"height": 4, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="111"] +image = SubResource("Image_y8hpv") + +[sub_resource type="StyleBoxTexture" id="4"] +content_margin_left = 6.0 +content_margin_top = 3.0 +content_margin_right = 6.0 +content_margin_bottom = 3.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +region_rect = Rect2(0, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="249"] +content_margin_left = 6.0 +content_margin_top = 3.0 +content_margin_right = 6.0 +content_margin_bottom = 3.0 +texture = ExtResource("1_ak8qr") +texture_margin_left = 2.0 +texture_margin_top = 2.0 +texture_margin_right = 2.0 +texture_margin_bottom = 2.0 +axis_stretch_horizontal = 2 +region_rect = Rect2(16, 40, 8, 8) + +[sub_resource type="AtlasTexture" id="20"] +atlas = ExtResource("3_0m6kw") +region = Rect2(96, 40, 8, 8) + +[sub_resource type="StyleBoxTexture" id="19"] +texture = ExtResource("1_ak8qr") +texture_margin_left = 5.0 +texture_margin_top = 20.0 +texture_margin_right = 5.0 +texture_margin_bottom = 6.0 +expand_margin_left = 8.0 +expand_margin_top = 24.0 +expand_margin_right = 8.0 +expand_margin_bottom = 6.0 +axis_stretch_horizontal = 2 +axis_stretch_vertical = 2 +region_rect = Rect2(96, 8, 16, 27) + +[sub_resource type="FontVariation" id="FontVariation_7q4tc"] +base_font = ExtResource("4_qf1ck") +spacing_top = -10 +spacing_bottom = -10 + +[resource] +default_font = SubResource("FontVariation_7q4tc") +default_font_size = 20 +Button/colors/font_color = Color(0.866667, 0.866667, 0.866667, 1) +Button/colors/font_color_disabled = Color(0.501961, 0.501961, 0.501961, 1) +Button/colors/font_color_focus = Color(1, 1, 1, 1) +Button/colors/font_color_hover = Color(1, 1, 1, 1) +Button/colors/font_color_pressed = Color(1, 1, 1, 1) +Button/constants/hseparation = 2 +Button/styles/disabled = SubResource("361") +Button/styles/focus = SubResource("StyleBoxFlat_8gu0q") +Button/styles/hover = SubResource("6") +Button/styles/normal = SubResource("7") +Button/styles/pressed = SubResource("8") +CheckBox/constants/check_vadjust = 0 +CheckBox/constants/hseparation = 2 +CheckBox/styles/disabled = null +CheckBox/styles/focus = null +CheckBox/styles/hover = null +CheckBox/styles/hover_pressed = null +CheckBox/styles/normal = null +CheckBox/styles/pressed = null +CheckButton/colors/font_color = Color(0.866667, 0.866667, 0.866667, 1) +CheckButton/colors/font_color_disabled = Color(0.439216, 0.439216, 0.439216, 1) +CheckButton/colors/font_color_focus = Color(1, 1, 1, 1) +CheckButton/colors/font_color_hover = Color(1, 1, 1, 1) +CheckButton/colors/font_color_hover_pressed = Color(1, 1, 1, 1) +CheckButton/colors/font_color_pressed = Color(1, 1, 1, 1) +CheckButton/constants/check_vadjust = 0 +CheckButton/constants/hseparation = 4 +CheckButton/icons/checked = SubResource("AtlasTexture_f4uh6") +CheckButton/icons/checked_disabled = SubResource("AtlasTexture_ib0ka") +CheckButton/icons/unchecked = SubResource("AtlasTexture_xgyau") +CheckButton/icons/unchecked_disabled = SubResource("AtlasTexture_5ii0m") +CheckButton/styles/disabled = SubResource("339") +CheckButton/styles/focus = SubResource("342") +CheckButton/styles/hover = SubResource("339") +CheckButton/styles/hover_pressed = SubResource("339") +CheckButton/styles/normal = SubResource("343") +CheckButton/styles/pressed = SubResource("339") +ColorPickerButton/colors/font_color = Color(1, 1, 1, 1) +ColorPickerButton/colors/font_color_disabled = Color(0.9, 0.9, 0.9, 0.3) +ColorPickerButton/colors/font_color_focus = Color(1, 1, 1, 1) +ColorPickerButton/colors/font_color_hover = Color(1, 1, 1, 1) +ColorPickerButton/colors/font_color_pressed = Color(0.8, 0.8, 0.8, 1) +ColorPickerButton/constants/hseparation = 2 +ColorPickerButton/fonts/font = SubResource("37") +ColorPickerButton/icons/bg = SubResource("447") +ColorPickerButton/styles/disabled = SubResource("54") +ColorPickerButton/styles/focus = SubResource("57") +ColorPickerButton/styles/hover = SubResource("60") +ColorPickerButton/styles/normal = SubResource("63") +ColorPickerButton/styles/pressed = SubResource("66") +FileDialog/colors/file_icon_modulate = Color(1, 1, 1, 1) +FileDialog/colors/files_disabled = Color(1, 1, 1, 0.25) +FileDialog/colors/folder_icon_modulate = Color(1, 1, 1, 1) +FileDialog/icons/file = SubResource("425") +FileDialog/icons/folder = SubResource("427") +FileDialog/icons/parent_folder = SubResource("429") +FileDialog/icons/reload = SubResource("431") +FileDialog/icons/toggle_hidden = SubResource("433") +HScrollBar/styles/grabber = SubResource("StyleBoxTexture_g6bu4") +HScrollBar/styles/grabber_highlight = SubResource("StyleBoxTexture_5b0pw") +HScrollBar/styles/grabber_pressed = SubResource("StyleBoxTexture_bfd3g") +HScrollBar/styles/scroll = SubResource("StyleBoxTexture_lsn07") +HScrollBar/styles/scroll_focus = SubResource("StyleBoxTexture_8681i") +HSeparator/styles/separator = SubResource("576") +ItemList/colors/font_color = Color(0.866667, 0.866667, 0.866667, 1) +ItemList/colors/font_color_selected = Color(1, 1, 1, 1) +ItemList/colors/guide_color = Color(0.266667, 0.266667, 0.266667, 1) +ItemList/constants/hseparation = 0 +ItemList/constants/icon_margin = 2 +ItemList/constants/line_separation = 0 +ItemList/constants/vseparation = 0 +ItemList/styles/bg = SubResource("461") +ItemList/styles/bg_focus = SubResource("462") +ItemList/styles/cursor_unfocused = null +ItemList/styles/selected = SubResource("476") +ItemList/styles/selected_focus = SubResource("490") +LineEdit/colors/clear_button_color = Color(0.88, 0.88, 0.88, 1) +LineEdit/colors/clear_button_color_pressed = Color(1, 1, 1, 1) +LineEdit/colors/cursor_color = Color(0.94, 0.94, 0.94, 1) +LineEdit/colors/font_color = Color(0.88, 0.88, 0.88, 1) +LineEdit/colors/font_color_selected = Color(0, 0, 0, 1) +LineEdit/colors/font_color_uneditable = Color(0.88, 0.88, 0.88, 0.5) +LineEdit/colors/selection_color = Color(0.49, 0.49, 0.49, 1) +LineEdit/constants/minimum_spaces = 12 +LineEdit/icons/clear = SubResource("49") +LineEdit/styles/focus = SubResource("127") +LineEdit/styles/normal = SubResource("128") +LineEdit/styles/read_only = SubResource("51") +LinkButton/colors/font_color = Color(0.560784, 0.560784, 0.560784, 1) +LinkButton/colors/font_color_focus = Color(1, 1, 1, 1) +LinkButton/colors/font_color_hover = Color(0.831373, 0.831373, 0.831373, 1) +LinkButton/colors/font_color_pressed = Color(0.560784, 0.560784, 0.560784, 1) +LinkButton/constants/underline_spacing = 0 +LinkButton/styles/focus = SubResource("540") +MarginContainer/constants/margin_bottom = 5 +MarginContainer/constants/margin_left = 5 +MarginContainer/constants/margin_right = 5 +MarginContainer/constants/margin_top = 5 +OptionButton/colors/font_color = Color(0.88, 0.88, 0.88, 1) +OptionButton/colors/font_color_disabled = Color(0.9, 0.9, 0.9, 0.2) +OptionButton/colors/font_color_focus = Color(0.94, 0.94, 0.94, 1) +OptionButton/colors/font_color_hover = Color(0.94, 0.94, 0.94, 1) +OptionButton/colors/font_color_pressed = Color(1, 1, 1, 1) +OptionButton/constants/arrow_margin = 5 +OptionButton/constants/hseparation = 2 +OptionButton/icons/arrow = SubResource("144") +OptionButton/styles/disabled = SubResource("71") +OptionButton/styles/focus = SubResource("72") +OptionButton/styles/hover = SubResource("160") +OptionButton/styles/normal = SubResource("78") +OptionButton/styles/pressed = SubResource("176") +Panel/styles/panel = SubResource("1") +PanelContainer/styles/panel = SubResource("StyleBoxTexture_r7viw") +PopupMenu/colors/font_color = Color(0.88, 0.88, 0.88, 1) +PopupMenu/colors/font_color_accel = Color(0.7, 0.7, 0.7, 0.8) +PopupMenu/colors/font_color_disabled = Color(0.4, 0.4, 0.4, 0.8) +PopupMenu/colors/font_color_hover = Color(0.88, 0.88, 0.88, 1) +PopupMenu/colors/font_color_separator = Color(0.88, 0.88, 0.88, 1) +PopupMenu/constants/hseparation = 4 +PopupMenu/constants/vseparation = 4 +PopupMenu/fonts/font_separator = SubResource("2") +PopupMenu/icons/checked = SubResource("230") +PopupMenu/icons/radio_checked = SubResource("218") +PopupMenu/icons/radio_unchecked = SubResource("219") +PopupMenu/icons/submenu = SubResource("231") +PopupMenu/icons/unchecked = SubResource("232") +PopupMenu/styles/hover = SubResource("243") +PopupMenu/styles/labeled_separator_left = SubResource("200") +PopupMenu/styles/labeled_separator_right = SubResource("201") +PopupMenu/styles/panel = SubResource("202") +PopupMenu/styles/panel_disabled = SubResource("205") +PopupMenu/styles/separator = SubResource("206") +ProgressBar/colors/font_color = Color(0.94, 0.94, 0.94, 1) +ProgressBar/colors/font_color_shadow = Color(0, 0, 0, 1) +ProgressBar/styles/bg = SubResource("507") +ProgressBar/styles/fg = SubResource("508") +ProgressBar/styles/fill = SubResource("StyleBoxTexture_2fae3") +SpinBox/icons/updown = SubResource("319") +TabContainer/colors/font_color_bg = Color(0.486275, 0.486275, 0.486275, 1) +TabContainer/colors/font_color_disabled = Color(0.403922, 0.403922, 0.403922, 1) +TabContainer/colors/font_color_fg = Color(1, 1, 1, 1) +TabContainer/constants/hseparation = 0 +TabContainer/constants/label_valign_bg = 0 +TabContainer/constants/label_valign_fg = 0 +TabContainer/constants/side_margin = 0 +TabContainer/constants/top_margin = 0 +TabContainer/icons/menu = null +TabContainer/styles/panel = SubResource("420") +TabContainer/styles/tab_bg = SubResource("525") +TabContainer/styles/tab_disabled = SubResource("422") +TabContainer/styles/tab_fg = SubResource("423") +Tabs/colors/font_color_bg = Color(0, 0, 0, 1) +Tabs/colors/font_color_disabled = Color(0, 0, 0, 1) +Tabs/colors/font_color_fg = Color(0, 0, 0, 1) +Tabs/constants/hseparation = 0 +Tabs/constants/label_valign_bg = 0 +Tabs/constants/label_valign_fg = 0 +Tabs/constants/top_margin = 0 +Tabs/fonts/font = SubResource("2") +Tabs/icons/close = null +Tabs/icons/decrement = null +Tabs/icons/decrement_highlight = null +Tabs/icons/increment = null +Tabs/icons/increment_highlight = null +Tabs/styles/button = null +Tabs/styles/button_pressed = null +Tabs/styles/tab_bg = null +Tabs/styles/tab_disabled = null +Tabs/styles/tab_fg = null +TextEdit/colors/background_color = Color(0, 0, 0, 0) +TextEdit/colors/bookmark_color = Color(0.08, 0.49, 0.98, 1) +TextEdit/colors/brace_mismatch_color = Color(1, 0.2, 0.2, 1) +TextEdit/colors/breakpoint_color = Color(0.8, 0.8, 0.4, 0.2) +TextEdit/colors/caret_background_color = Color(0, 0, 0, 1) +TextEdit/colors/caret_color = Color(0.88, 0.88, 0.88, 1) +TextEdit/colors/code_folding_color = Color(0.8, 0.8, 0.8, 0.8) +TextEdit/colors/completion_background_color = Color(0.17, 0.16, 0.2, 1) +TextEdit/colors/completion_existing_color = Color(0.87, 0.87, 0.87, 0.13) +TextEdit/colors/completion_font_color = Color(0.67, 0.67, 0.67, 1) +TextEdit/colors/completion_scroll_color = Color(1, 1, 1, 0.29) +TextEdit/colors/completion_selected_color = Color(0.26, 0.26, 0.27, 1) +TextEdit/colors/current_line_color = Color(0.25, 0.25, 0.26, 0.8) +TextEdit/colors/executing_line_color = Color(0.2, 0.8, 0.2, 0.4) +TextEdit/colors/font_color = Color(0.88, 0.88, 0.88, 1) +TextEdit/colors/font_color_readonly = Color(0.88, 0.88, 0.88, 0.5) +TextEdit/colors/font_color_selected = Color(0, 0, 0, 1) +TextEdit/colors/function_color = Color(0.4, 0.64, 0.81, 1) +TextEdit/colors/line_number_color = Color(0.67, 0.67, 0.67, 0.4) +TextEdit/colors/mark_color = Color(1, 0.4, 0.4, 0.4) +TextEdit/colors/member_variable_color = Color(0.9, 0.31, 0.35, 1) +TextEdit/colors/number_color = Color(0.92, 0.58, 0.2, 1) +TextEdit/colors/safe_line_number_color = Color(0.67, 0.78, 0.67, 0.6) +TextEdit/colors/selection_color = Color(0.49, 0.49, 0.49, 1) +TextEdit/colors/symbol_color = Color(0.94, 0.94, 0.94, 1) +TextEdit/colors/word_highlighted_color = Color(0.8, 0.9, 0.9, 0.15) +TextEdit/constants/completion_lines = 7 +TextEdit/constants/completion_max_width = 50 +TextEdit/constants/completion_scroll_width = 6 +TextEdit/constants/line_spacing = 2 +TextEdit/icons/fold = SubResource("306") +TextEdit/icons/folded = SubResource("308") +TextEdit/icons/tab = SubResource("292") +TextEdit/styles/completion = SubResource("272") +TextEdit/styles/focus = SubResource("41") +TextEdit/styles/normal = SubResource("128") +TextEdit/styles/read_only = SubResource("293") +TooltipLabel/colors/font_color = Color(0.866667, 0.866667, 0.866667, 1) +TooltipLabel/colors/font_color_shadow = Color(0.133333, 0.133333, 0.133333, 1) +TooltipLabel/constants/shadow_offset_x = 0 +TooltipLabel/constants/shadow_offset_y = 0 +TooltipPanel/styles/panel = SubResource("409") +Tree/icons/checked = SubResource("334") +Tree/icons/unchecked = SubResource("336") +Tree/styles/bg = SubResource("360") +VScrollBar/styles/grabber = SubResource("StyleBoxTexture_c4ymr") +VScrollBar/styles/grabber_highlight = SubResource("393") +VScrollBar/styles/grabber_pressed = SubResource("StyleBoxTexture_bo7kv") +VScrollBar/styles/scroll = SubResource("StyleBoxTexture_frxxy") +VScrollBar/styles/scroll_focus = SubResource("StyleBoxTexture_w2ibl") +VSeparator/constants/separation = 2 +VSeparator/styles/separator = SubResource("563") +VSlider/icons/grabber = SubResource("250") +VSlider/icons/grabber_disabled = SubResource("251") +VSlider/icons/grabber_highlight = SubResource("252") +VSlider/icons/tick = SubResource("111") +VSlider/styles/grabber_area = SubResource("4") +VSlider/styles/grabber_area_highlight = SubResource("4") +VSlider/styles/slider = SubResource("249") +WindowDialog/colors/title_color = Color(1, 1, 1, 1) +WindowDialog/constants/close_h_ofs = 5 +WindowDialog/constants/close_v_ofs = 19 +WindowDialog/constants/scaleborder_size = 4 +WindowDialog/constants/title_height = 36 +WindowDialog/icons/close = SubResource("20") +WindowDialog/icons/close_highlight = SubResource("20") +WindowDialog/styles/panel = SubResource("19") diff --git a/tools/configurator/res/pixel_ui_theme/m5x7.ttf b/tools/configurator/res/pixel_ui_theme/m5x7.ttf new file mode 100755 index 00000000..2ed774d4 Binary files /dev/null and b/tools/configurator/res/pixel_ui_theme/m5x7.ttf differ diff --git a/tools/configurator/res/pixel_ui_theme/m5x7.ttf.import b/tools/configurator/res/pixel_ui_theme/m5x7.ttf.import new file mode 100644 index 00000000..804bd2f3 --- /dev/null +++ b/tools/configurator/res/pixel_ui_theme/m5x7.ttf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://sph0kotu777o" +path="res://.godot/imported/m5x7.ttf-0459a7c3983f56aa7f3d4655ace9a5d4.fontdata" + +[deps] + +source_file="res://res/pixel_ui_theme/m5x7.ttf" +dest_files=["res://.godot/imported/m5x7.ttf-0459a7c3983f56aa7f3d4655ace9a5d4.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/tools/configurator/res/pixel_ui_theme/pixel-sans-license.txt b/tools/configurator/res/pixel_ui_theme/pixel-sans-license.txt new file mode 100644 index 00000000..85a46d11 --- /dev/null +++ b/tools/configurator/res/pixel_ui_theme/pixel-sans-license.txt @@ -0,0 +1,4 @@ +The FontStruction “Pixel Sans” +(https://fontstruct.com/fontstructions/show/1844233) by “erictom333” is +licensed under a Creative Commons Attribution license +(http://creativecommons.org/licenses/by/3.0/). diff --git a/tools/configurator/res/pixel_ui_theme/pixel-sans.otf b/tools/configurator/res/pixel_ui_theme/pixel-sans.otf new file mode 100644 index 00000000..a4c31de3 Binary files /dev/null and b/tools/configurator/res/pixel_ui_theme/pixel-sans.otf differ diff --git a/tools/configurator/res/pixel_ui_theme/pixel-sans.otf.import b/tools/configurator/res/pixel_ui_theme/pixel-sans.otf.import new file mode 100644 index 00000000..fc5f0b61 --- /dev/null +++ b/tools/configurator/res/pixel_ui_theme/pixel-sans.otf.import @@ -0,0 +1,41 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://cqhvyjx75dls8" +path="res://.godot/imported/pixel-sans.otf-c6ccef8029bb349d210b8711451e46a7.fontdata" + +[deps] + +source_file="res://res/pixel_ui_theme/pixel-sans.otf" +dest_files=["res://.godot/imported/pixel-sans.otf-c6ccef8029bb349d210b8711451e46a7.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[{ +"chars": [], +"glyphs": [], +"name": "New Configuration", +"size": Vector2i(16, 0), +"variation_embolden": 0.62, +"variation_transform": Transform2D(4, 1, 5, 2, 6, 3) +}] +language_support={} +script_support={} +opentype_features={} diff --git a/tools/configurator/res/pixel_ui_theme/random_icon.tres b/tools/configurator/res/pixel_ui_theme/random_icon.tres new file mode 100644 index 00000000..5278a7c8 --- /dev/null +++ b/tools/configurator/res/pixel_ui_theme/random_icon.tres @@ -0,0 +1,7 @@ +[gd_resource type="AtlasTexture" load_steps=2 format=3] + +[ext_resource type="Texture" uid="uid://cxyml1owhi6de" path="res://res/pixel_ui_theme/8x8_ui_icons.png" id="1"] + +[resource] +atlas = ExtResource( 1 ) +region = Rect2( 0, 96, 8, 8 ) diff --git a/tools/configurator/retrodeck.json b/tools/configurator/retrodeck.json new file mode 100644 index 00000000..0dde12b8 --- /dev/null +++ b/tools/configurator/retrodeck.json @@ -0,0 +1,87 @@ +{ + "abxy_button_swap": { + "citra": false, + "gb": false, + "gba": false, + "gbc": false, + "n64": false, + "snes": false + }, + "ask_to_exit": { + "citra": false, + "dolphin": false, + "duckstation": false, + "pcsx2": false, + "primehack": false, + "rpcs3": false + }, + "borders": { + "gb": false, + "gba": false, + "gbc": false, + "genesis": false, + "gg": false, + "n64": false, + "psx_ra": false, + "snes": false + }, + "cheevos": { + "duckstation": false, + "pcsx2": false, + "retroarch": false + }, + "cheevos_hardcore": { + "duckstation": false, + "pcsx2": false, + "retroarch": false + }, + "options": { + "akai_ponzu": false, + "ask_default_user": true, + "branch": "", + "cloud_saves": false, + "default_user": "", + "desktop_mode_warning": true, + "developer_options": false, + "kiroi_ponzu": false, + "low_space_warning": true, + "multi_user_mode": false, + "power_user_warning": true, + "update_check": true, + "update_ignore": "", + "update_repo": "RetroDECK" + }, + "paths": { + "bios_folder": "/run/media/tim/DATA/retrodeck/bios", + "borders_folder": "/run/media/tim/DATA/retrodeck/borders", + "logs_folder": "/run/media/tim/DATA/retrodeck/logs", + "media_folder": "/run/media/tim/DATA/retrodeck/downloaded_media", + "mods_folder": "/run/media/tim/DATA/retrodeck/mods", + "rdhome": "/home/tim/retrodeck", + "roms_folder": "/run/media/tim/DATA/retrodeck/roms", + "saves_folder": "/run/media/tim/DATA/retrodeck/saves", + "screenshots_folder": "/run/media/tim/DATA/retrodeck/screenshots", + "sdcard": "/run/media/mmcblk0p1", + "states_folder": "/run/media/tim/DATA/retrodeck/states", + "texture_packs_folder": "/run/media/tim/DATA/retrodeck/texture_packs", + "themes_folder": "/run/media/tim/DATA/retrodeck/themes" + }, + "quick_resume": { + "retroarch": true + }, + "rewind": { + "gb": false, + "gba": false, + "gbc": false, + "genesis": false, + "gg": false, + "snes": false + }, + "version": "0.8.2b", + "widescreen": { + "genesis": false, + "n64": false, + "psx_ra": false, + "snes": false + } +} diff --git a/tools/configurator/scripts/Rekku.gd b/tools/configurator/scripts/Rekku.gd new file mode 100644 index 00000000..0315ea6d --- /dev/null +++ b/tools/configurator/scripts/Rekku.gd @@ -0,0 +1,33 @@ +extends Control +var split_max: int = 1280 +var split_min: int = 925 +var step_value: int = -7 +var split_speed: float = 0.001/100 + +func _input(event): + if event.is_action_released("rekku_hide"): + #self.visible = !self.visible + if class_functions.rekku_state == false: + self.visible = true + class_functions.rekku_state = true + for n in range (split_max, split_min,step_value): + await class_functions.wait(split_speed) + %SplitContainer.split_offset=n + %pop_rtl.visible = false + %TabContainer.set_tab_title(0, "GLOBAL") + %TabContainer.set_tab_title(1, "SYSTEMS") + %TabContainer.set_tab_title(2, "TOOLS") + %TabContainer.set_tab_title(3, "SETTINGS") + %TabContainer.set_tab_title(4, "ABOUT") + elif event.is_action_released("rekku_hide") and class_functions.rekku_state == true: + %TabContainer.set_tab_title(0, " GLOBAL ") + %TabContainer.set_tab_title(1, " SYSTEMS ") + %TabContainer.set_tab_title(2, " TOOLS ") + %TabContainer.set_tab_title(3, " SETTINGS ") + %TabContainer.set_tab_title(4, " ABOUT ") + %pop_rtl.visible = false + for n in range (split_min, split_max,abs(step_value)): + await class_functions.wait(split_speed) + %SplitContainer.split_offset=n + class_functions.rekku_state = false + self.visible = false diff --git a/tools/configurator/scripts/TabAbout.gd b/tools/configurator/scripts/TabAbout.gd new file mode 100644 index 00000000..9caf11f6 --- /dev/null +++ b/tools/configurator/scripts/TabAbout.gd @@ -0,0 +1,58 @@ +extends MarginContainer + +var rd_web_button:= Button.new() +var rd_changelog_button:= Button.new() +var rd_wiki_button:= Button.new() +var rd_credits_button:= Button.new() +var rd_donate_button:= Button.new() +var rd_contactus_button:= Button.new() +var rd_licenses_button:= Button.new() +var app_data:= AppData.new() +var button_array: Array = [rd_web_button, rd_changelog_button, rd_wiki_button, rd_credits_button, rd_donate_button, rd_contactus_button, rd_licenses_button] +var web_id: Array = ["rd_web", "rd_changelog", "rd_wiki", "rd_credits", "rd_donate", "rd_contactus", "rd_licenses"] + +func _ready(): + #tk_about = class_functions.import_csv_data("res://tk_about.txt") + app_data = data_handler.app_data + _connect_signals() + create_buttons() + +func _connect_signals() -> void: + for i in button_array.size(): + button_array[i].pressed.connect(_about_button_pressed.bind(web_id[i], button_array[i])) + +func _about_button_pressed(id: String, button: Button) -> void: + var tmp_txt = button.text + if class_functions.desktop_mode != "gamescope": + class_functions.logger("i","Loading website for " + id) + class_functions.launch_help(button.get_meta("url")) + else: + button.text = "Help only in Desktop Mode" + await class_functions.wait(3.0) + button.text = tmp_txt + +func create_buttons() -> void: + for i in button_array.size(): + var button = button_array[i] + %GridContainer.add_child(button) + var id = web_id[i] + if id in app_data.about_links: + var web_data: Link = app_data.about_links[id] + _setup_button(button, web_data) + +func _setup_button(button: Button, web_data: Link) -> void: + button.size_flags_horizontal = Control.SIZE_EXPAND_FILL + button.size_flags_vertical = Control.SIZE_EXPAND_FILL + button.text = web_data.name + var vect2 = Vector2(200,100) + button.custom_minimum_size = vect2 + #button.tooltip_text = web_data.description + button.icon = ResourceLoader.load(web_data.icon) + button.set_meta("url", web_data.url) + button.set_meta("description", web_data.description) + button.icon_alignment = HORIZONTAL_ALIGNMENT_LEFT + button.vertical_icon_alignment = VERTICAL_ALIGNMENT_CENTER + button.add_theme_constant_override("icon_max_width", 64) + button.icon_alignment = HORIZONTAL_ALIGNMENT_CENTER + button.alignment = HORIZONTAL_ALIGNMENT_CENTER + button.vertical_icon_alignment = VERTICAL_ALIGNMENT_TOP diff --git a/tools/configurator/scripts/TabContainer.gd b/tools/configurator/scripts/TabContainer.gd new file mode 100644 index 00000000..52d0e024 --- /dev/null +++ b/tools/configurator/scripts/TabContainer.gd @@ -0,0 +1,85 @@ +extends TabContainer + +var icon_width: int = 32 +@onready var tcount: int = get_tab_count()-2 + +func _ready(): + focusFirstFocusableChild() #grab focus on first element to enable controller focusing + %TabContainer.add_theme_icon_override("decrement",ResourceLoader.load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0797.png")) + %TabContainer.add_theme_icon_override("decrement_highlight",ResourceLoader.load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0763.png")) + %TabContainer.add_theme_icon_override("increment",ResourceLoader.load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0798.png")) + %TabContainer.add_theme_icon_override("increment_highlight",ResourceLoader.load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0764.png")) + if class_functions.font_select !=3: + %TabContainer.add_theme_font_size_override("font_size", class_functions.font_tab_size) + elif class_functions.font_select == 3: + %TabContainer.add_theme_font_size_override("font_size", 15) + else: + %TabContainer.add_theme_font_size_override("font_size", class_functions.font_tab_size) + set_tab_title(0, " GLOBAL ") + set_tab_title(1, " SYSTEMS ") + set_tab_title(2, " TOOLS ") + set_tab_title(3, " SETTINGS ") + set_tab_title(4, " ABOUT ") + set_tab_hidden(5, true) + set_tab_icon(0, ResourceLoader.load("res://assets/icons/pixelitos/128/map-globe.png")) + set_tab_icon_max_width(0,icon_width) + set_tab_icon(1, ResourceLoader.load("res://assets/icons/pixelitos/128/preferences-system-windows.png")) + set_tab_icon_max_width(1,icon_width) + set_tab_icon(2, ResourceLoader.load("res://assets/icons/pixelitos/128/utilities-system-monitor.png")) + set_tab_icon_max_width(2,icon_width) + set_tab_icon(3, ResourceLoader.load("res://assets/icons/pixelitos/128/preferences-system-session-services.png")) + set_tab_icon_max_width(3,icon_width) + set_tab_icon(4, ResourceLoader.load("res://assets/icons/pixelitos/128/help-about.png")) + set_tab_icon_max_width(4,icon_width) + connect_focus_signals(self) + %volume_effects_slider.value = class_functions.volume_effects + +func connect_focus_signals(node): + for child in node.get_children(): + if child is Button: + child.focus_entered.connect(_on_button_focus_entered.bind(child)) + child.focus_exited.connect(_on_button_focus_exited.bind()) + elif child is Control: + connect_focus_signals(child) + +func _on_button_focus_exited() -> void: + %pop_rtl.visible = false + +func _on_button_focus_entered(button: Button): + if button and class_functions.sound_effects: + %AudioStreamPlayer2D.volume_db = class_functions.volume_effects + %AudioStreamPlayer2D.play() + #if button and class_functions.rekku_state == false and button.has_meta("description"): + #%pop_rtl.visible = true + #%pop_rtl.text = button.get_meta("description") + elif class_functions.rekku_state == false: + %pop_rtl.visible = true + %pop_rtl.text = "Hey, there's no description" + +func _input(event): + if (event.is_action_pressed("next_tab")): + if current_tab == tcount: + current_tab = 0 + else: + self.select_next_available() + focusFirstFocusableChild() + if (event.is_action_pressed("previous_tab")): + if current_tab == 0: + current_tab = tcount + else: + self.select_previous_available() + focusFirstFocusableChild() + +func focusFirstFocusableChild(): + var children = findElements(get_current_tab_control(), "Control") + for n: Control in children: + if (n.focus_mode == FOCUS_ALL): + n.grab_focus.call_deferred() + break + +func findElements(node: Node, className: String, result: Array = []) -> Array: + if node.is_class(className): + result.push_back(node) + for child in node.get_children(): + result = findElements(child, className, result) + return result diff --git a/tools/configurator/scripts/TabGlobals.gd b/tools/configurator/scripts/TabGlobals.gd new file mode 100644 index 00000000..657052b3 --- /dev/null +++ b/tools/configurator/scripts/TabGlobals.gd @@ -0,0 +1,35 @@ +extends Control + +func _ready(): + _connect_signals() + +func _process(delta: float) -> void: + if class_functions.current_button != null: + update_progress(delta, class_functions.current_progress) + +func update_progress(delta: float, progress: ProgressBar) -> void: + if class_functions.press_time >= class_functions.PRESS_DURATION: + class_functions._do_complete(class_functions.current_button) + class_functions.is_state_pressed = false + #print ("Progress Bar: %s Button: %s" % [progress.name, current_button.name]) + elif class_functions.is_state_pressed and class_functions.current_state == "mixed": + class_functions.press_time += delta + progress.value = class_functions.press_time / class_functions.PRESS_DURATION * 100.0 + +func _connect_signals(): + %quick_resume_button.pressed.connect(class_functions.run_function.bind(%quick_resume_button, "quick_resume")) + %button_swap_button.button_down.connect(class_functions._do_action.bind(%button_swap_progress, %button_swap_button, class_functions.abxy_state)) + %button_swap_button.button_up.connect(class_functions._on_button_released.bind(%button_swap_progress)) + %button_swap_button.pressed.connect(class_functions.run_function.bind(%button_swap_button, "abxy_button_swap")) + %ask_to_exit_button.button_down.connect(class_functions._do_action.bind(%ask_to_exit_progress, %ask_to_exit_button, class_functions.ask_to_exit_state)) + %ask_to_exit_button.button_up.connect(class_functions._on_button_released.bind(%ask_to_exit_progress)) + %ask_to_exit_button.pressed.connect(class_functions.run_function.bind(%ask_to_exit_button, "ask_to_exit")) + %border_button.button_down.connect(class_functions._do_action.bind(%border_progress, %border_button, class_functions.border_state)) + %border_button.button_up.connect(class_functions._on_button_released.bind(%border_progress)) + %border_button.pressed.connect(class_functions.run_function.bind(%border_button, "borders")) + %widescreen_button.button_down.connect(class_functions._do_action.bind(%widescreen_progress, %widescreen_button, class_functions.widescreen_state)) + %widescreen_button.button_up.connect(class_functions._on_button_released.bind(%widescreen_progress)) + %widescreen_button.pressed.connect(class_functions.run_function.bind(%widescreen_button, "widescreen")) + %quick_rewind_button.button_down.connect(class_functions._do_action.bind(%quick_rewind_progress, %quick_rewind_button, class_functions.quick_rewind_state)) + %quick_rewind_button.button_up.connect(class_functions._on_button_released.bind(%quick_rewind_progress)) + %quick_rewind_button.pressed.connect(class_functions.run_function.bind(%quick_rewind_button, "rewind")) diff --git a/tools/configurator/scripts/TabSettings.gd b/tools/configurator/scripts/TabSettings.gd new file mode 100644 index 00000000..33080f7f --- /dev/null +++ b/tools/configurator/scripts/TabSettings.gd @@ -0,0 +1,65 @@ +extends Control +var responses: Array + +func _ready(): + _connect_signals() + if class_functions.cheevos_token_state == "true": + #%cheevos_label.add_theme_stylebox_override() + %cheevos_label.add_theme_color_override("font_color", Color(0.941, 0.502, 1, 1)) + %cheevos_label.text = "ALREADY LOGGED IN" + #%cheevos_connect_button.text = "LOGOUT" + else: + %cheevos_label.text = "NOT LOGGED IN" +func _connect_signals() -> void: + %sound_button.pressed.connect(class_functions.run_function.bind(%sound_button, "sound_effects")) + %update_notification_button.pressed.connect(class_functions.run_function.bind(%update_notification_button, "update_check")) + %volume_effects_slider.drag_ended.connect(class_functions.slider_function.bind(%volume_effects_slider)) + %cheevos_connect_button.pressed.connect(cheevos.bind(%cheevos_connect_button)) + %cheevos_button.button_down.connect(class_functions._do_action.bind(%cheevos_progress, %cheevos_button, class_functions.cheevos_state)) + %cheevos_button.button_up.connect(class_functions._on_button_released.bind(%cheevos_progress)) + %cheevos_button.pressed.connect(class_functions.run_function.bind(%cheevos_button, "cheevos")) + %cheevos_hardcore_button.button_down.connect(class_functions._do_action.bind(%cheevos_hardcore_progress, %cheevos_hardcore_button, class_functions.cheevos_hardcore_state)) + %cheevos_hardcore_button.button_up.connect(class_functions._on_button_released.bind(%cheevos_hardcore_progress)) + %cheevos_hardcore_button.pressed.connect(class_functions.run_function.bind(%cheevos_hardcore_button, "cheevos_hardcore")) + %reset_retrodeck_button.button_down.connect(class_functions._do_action.bind(%reset_retrodeck_progress, %reset_retrodeck_button, "mixed")) + %reset_retrodeck_button.button_up.connect(class_functions._on_button_released.bind(%reset_retrodeck_progress)) + %reset_all_emulators_button.button_down.connect(class_functions._do_action.bind(%reset_all_emulators_progress, %reset_all_emulators_button, "mixed")) + %reset_all_emulators_button.button_up.connect(class_functions._on_button_released.bind(%reset_all_emulators_progress)) + %system_button.pressed.connect(class_functions._hide_show_containers.bind(%system_button, %system_gridcontainer2)) + %cheevos_collapse_button.pressed.connect(class_functions._hide_show_containers.bind(%cheevos_collapse_button, %cheevos_gridcontainer)) + %future_button.pressed.connect(class_functions._hide_show_containers.bind(%future_button, %future_gridcontainer)) + +func _on_request_completed(_result, response_code, _headers, body) -> Array: + var response_text = JSON.parse_string(body.get_string_from_utf8()) + var cheevos_token: String = "" + #print("Response Code: ", response_code) + #print("Response Body: ", response_text) + #print ("Response Success: ", response_text.Success) + #print("Response Token: ", response_text.Token) + if response_text.Success: + cheevos_token = response_text.Token + if response_code == 200: + responses = [response_code, response_text.Success, cheevos_token] + return responses + return responses + +func cheevos(button: Button): + class_functions.logger("d","Attempting RA connection") + var ra_url = "https://retroachievements.org/dorequest.php?r=login&u="+%cheevos_username.text+"&p="+%cheevos_password.text + button.disabled = true + %cheevos_label.text = "ATTEMPTING LOGIN" + var http_request = HTTPRequest.new() + add_child(http_request) + http_request.request_completed.connect(self._on_request_completed) + http_request.request(ra_url) + responses = await wait_to_complete(http_request) + + %cheevos_label.text = "LOGIN SUCCESS = %s" % str(responses[1]).to_upper() + button.disabled = false + # need to create missing fields/keys too ie chhevos token duckstation? Possibly not But do need timestamp + #data_handler.read_change_regex(class_functions.config_folder_path + "retroarch/retroarch.cfg", "cheevos_username", "bob12") + data_handler.read_change_regex(class_functions.config_folder_path + "duckstation/settings.ini", "Username", "monkeyx", false) + +func wait_to_complete(http_request: HTTPRequest) -> Array: + await http_request.request_completed + return responses diff --git a/tools/configurator/scripts/TabSystem.gd b/tools/configurator/scripts/TabSystem.gd new file mode 100644 index 00000000..1d8cc68f --- /dev/null +++ b/tools/configurator/scripts/TabSystem.gd @@ -0,0 +1,127 @@ +extends Control + +var app_data := AppData.new() +var current_system := Emulator.new() +var press_time: float = 0.0 +var is_reset_pressed: bool = false +var reset_result: Dictionary +@export var PRESS_DURATION: float = 3.0 + +func _ready(): + app_data = data_handler.app_data + _connect_signals() + +func _process(delta: float) -> void: + if is_reset_pressed: + press_time += delta + %reset_progress.value = press_time / PRESS_DURATION * 100.0 + if press_time >= PRESS_DURATION: + _do_complete() + press_time = 0.0 + is_reset_pressed = false + %reset_progress.value = 0.0 + +func _connect_signals() -> void: + #TODO make for loops for each function linked to button function call + # Change to follow hoe TabGlobals Works + %retroarch_button.pressed.connect(standard_buttons.bind(%retroarch_button,%system_gridcontainer, %action_gridcontainer)) + %mame_button.pressed.connect(standard_buttons.bind(%mame_button,%system_gridcontainer, %action_gridcontainer)) + %ruffle_button.pressed.connect(standard_buttons.bind(%ruffle_button,%system_gridcontainer, %action_gridcontainer)) + %melonds_button.pressed.connect(standard_buttons.bind(%melonds_button,%system_gridcontainer, %action_gridcontainer)) + %pcsx2_button.pressed.connect(standard_buttons.bind(%pcsx2_button,%system_gridcontainer, %action_gridcontainer)) + %duckstation_button.pressed.connect(standard_buttons.bind(%duckstation_button,%system_gridcontainer, %action_gridcontainer)) + %ppsspp_button.pressed.connect(standard_buttons.bind(%ppsspp_button,%system_gridcontainer, %action_gridcontainer)) + %vita3k_button.pressed.connect(standard_buttons.bind(%vita3k_button,%system_gridcontainer, %action_gridcontainer)) + %rpcs3_button.pressed.connect(standard_buttons.bind(%rpcs3_button,%system_gridcontainer, %action_gridcontainer)) + %ryujinx_button.pressed.connect(standard_buttons.bind(%ryujinx_button,%system_gridcontainer, %action_gridcontainer)) + %dolphin_button.pressed.connect(standard_buttons.bind(%dolphin_button,%system_gridcontainer, %action_gridcontainer)) + %primehack_button.pressed.connect(standard_buttons.bind(%primehack_button,%system_gridcontainer, %action_gridcontainer)) + %cemu_button.pressed.connect(standard_buttons.bind(%cemu_button,%system_gridcontainer, %action_gridcontainer)) + %xemu_button.pressed.connect(standard_buttons.bind(%xemu_button,%system_gridcontainer, %action_gridcontainer)) + %esde_button.pressed.connect(standard_buttons.bind(%esde_button,%system_gridcontainer, %action_gridcontainer)) + %help_button.pressed.connect(_do_action.bind(%help_button)) + #%launch_button.pressed.connect(_do_action.bind(%launch_button)) + %launch_button.pressed.connect(_do_action.bind(%launch_button)) + %reset_button.button_down.connect(_do_action.bind(%reset_button)) + %reset_button.button_up.connect(_on_Button_released.bind(%reset_progress)) + %rpcs3_firmware_button.pressed.connect(_do_action.bind(%rpcs3_firmware_button)) + %vita3k_firmware_button.pressed.connect(_do_action.bind(%vita3k_firmware_button)) + %retroarch_quick_resume_button.pressed.connect(class_functions.run_function.bind(%retroarch_quick_resume_button, "quick_resume")) + +func standard_buttons(button: Button, buttons_gridcontainer: GridContainer, hidden_gridcontainer: GridContainer) -> void: + current_system = app_data.emulators[button.text.to_lower()] + %reset_button.text="RESET" + match button.name: + "vita3k_button": + %vita3k_firmware_button.visible = true + "rpcs3_button": + %rpcs3_firmware_button.visible = true + "retroarch_button": + %retroarch_quick_resume_button.visible = true + _: + %vita3k_firmware_button.visible = false + %rpcs3_firmware_button.visible = false + %retroarch_quick_resume_button.visible = false + hidden_gridcontainer.visible = true + if button.toggle_mode == false: + for i in range(buttons_gridcontainer.get_child_count()): + var child = buttons_gridcontainer.get_child(i) + if child is Button and child != button: + child.visible=false + elif button.toggle_mode == true and hidden_gridcontainer.visible == true: + hidden_gridcontainer.visible = false + for i in range(buttons_gridcontainer.get_child_count()): + var child = buttons_gridcontainer.get_child(i) + if child is Button: + child.visible=true + child.toggle_mode = false + if hidden_gridcontainer.visible == true: + button.toggle_mode = true + +func _on_Button_released(progress: ProgressBar) -> void: + is_reset_pressed = false + %reset_progress.visible = false + press_time = 0.0 + progress.value = 0.0 + +func _do_action(button: Button) -> void: + var original_txt = button.text + match [button.name, current_system.name]: + ["help_button", current_system.name]: + if class_functions.desktop_mode != "gamescope": + print ("URL %s" %current_system.url) + class_functions.logger("i", "Launching " + current_system.name + " Help") + class_functions.launch_help(current_system.url) + else: + button.text = "Help only works in Desktop Mode" + await class_functions.wait(3.0) + button.text = original_txt + ["launch_button", current_system.name]: + button.disabled = true + class_functions.logger("i", "Launching " + current_system.name) + var launch = class_functions.execute_command(current_system.launch,[], false) + class_functions.logger("d", "Exit Code: " + str(launch["exit_code"])) + button.disabled = false + ["reset_button", current_system.name]: + is_reset_pressed = true + %reset_progress.visible = true + ["rpcs3_firmware_button", current_system.name]: + class_functions.logger("i", "Firmware install " + current_system.name) + var launch = class_functions.execute_command(class_functions.wrapper_command,["update_rpcs3_firmware"], false) + class_functions.logger("d", "Exit Code: " + str(launch["exit_code"])) + ["vita3k_firmware_button", current_system.name]: + class_functions.logger("i", "Firmware install " + current_system.name) + var launch = class_functions.execute_command(class_functions.wrapper_command,["update_vita3k_firmware"], false) + class_functions.logger("d", "Exit Code: " + str(launch["exit_code"])) + +func _do_complete() ->void: + if is_reset_pressed: + var tmp_txt = %reset_button.text + %reset_button.text = "RESETTING-NOW" + class_functions.logger("i", "Resetting " + current_system.name) + var parameters = ["prepare_component","reset",current_system.name] + reset_result = await class_functions.run_thread_command(class_functions.wrapper_command,parameters, false) + class_functions.logger("d", "Exit Code: " + str(reset_result["exit_code"])) + %reset_button.text = "RESET COMPLETED" + await class_functions.wait(3.0) + %reset_button.text = tmp_txt diff --git a/tools/configurator/scripts/TabTools.gd b/tools/configurator/scripts/TabTools.gd new file mode 100644 index 00000000..f5c9ed7d --- /dev/null +++ b/tools/configurator/scripts/TabTools.gd @@ -0,0 +1,61 @@ +extends Control + +@onready var http_request: HTTPRequest = HTTPRequest.new() + +func _ready(): + add_child(http_request) + http_request.request_completed.connect(_on_request_completed) + _connect_signals() + #%backup_user_button.text += " - " + class_functions.rdhome + "/backup" + +func _connect_signals() -> void: + %check_conn_button.pressed.connect(check_internet_connection) + %backup_user_button.pressed.connect(run_function.bind(%backup_user_button, "Start User Backup")) + %srm_button.pressed.connect(run_function.bind(%srm_button,"")) + %steam_sync_button.pressed.connect(class_functions.run_function.bind(%steam_sync_button, "steam_sync")) + +func run_function(button: Button, message: String) -> void: + class_functions.logger("d",message) + button.disabled = true + match button.name: + "backup_user_button": + _run_backup(button) + "srm_button": + _run_srm(button) +func _run_srm(button: Button) -> void: + var launch = "steam-rom-manager" + var _run_result = await class_functions.run_thread_command(launch,[], true) + button.disabled = false + +func _run_backup(button: Button) -> void: + var original_txt = button.text + %progress_bar_backup.visible = true + button.text = "Backup Running" + var parameters = ["backup_retrodeck_userdata"] + var run_result = await class_functions.run_thread_command(class_functions.wrapper_command, parameters, true) + if run_result["exit_code"] == 0: + button.text = "Backup Complete - " + class_functions.rdhome + "/backup" + class_functions.logger("d","User Backup Completed") + await class_functions.wait(3.0) + button.text = original_txt + %progress_bar_backup.visible = false + else: + button.text = "Backup Failed" + class_functions.logger("e","User Backup Failed. " + run_result["exit_code"]) + %progress_bar_backup.visible = false + button.disabled = false + +func check_internet_connection(): + class_functions.logger("i","Check Internet Connection") + %check_conn_button.text = "CHECK CONNECTION" + http_request.request("https://retrodeck.net/") + +func _on_request_completed(_result, response_code, _headers, _body): + if response_code == 200: + class_functions.logger("i","Internet Connection Succesful") + %check_conn_button.button_pressed = true + %check_conn_button.text += " - CONNECTED" + else: + class_functions.logger("d","Internet Connection Failed") + %check_conn_button.button_pressed = false + %check_conn_button.text += " - NOT CONNECTED: " + str(response_code) diff --git a/tools/configurator/scripts/app_data.gd b/tools/configurator/scripts/app_data.gd new file mode 100644 index 00000000..851b6ef5 --- /dev/null +++ b/tools/configurator/scripts/app_data.gd @@ -0,0 +1,9 @@ +extends Resource +class_name AppData + +#@export var about_links: Dictionary[String, Link] = {} +#@export var emulators: Dictionary[String, Emulator] = {} + +@export var about_links: Dictionary = {} +@export var emulators: Dictionary = {} +@export var cores: Dictionary = {} diff --git a/tools/configurator/scripts/class_functions.gd b/tools/configurator/scripts/class_functions.gd new file mode 100644 index 00000000..7ed2fe34 --- /dev/null +++ b/tools/configurator/scripts/class_functions.gd @@ -0,0 +1,539 @@ +class_name ClassFunctions + +extends Control + +# Test comment + +@onready var main_scene = get_tree().root.get_node("Control") +var log_result: Dictionary +var log_parameters: Array +const globals_sh_file_path: String = "/app/libexec/global.sh" +const wrapper_command: String = "/app/tools/retrodeck_function_wrapper.sh" +const config_file_path = "/var/config/retrodeck/retrodeck.cfg" +const json_file_path = "/var/config/retrodeck/retrodeck.json" +var config_folder_path = "/var/config/" +const esde_file_path = "/var/config/ES-DE/settings/es_settings.xml" +var desktop_mode: String = OS.get_environment("XDG_CURRENT_DESKTOP") +var rd_conf: String +var lockfile: String +var rdhome: String +var roms_folder: String +var saves_folder: String +var states_folder: String +var bios_folder: String +var rd_log: String +var rd_log_folder: String +var rd_version: String +var gc_version: String +var sound_effects: bool +var volume_effects: int +var title: String +var quick_resume_status: bool +var update_check: bool +var abxy_state: String +var ask_to_exit_state: String +var border_state: String +var widescreen_state: String +var quick_rewind_state: String +var cheevos_state: String +var cheevos_hardcore_state: String +var cheevos_token_state: String +var font_select: int +var font_tab_size: int = 35 +var font_size: int = 20 +var steam_sync: bool +var locale: String +var button_list: Array = ["button_swap_button", "ask_to_exit_button", "border_button", "widescreen_button", "quick_rewind_button", "reset_retrodeck_button", "reset_all_emulators_button", "cheevos_button", "cheevos_hardcore_button"] +signal update_global_signal +var rekku_state: bool = false +var press_time: float = 0.0 +var is_state_pressed: bool = false +var PRESS_DURATION: float = 3.0 +var current_button: Button = null +var current_progress: ProgressBar = null +var current_state: String = "" + +func _ready(): + read_values_states() + +func read_values_states() -> void: + var config = data_handler.parse_config_to_json(config_file_path) + data_handler.config_save_json(config, json_file_path) + #rd_log_folder = config["paths"]["logs_folder"] + rd_log_folder = "/var/config/retrodeck/logs" + rd_log = rd_log_folder + "/retrodeck.log" + rdhome = config["paths"]["rdhome"] + roms_folder = config["paths"]["roms_folder"] + saves_folder = config["paths"]["saves_folder"] + states_folder = config["paths"]["states_folder"] + bios_folder = config["paths"]["bios_folder"] + rd_version = config["version"] + rd_conf = extract_text(globals_sh_file_path, "rd_conf") + lockfile = extract_text(globals_sh_file_path, "lockfile") + locale = extract_text(esde_file_path, "esde") + gc_version = ProjectSettings.get_setting("application/config/version") + title = "\n " + rd_version + "\nConfigurator\n " + gc_version + quick_resume_status = config["quick_resume"]["retroarch"] + update_check = config["options"]["update_check"] + abxy_state = multi_state("abxy_button_swap", abxy_state) + ask_to_exit_state = multi_state("ask_to_exit", ask_to_exit_state) + border_state = multi_state("borders", border_state) + widescreen_state = multi_state("widescreen", widescreen_state) + quick_rewind_state = multi_state("rewind", quick_rewind_state) + sound_effects = config["options"]["sound_effects"] + steam_sync = config["options"]["steam_sync"] + volume_effects = int(config["options"]["volume_effects"]) + font_select = int(config["options"]["font"]) + cheevos_token_state = str(config["options"]["cheevos_login"]) + cheevos_state = multi_state("cheevos", cheevos_state) + cheevos_hardcore_state = multi_state("cheevos_hardcore", cheevos_hardcore_state) + +func multi_state(section: String, state: String) -> String: + var config_section:Dictionary = data_handler.get_elements_in_section(config_file_path, section) + var true_count: int = 0 + var false_count: int = 0 + for value in config_section.values(): + if value == "true": + true_count += 1 + else: + false_count += 1 + if true_count == config_section.size(): + state = "true" + elif false_count == config_section.size(): + state = "false" + else: + state = "mixed" + return state + +func logger_bash(log_type: String, log_text: String) -> void: + var log_header_text = "gdc_" + log_header_text+=log_text + log_parameters = ["log", log_type, log_header_text] + log_result = await run_thread_command(wrapper_command,log_parameters, false) + +func logger(log_type: String, log_text: String) -> void: + var log_dir: DirAccess = DirAccess.open(rd_log) + var log_file: FileAccess + var log_header: String = "[GODOT] " + var datetime: Dictionary = Time.get_datetime_dict_from_system() + var unixtime: float = Time.get_unix_time_from_system() + var msec: int = (unixtime - floor(unixtime)) * 1000 # finally, real ms! Thanks, monkeyx + var timestamp: String = "[%d-%02d-%02d %02d:%02d:%02d.%03d]" % [ + datetime.year, datetime.month, datetime.day, + datetime.hour, datetime.minute, datetime.second, msec] # real ms!! + var log_line: String = timestamp + + match log_type: + 'w': + log_line += " [WARNING] " + log_header + # print("Warning, mate") + 'e': + log_line += " [ERROR] " + log_header + # print("Error, mate") + 'i': + log_line += " [INFO] " + log_header + # print("Info, mate") + 'd': + log_line += " [DEBUG] " + log_header + # print("Debug, mate") + _: + log_line += " " + log_header + print("No idea, mate") + log_line += log_text + # print(log_line) + + if not log_dir: + log_dir = DirAccess.open("res://") #open something valid to create an instance + print(log_dir.make_dir_recursive(rd_log_folder)) + if log_dir.make_dir_recursive(rd_log_folder) != OK: + print("Something wrong with log directory - ", rd_log_folder) + return + + if not FileAccess.open(rd_log, FileAccess.READ): + log_file = FileAccess.open(rd_log, FileAccess.WRITE_READ) # to create a file if not there + else: + log_file = FileAccess.open(rd_log, FileAccess.READ_WRITE) # to not truncate + + if log_file: + log_file.seek_end() + log_file.store_line(log_line) + log_file.close() + else: + print("Something wrong with log file - ", rd_log) + +func array_to_string(arr: Array) -> String: + var text: String + for line in arr: + text = line.strip_edges() + "\n" + return text + +func wait (seconds: float) -> void: + await get_tree().create_timer(seconds).timeout + +# TODO This should be looked at again when GoDot 4.3 ships as has new OS.execute_with_pipe +func execute_command(command: String, parameters: Array, console: bool) -> Dictionary: + var result = {} + var output = [] + var exit_code = OS.execute(command, parameters, output, console) ## add if exit == 0 etc + result["output"] = class_functions.array_to_string(output) + result["exit_code"] = exit_code + return result + +func run_command_in_thread(command: String, paramaters: Array, console: bool) -> Dictionary: + var thread = Thread.new() + thread.start(execute_command.bind(command,paramaters,console)) + while thread.is_alive(): + await get_tree().process_frame + return thread.wait_to_finish() + +func run_thread_command(command: String, parameters: Array, console: bool) -> Dictionary: + log_result = await run_command_in_thread(command, parameters, console) + return log_result + +func process_url_image(body) -> Texture: + var image = Image.new() + image.load_png_from_buffer(body) + var texture = ImageTexture.create_from_image(image) + return texture + +func launch_help(url: String) -> void: + #OS.unset_environment("LD_PRELOAD") + #OS.set_environment("XDG_CURRENT_DESKTOP", "KDE") + #var launch = class_functions.execute_command("xdg-open",[url], false) + #var launch = class_functions.execute_command("org.mozilla.firefox",[url], false) + OS.shell_open(url) + +func import_csv_data(file_path: String) -> Dictionary: + # check if file exists + var data_dict: Dictionary + var file = FileAccess.open(file_path,FileAccess.READ) + if file: + var csv_lines: PackedStringArray = file.get_as_text().strip_edges().split("\n") + for i in range(1, csv_lines.size()): # Start from 1 to skip the header + var line = csv_lines[i] + var columns = line.split(",") + if columns.size() >= 3: + var id = columns[0] + var url = columns[1] + var description = columns[2] + data_dict[id] = {"URL": url, "Description": description} + file.close() + else: + print ("Could not open file: %s", file_path) + + return data_dict + +func _import_data_lists(file_path: String) -> void: + var tk_about: Dictionary = import_csv_data(file_path) + for key in tk_about.keys(): + var entry = tk_about[key] + print("ID: " + key) + print("URL: " + entry["URL"]) + print("Description: " + entry["Description"]) + print("---") + +func import_text_file(file_path: String) -> String: + var content: String = "" + var file = FileAccess.open(file_path, FileAccess.READ) + if file == null: + logger("e","Failed to open file %s" % file_path) + return content + while not file.eof_reached(): + content += file.get_line() + "\n" + #file.close + return content + +func map_locale_id(current_locale: String) -> int: + var int_locale: int + match current_locale: + "en": + int_locale = 0 + "it": + int_locale = 1 + "de": + int_locale = 2 + "se": + int_locale = 3 + "uk": + int_locale = 4 + "jp": + int_locale = 5 + "cn": + int_locale = 6 + return int_locale + +func environment_data() -> void: + var env_result = execute_command("printenv",[], true) + var file = FileAccess.open(OS.get_environment("HOME") + "/sdenv.txt",FileAccess.WRITE) + if file != null: + file.store_string(env_result["output"]) + file.close() + +func display_json_data() -> void: + var app_data := AppData.new() + app_data = data_handler.app_data + #data_handler.add_emulator() + #data_handler.modify_emulator_test() + if app_data: + #var website_data: Link = app_data.about_links["rd_web"] + #print (website_data.name,"-",website_data.url,"-",website_data.description,"-",website_data.url) + ##print (app_data.about_links["rd_web"]["name"]) + #var core_data: Core = app_data.cores["gambatte_libetro"] + #print (core_data.name) + #for property: CoreProperty in core_data.properties: + #print("Cheevos: ", property.cheevos) + #print("Cheevos Hardcore: ", property.cheevos_hardcore) + #print("Quick Resume: ", property.quick_resume) + #print("Rewind: ", property.rewind) + #print("Borders: ", property.borders) + #print("Widescreen: ", property.widescreen) + #print("ABXY_button:", property.abxy_button) + for key in app_data.emulators.keys(): + var emulator = app_data.emulators[key] + # Display the properties of each emulator + print("System Name: ", emulator.name) + #print("Description: ", emulator.description) + #print("System: ", emulator.systen) + #print("Help URL: ", emulator.url) + #print("Properties:") + for property: EmulatorProperty in emulator.properties: + #print("Cheevos: ", property.cheevos) + #print("Borders: ", property.borders) + print("ABXY_button:", property.abxy_button) + #print("multi_user_config_dir: ", property.multi_user_config_dir) + + for key in app_data.cores.keys(): + var core = app_data.cores[key] + print("Core Name: ", core.name) + #print("Description: ", core.description) + #print("Properties:") + for property: CoreProperty in core.properties: + #print("Cheevos: ", property.cheevos) + #print("Cheevos Hardcore: ", property.cheevos_hardcore) + #print("Quick Resume: ", property.quick_resume) + #print("Rewind: ", property.rewind) + #print("Borders: ", property.borders) + #print("Widescreen: ", property.widescreen) + print("ABXY_button:", property.abxy_button) + else: + print ("No emulators") + +func slider_function(value: float, slide: HSlider) -> void: + volume_effects = int(slide.value) + data_handler.change_cfg_value(config_file_path, "volume_effects", "options", str(slide.value)) + +func run_function(button: Button, preset: String) -> void: + if button.button_pressed: + update_global(button, preset, true) + else: + update_global(button, preset, false) + +func update_global(button: Button, preset: String, state: bool) -> void: + #TODO pass state as an object in future version + var result: Array + result.append("make_preset_changes") + var config_section:Dictionary = data_handler.get_elements_in_section(config_file_path, preset) + match button.name: + "quick_resume_button", "retroarch_quick_resume_button": + quick_resume_status = state + result.append_array(data_handler.change_cfg_value(config_file_path, "retroarch", preset, str(state))) + change_global(result, button, str(quick_resume_status)) + "update_notification_button": + update_check = state + #result.append("build_preset_config") + result.append_array(data_handler.change_cfg_value(config_file_path, preset, "options", str(state))) + #change_global(result, button, str(result)) + "sound_button": + sound_effects = state + result.append_array(data_handler.change_cfg_value(config_file_path, preset, "options", str(state))) + logger("i", "Enabled: %s" % (button.name)) + update_global_signal.emit([button.name]) + "steam_sync_button": + steam_sync = state + result.append_array(data_handler.change_cfg_value(config_file_path, preset, "options", str(state))) + logger("i", "Enabled: %s" % (button.name)) + update_global_signal.emit([button.name]) + "cheevos_connect_button": + cheevos_token_state = str(state) + result.append_array(data_handler.change_cfg_value(config_file_path, preset, "options", str(state))) + logger("i", "Enabled: %s" % (button.name)) + update_global_signal.emit([button.name]) + "button_swap_button": + if abxy_state != "mixed": + abxy_state = str(state) + result.append_array([preset]) + result.append_array([config_section.keys()]) + change_global(result, button, abxy_state) + "ask_to_exit_button": + if ask_to_exit_state != "mixed": + ask_to_exit_state = str(state) + result.append_array([preset]) + result.append_array([config_section.keys()]) + change_global(result, button, ask_to_exit_state) + "border_button": + if border_state != "mixed": + border_state = str(state) + #result.append_array(data_handler.change_all_cfg_values(config_file_path, config_section, preset, str(state))) + result.append_array([preset]) + result.append_array([config_section.keys()]) + change_global(result, button, border_state) + if widescreen_state == "true" or widescreen_state == "mixed": + var _button_tmp = main_scene.get_node("%widescreen_button") + #Remove last array item or tries to append again + result.clear() + result.append_array([preset]) + config_section = data_handler.get_elements_in_section(config_file_path, "widescreen") + widescreen_state = "false" + result.append_array([config_section.keys()]) + change_global(result, button, widescreen_state) + "widescreen_button": + if widescreen_state != "mixed": + widescreen_state = str(state) + result.append_array([preset]) + result.append_array([config_section.keys()]) + change_global(result, button, widescreen_state) + if border_state == "true" or border_state == "mixed": + var button_tmp = main_scene.get_node("%border_button") + #Remove last array item or tries to append again + result.clear() + result.append_array([preset]) + config_section = data_handler.get_elements_in_section(config_file_path, "borders") + border_state = "mixed" + result.append_array([config_section.keys()]) + change_global(result, button_tmp, border_state) + "quick_rewind_button": + if quick_rewind_state != "mixed": + quick_rewind_state = str(state) + result.append_array([preset]) + result.append_array([config_section.keys()]) + change_global(result, button, quick_rewind_state) + "cheevos_button": + if cheevos_state != "mixed": + cheevos_state = str(state) + result.append_array([preset]) + result.append_array([config_section.keys()]) + change_global(result, button, cheevos_state) + #if cheevos_state == "false": + #cheevos_hardcore_state = "false" + #result.append_array(data_handler.change_all_cfg_values(config_file_path, config_section, "cheevos_hardcore", class_functions.cheevos_hardcore_state)) + #change_global(result, button, cheevos_hardcore_state) + "cheevos_hardcore_button": + if cheevos_hardcore_state != "mixed": + cheevos_hardcore_state = str(state) + result.append_array([preset]) + result.append_array([config_section.keys()]) + change_global(result, button, cheevos_hardcore_state) + +func change_global(parameters: Array, button: Button, state: String) -> void: + #print (parameters) + match parameters[1]: + "abxy_button_swap", "ask_to_exit", "borders", "widescreen", "rewind", "cheevos", "cheevos_hardcore": + var command_parameter: Array + if state == "true": + parameters[2] =String(",").join(parameters[2]) + command_parameter = [parameters[0],parameters[1],parameters[2]] + else: + command_parameter = [parameters[0],parameters[1]] + logger("i", "Change Global Multi: %s " % str(command_parameter)) + var result: Dictionary = await run_thread_command(wrapper_command, command_parameter, false) + #var result = OS.execute_with_pipe(wrapper_command, command_parameter) + logger("i", "Exit code: %s" % result["exit_code"]) + _: + logger("i", "Change Global Single: %s" % str(parameters)) + var result: Dictionary = await run_thread_command(wrapper_command, parameters, false) + #var result = OS.execute_with_pipe(wrapper_command, parameter) + #var result = OS.create_process(wrapper_command, cparameter) + if result["exit_code"] == 0: + logger("i", "Exit code: %s" % result["exit_code"]) + else: + logger("e", "Exit code: %s" % result["exit_code"]) + parameters.append(button) + parameters.append(state) + update_global_signal.emit(parameters) + +func extract_text(file_path: String, extract: String) -> String: + var file = FileAccess.open(file_path, FileAccess.ModeFlags.READ) + var pattern: String + if file: + var regex = RegEx.new() + if extract != "esde": + pattern = extract + '="([^"]+)"' + else: + pattern = '' + regex.compile(pattern) + while not file.eof_reached(): + var line: String = file.get_line().strip_edges() + var result: RegExMatch = regex.search(line) + if result: + return result.get_string(1) + file.close() + else: + logger("e", "Could not open file: %s" % file_path) + return "" + +func _on_button_released(progress: ProgressBar) -> void: + is_state_pressed = false + progress.visible = false + press_time = 0.0 + progress.value = 0.0 + current_button = null + current_progress = null + current_state == null + +func _do_action(progress: ProgressBar, button: Button, state: String) -> void: + match [class_functions.button_list]: + [class_functions.button_list]: + current_state = state + current_button = button + current_progress = progress + current_progress.visible = true + is_state_pressed = true + +func _do_complete(button: Button) ->void: + #TODO use object for state + if is_state_pressed and button == current_button: + match button.name: + "button_swap_button": + class_functions.abxy_state = "false" + "ask_to_exit_button": + class_functions.ask_to_exit_state = "false" + "border_button": + class_functions.border_state = "false" + "widescreen_button": + class_functions.widescreen_state = "false" + "quick_rewind_button": + class_functions.quick_rewind_state = "false" + "cheevos_button": + class_functions.cheevos_state = "false" + "cheevos_hardcore_button": + class_functions.cheevos_hardcore_state = "false" + "reset_retrodeck_button": + var dir = DirAccess.open(class_functions.rd_conf.get_base_dir()) + if dir is DirAccess: + dir.rename(class_functions.rd_conf, class_functions.rd_conf.get_base_dir() + "/retrodeck.bak") + dir.remove(class_functions.lockfile) + class_functions.change_global(["prepare_component", "reset", "retrodeck"], button, "") + button.text = "RESETTING-NOW" + await class_functions.wait(2.0) + button.text = "CONFIGURATOR WILL NOW CLOSE" + await class_functions.wait(1.0) + get_tree().quit() + "reset_all_emulators_button": + var tmp_txt = button.text + button.text = "RESETTING-NOW" + class_functions.change_global(["prepare_component", "reset", "all"], button, "") + await class_functions.wait(2.0) + button.text = "RESET COMPLETED" + await class_functions.wait(3.0) + button.text = tmp_txt + button.toggle_mode = true + +func _hide_show_containers(button: Button, grid_container: GridContainer) -> void: + match button.name: + "decorations_button", "systems_button", "system_button", "cheevos_collapse_button", "future_button": + grid_container.visible = true + if button.toggle_mode: + button.toggle_mode=false + grid_container.visible = false + else: + button.toggle_mode=true diff --git a/tools/configurator/scripts/controller_guide.gd b/tools/configurator/scripts/controller_guide.gd new file mode 100644 index 00000000..753efc99 --- /dev/null +++ b/tools/configurator/scripts/controller_guide.gd @@ -0,0 +1,13 @@ +extends PanelContainer + +func _process(_delta): + # TODO hack. Use state machine? + if %action_gridcontainer.visible == true: + if Input.is_action_pressed("back_button"): + %action_gridcontainer.visible = false + %retroarch_button.grab_focus() + for i in range(%system_gridcontainer.get_child_count()): + var child = %system_gridcontainer.get_child(i) + if child is Button: + child.visible=true + child.toggle_mode = false diff --git a/tools/configurator/scripts/core.gd b/tools/configurator/scripts/core.gd new file mode 100644 index 00000000..835eb071 --- /dev/null +++ b/tools/configurator/scripts/core.gd @@ -0,0 +1,8 @@ +extends Resource + +class_name Core + +@export var name: String +@export var description: String +@export var system: Array +@export var properties: Array[CoreProperty] diff --git a/tools/configurator/scripts/core_property.gd b/tools/configurator/scripts/core_property.gd new file mode 100644 index 00000000..a744712e --- /dev/null +++ b/tools/configurator/scripts/core_property.gd @@ -0,0 +1,14 @@ +extends Resource + +class_name CoreProperty + +@export var borders: bool +@export var abxy_button: bool +@export var cheevos: bool +@export var cheevos_hardcore: bool +@export var ask_to_exit: bool +@export var multi_user_config_dir: String +@export var universal_dyn_input: bool +@export var quick_resume: bool +@export var widescreen: bool +@export var rewind: bool diff --git a/tools/configurator/scripts/data_handler.gd b/tools/configurator/scripts/data_handler.gd new file mode 100644 index 00000000..b997b0d8 --- /dev/null +++ b/tools/configurator/scripts/data_handler.gd @@ -0,0 +1,326 @@ +class_name DataHandler + +extends Node + +var data_file_path = "/app/retrodeck/config/retrodeck/reference_lists/features.json" +var app_data: AppData + +func _ready(): + # Load the data when the scene is ready + app_data = load_base_data() + +func load_base_data() -> AppData: + var file = FileAccess.open(data_file_path, FileAccess.READ) + if file: + var json_data = file.get_as_text() + file.close() + #var json = JSON.new() + var parsed_data = JSON.parse_string(json_data) + if parsed_data: + var data_dict = parsed_data + var about_links = {} + for key in data_dict["about_links"].keys(): + var link_data = data_dict["about_links"][key] + var link = Link.new() + link.name = link_data["name"] + link.url = link_data["url"] + link.description = link_data["description"] + link.icon = link_data["icon"] + about_links[key] = link + + var emulators = {} + for key in data_dict["emulator"].keys(): + var emulator_data = data_dict["emulator"][key] + var emulator = Emulator.new() + emulator.name = emulator_data["name"] + emulator.description = emulator_data["description"] + if emulator_data.has("url"): + emulator.url = emulator_data["url"] + if emulator_data.has("system"): + emulator.system = str(emulator_data["system"]) + emulator.launch = emulator_data["launch"] + if emulator_data.has("properties"): + for property_data in emulator_data["properties"]: + #print (emulator,"----",property_data) + var property = EmulatorProperty.new() + if property_data.has("cheevos"): + property.cheevos = property_data.get("cheevos",true) + if property_data.has("cheevos_hardcore"): + property.cheevos_hardcore = property_data.get("cheevos_hardcore",true) + if property_data.has("abxy_button"): + property.abxy_button = property_data.get("abxy_button",true) + if property_data.has("multi_user_config_dir"): + property.multi_user_config_dir = property_data.get("multi_user_config_dir",true) + emulator.properties.append(property) + emulators[key] = emulator + #TODO add systems too + var cores = {} + for key in data_dict["emulator"]["retroarch"]["cores"].keys(): + var core_data = data_dict["emulator"]["retroarch"]["cores"][key] + var core = Core.new() + core.name = core_data["name"] + core.description = core_data["description"] + if core_data.has("properties"): + for property_data in core_data["properties"]: + #print (core.name,"----",property_data) + # inherit from RetroArch + var property = CoreProperty.new() + property.cheevos = true + property.cheevos_hardcore = true + property.quick_resume = true + if property_data.has("abxy_button"): + property.abxy_button = property_data.get("abxy_button",true) + if property_data.has("widescreen"): + property.widescreen = property_data.get("widescreen",true) + if property_data.has("borders"): + property.borders = property_data.get("borders",true) + if property_data.has("rewind"): + property.rewind = property_data.get("rewind",true) + core.properties.append(property) + cores[key] = core + + var app_dict = AppData.new() + app_dict.about_links = about_links + app_dict.emulators = emulators + app_dict.cores = cores + return app_dict + else: + class_functions.logger("e","Error parsing JSON ") + else: + class_functions.logger("e","Error opening file: %s" % file) + get_tree().quit() + return null + +func save_base_data(app_dict: AppData): + var file = FileAccess.open(data_file_path, FileAccess.READ) + var existing_data = {} + if file: + var json = JSON.new() + var error = json.parse(file.get_as_text()) + if error == OK: + existing_data = json.get_data() + file.close() + else: + print("File not found. Creating a new one.") + #var about_links ={} + var about_links_new = Link.new() + for key in app_dict.about_links.keys(): + var link = app_dict.about_links[key] + about_links_new[key] = { + "name": link.name, + "url": link.url, + "description": link.description + } + var new_data_dict = {} + #var about_links = {} + var about_links = Link.new() + for key in app_dict.about_links.keys(): + var link = app_dict.about_links[key] + about_links[key] = { + "name": link.name, + "url": link.url, + "description": link.description + } + var emulators = {} + for key in app_dict.emulators.keys(): + var emulator = app_data.emulators[key] + var properties = [] + for property in emulator.properties: + properties.append({ + #"standalone": property.standalone, + "abxy_button": {"status": property.abxy_button} + }) + emulators[key] = { + "name": emulator.name, + "description": emulator.description, + "launch": emulator.launch, + "system": emulator.system, + "url": emulator.url, + "properties": properties + } + new_data_dict["about_links"] = about_links + new_data_dict["emulators"] = emulators + # Merge existing data with new data + for key in new_data_dict.keys(): + if existing_data.has(key): + var existing_dict = existing_data[key] + var new_dict = new_data_dict[key] + + # Merge dictionaries + for sub_key in new_dict.keys(): + existing_dict[sub_key] = new_dict[sub_key] + else: + existing_data[key] = new_data_dict[key] + # Serialize the combined data to JSON + #var json_text = JSON.new().stringify(existing_data, "\t") + #var json_text = json.stringify(existing_data, "\t") + var json_text = JSON.stringify(existing_data, "\t") + + # Open the file in append mode and write the new JSON data + file = FileAccess.open(data_file_path, FileAccess.WRITE) + file.store_string(json_text) + file.close() + +func parse_config_to_json(file_path: String) -> Dictionary: + var config = {} + var current_section = "" + var file = FileAccess.open(file_path, FileAccess.READ) + if file == null: + class_functions.logger("e","Failed to open file: " + file_path) + return config + while not file.eof_reached(): + var line = file.get_line().strip_edges() + if line.begins_with("[") and line.ends_with("]"): + current_section = line.substr(1, line.length() - 2) + config[current_section] = {} + elif line != "" and not line.begins_with("#"): + var parts = line.split("=") + if parts.size() == 2: + var key = parts[0].strip_edges() + var value = parts[1].strip_edges() + if value == "true": + value = true + elif value == "false": + value = false + if key == "version": + config[key] = value + else: + if current_section == "": + config[key] = value + else: + config[current_section][key] = value + file.close() + return config + +func config_save_json(config: Dictionary, json_file_path: String) -> void: + #var json = JSON.new() + var json_string = JSON.stringify(config, "\t") + + var file = FileAccess.open(json_file_path, FileAccess.WRITE) + if file != null: + file.store_string(json_string) + file.close() + else: + class_functions.logger("e", "File not found: %s" % json_file_path) + +func read_cfg_file(file_path: String) -> Array: + var lines: Array = [] + var file: FileAccess = FileAccess.open(file_path, FileAccess.ModeFlags.READ) + if file: + while not file.eof_reached(): + var line: String = file.get_line() + lines.append(line) + file.close() + else: + class_functions.logger("e", "File not found: %s" % file_path) + return lines + +func write_cfg_file(file_path: String, lines: Array, changes: Dictionary) -> void: + var file: FileAccess = FileAccess.open(file_path, FileAccess.ModeFlags.WRITE) + var current_section: String = "" + var line_count: int = lines.size() + for i in line_count: + var line: String = lines[i] + var trimmed_line: String = line.strip_edges() + if trimmed_line.begins_with("[") and trimmed_line.ends_with("]"): + current_section = trimmed_line.trim_prefix("[").trim_suffix("]")# trimmed_line.trim_prefix("["].trim_suffix("]") + file.store_line(line) + elif "=" in trimmed_line and current_section in changes: + var parts: Array = trimmed_line.split("=", false) + if parts.size() == 2: + var key: String = parts[0].strip_edges() + var original_value: String = parts[1].strip_edges() + if key in changes[current_section]: + var new_value: String = changes[current_section][key] + if new_value != original_value: + file.store_line("%s=%s" % [key, new_value]) + class_functions.logger("i", "Changed %s in section [%s] from %s to %s" % [key, current_section, original_value, new_value]) + else: + file.store_line(line) + else: + file.store_line(line) + else: + file.store_line(line) + else: + file.store_line(line) + if i == line_count - 2: + break + file.close() + +func change_cfg_value(file_path: String, system: String, section: String, new_value: String) -> Array: + var lines: Array = read_cfg_file(file_path) + var parameters: Array =[system, section] + var changes: Dictionary = {} + changes[section] = {system: new_value} + class_functions.logger("i", "Change: System: %s Section %s New Value: %s" % [system, section, new_value]) + write_cfg_file(file_path, lines, changes) + return parameters + +func change_all_cfg_values(file_path: String, systems: Dictionary, section: String, new_value: String) -> Array: + var lines: Array = read_cfg_file(file_path) + var parameters: Array =[systems, section] + var changes: Dictionary = {} + var current_section: String + for line in lines: + var trimmed_line: String = line.strip_edges() + if trimmed_line.begins_with("[") and trimmed_line.ends_with("]"): + current_section = trimmed_line.trim_prefix("[").trim_suffix("]") + if current_section == section: + changes[current_section] = {} + elif "=" in trimmed_line and current_section == section: + var parts: Array = trimmed_line.split("=", false) + if parts.size() >= 2: + var key: String = parts[0].strip_edges() + changes[section][key] = new_value + class_functions.logger("i", "Change: Systems: %s Section %s New Value: %s" % [systems, section, new_value]) + write_cfg_file(file_path, lines, changes) + return parameters + +func get_elements_in_section(file_path: String, section: String) -> Dictionary: + var lines: Array = read_cfg_file(file_path) + var elements: Dictionary = {} + var current_section: String = "" + for line in lines: + var trimmed_line: String = line.strip_edges() + if trimmed_line.begins_with("[") and trimmed_line.ends_with("]"): + current_section = trimmed_line.trim_prefix("[").trim_suffix("]") + elif "=" in trimmed_line and current_section == section: + var parts: Array = trimmed_line.split("=", false) + if parts.size() >= 2: + var key: String = parts[0].strip_edges() + var value: String = parts[1].strip_edges() + elements[key] = value + return elements + +func read_change_regex(file_path: String, key: String, new_value: String, use_quotes: bool = true) -> String: + var file := FileAccess.open(file_path, FileAccess.READ_WRITE) + if file == null: + print("Error: Could not open the file - %s" % file_path) + return "" + var content := file.get_as_text() + file.close() + var pattern := "" + if use_quotes: + pattern = '%s\\s*=\\s*"(.*?)"' % key + else: + pattern = '%s\\s*=\\s*(.*)' % key # For keys without quotes + var regex := RegEx.new() + regex.compile(pattern) + var match := regex.search(content) + if match == null: + print("Key %s not found for match - %s" % [key, match]) + return "" + var current_value := match.get_string(1) + if new_value == current_value: + print (current_value) + return current_value + var updated_content := "" + if use_quotes: + updated_content = regex.sub(content, '%s = "%s"' % [key, new_value]) + else: + updated_content = regex.sub(content, '%s = %s' % [key, new_value]) + file = FileAccess.open(file_path, FileAccess.WRITE) + file.store_string(updated_content) + file.close() + print("File updated successfully") + return new_value diff --git a/tools/configurator/scripts/data_handler_bak.gd b/tools/configurator/scripts/data_handler_bak.gd new file mode 100644 index 00000000..ee269da6 --- /dev/null +++ b/tools/configurator/scripts/data_handler_bak.gd @@ -0,0 +1,391 @@ +#class_name DataHandler + +extends Node + +var data_file_path = "/app/retrodeck/config/retrodeck/reference_lists/features.json" +var app_data: AppData + +func _ready(): + # Load the data when the scene is ready + app_data = load_base_data() + +func load_base_data() -> AppData: + var file = FileAccess.open(data_file_path, FileAccess.READ) + if file: + var json_data = file.get_as_text() + file.close() + #var json = JSON.new() + var parsed_data = JSON.parse_string(json_data) + if parsed_data: + var data_dict = parsed_data + var about_links = {} + for key in data_dict["about_links"].keys(): + var link_data = data_dict["about_links"][key] + var link = Link.new() + link.name = link_data["name"] + link.url = link_data["url"] + link.description = link_data["description"] + link.icon = link_data["icon"] + about_links[key] = link + + var emulators = {} + for key in data_dict["emulator"].keys(): + var emulator_data = data_dict["emulator"][key] + var emulator = Emulator.new() + emulator.name = emulator_data["name"] + emulator.description = emulator_data["description"] + emulator.url = emulator_data["url"] + #emulator.system = emulator_data["system"] + emulator.launch = emulator_data["launch"] + if emulator_data.has("properties"): + for property_data in emulator_data["properties"]: + #print (emulator,"----",property_data) + var property = EmulatorProperty.new() + if property_data.has("cheevos"): + property.cheevos = property_data.get("cheevos",true) + if property_data.has("cheevos_hardcore"): + property.cheevos_hardcore = property_data.get("cheevos_hardcore",true) + if property_data.has("abxy_button"): + property.abxy_button = property_data.get("abxy_button",true) + if property_data.has("multi_user_config_dir"): + property.multi_user_config_dir = property_data.get("multi_user_config_dir",true) + emulator.properties.append(property) + emulators[key] = emulator + #TODO add systems too + var cores = {} + for key in data_dict["emulator"]["retroarch"]["cores"].keys(): + var core_data = data_dict["emulator"]["retroarch"]["cores"][key] + var core = Core.new() + core.name = core_data["name"] + core.description = core_data["description"] + if core_data.has("properties"): + for property_data in core_data["properties"]: + #print (core.name,"----",property_data) + # inherit from RetroArch + var property = CoreProperty.new() + property.cheevos = true + property.cheevos_hardcore = true + property.quick_resume = true + if property_data.has("abxy_button"): + property.abxy_button = property_data.get("abxy_button",true) + if property_data.has("widescreen"): + property.widescreen = property_data.get("widescreen",true) + if property_data.has("borders"): + property.borders = property_data.get("borders",true) + if property_data.has("rewind"): + property.rewind = property_data.get("rewind",true) + core.properties.append(property) + cores[key] = core + + var app_dict = AppData.new() + app_dict.about_links = about_links + app_dict.emulators = emulators + app_dict.cores = cores + return app_dict + else: + class_functions.logger("d","Error parsing JSON ") + else: + class_functions.logger("d","Error opening file: %s" % file) + get_tree().quit() + return null + +func save_base_data(app_dict: AppData): + var file = FileAccess.open(data_file_path, FileAccess.READ) + var existing_data = {} + if file: + var json = JSON.new() + var error = json.parse(file.get_as_text()) + if error == OK: + existing_data = json.get_data() + file.close() + else: + print("File not found. Creating a new one.") + #var about_links ={} + var about_links_new = Link.new() + for key in app_dict.about_links.keys(): + var link = app_dict.about_links[key] + about_links_new[key] = { + "name": link.name, + "url": link.url, + "description": link.description + } + var new_data_dict = {} + #var about_links = {} + var about_links = Link.new() + for key in app_dict.about_links.keys(): + var link = app_dict.about_links[key] + about_links[key] = { + "name": link.name, + "url": link.url, + "description": link.description + } + var emulators = {} + for key in app_dict.emulators.keys(): + var emulator = app_data.emulators[key] + var properties = [] + for property in emulator.properties: + properties.append({ + #"standalone": property.standalone, + "abxy_button": {"status": property.abxy_button} + }) + emulators[key] = { + "name": emulator.name, + "description": emulator.description, + "launch": emulator.launch, + "system": emulator.system, + "url": emulator.url, + "properties": properties + } + new_data_dict["about_links"] = about_links + new_data_dict["emulators"] = emulators + # Merge existing data with new data + for key in new_data_dict.keys(): + if existing_data.has(key): + var existing_dict = existing_data[key] + var new_dict = new_data_dict[key] + + # Merge dictionaries + for sub_key in new_dict.keys(): + existing_dict[sub_key] = new_dict[sub_key] + else: + existing_data[key] = new_data_dict[key] + # Serialize the combined data to JSON + #var json_text = JSON.new().stringify(existing_data, "\t") + #var json_text = json.stringify(existing_data, "\t") + var json_text = JSON.stringify(existing_data, "\t") + + # Open the file in append mode and write the new JSON data + file = FileAccess.open(data_file_path, FileAccess.WRITE) + file.store_string(json_text) + file.close() + +# Function to modify an existing link +func modify_link(key: String, new_name: String, new_url: String, new_description: String): + var app_dict = load_base_data() # was app_data + if app_dict and app_dict.about_links.has(key): + var link = app_dict.about_links[key] + link.name = new_name + link.url = new_url + link.description = new_description + app_dict.about_links[key] = link + save_base_data(app_dict) + print("Link modified successfully") + else: + print("Link not found") + +# Function to modify an existing emulator +func modify_emulator(key: String, new_name: String, new_launch: String, new_description: String, new_properties: Array): + #data_handler.modify_emulator_test() + var app_dict = load_base_data() # was app_data + if app_dict and app_dict.emulators.has(key): + var emulator = app_dict.emulators[key] + emulator.name = new_name + emulator.description = new_description + emulator.launch = new_launch + + # Update properties + emulator.properties.clear() + for property in new_properties: + var new_property = EmulatorProperty.new() + new_property.borders = property.borders + new_property.abxy_button = property.abxy_button + new_property.ask_to_exit = property.ask_to_exit + new_property.cheevos = property.cheevos + emulator.properties.append(new_property) + app_dict.emulators[key] = emulator + save_base_data(app_dict) + print("Emulator modified successfully") + else: + print("Emulator not found") + + +func add_emulator() -> void: + #data_handler.add_emulator() + var link = Link.new() + link.name = "Example Site" + link.url = "https://example.com" + link.description = "An example description." + app_data.about_links["example_site"] = link + var emulator = Emulator.new() + emulator.name = "Example System" + emulator.description = "An example emulator." + emulator.launch = "launcher" + var property = EmulatorProperty.new() + #property.standalone = true + property.abxy_button = false + emulator.properties.append(property) + app_data.emulators["example_emulator"] = emulator + data_handler.save_base_data(app_data) + +func modify_emulator_test() -> void: + data_handler.modify_link("example_site", "Updated Site", "https://updated-example.com", "Updated description.") + var new_properties = [] + var new_property = EmulatorProperty.new() + #new_property.standalone = false + new_property.abxy_button = true + new_properties.append(new_property) + data_handler.modify_emulator("example_emulator", "Updated System", "launcher", "Updated description", new_properties) + +func parse_config_to_json(file_path: String) -> Dictionary: + var config = {} + var current_section = "" + var file = FileAccess.open(file_path, FileAccess.READ) + if file == null: + class_functions.logger("e","Failed to open file: " + file_path) + return config + while not file.eof_reached(): + var line = file.get_line().strip_edges() + if line.begins_with("[") and line.ends_with("]"): + current_section = line.substr(1, line.length() - 2) + config[current_section] = {} + elif line != "" and not line.begins_with("#"): + var parts = line.split("=") + if parts.size() == 2: + var key = parts[0].strip_edges() + var value = parts[1].strip_edges() + if value == "true": + value = true + elif value == "false": + value = false + if key == "version": + config[key] = value + else: + if current_section == "": + config[key] = value + else: + config[current_section][key] = value + file.close() + return config + +func config_save_json(config: Dictionary, json_file_path: String) -> void: + #var json = JSON.new() + var json_string = JSON.stringify(config, "\t") + + var file = FileAccess.open(json_file_path, FileAccess.WRITE) + if file != null: + file.store_string(json_string) + file.close() + else: + class_functions.logger("e", "File not found: %s" % json_file_path) + +func read_cfg_file(file_path: String) -> Array: + var lines: Array = [] + var file: FileAccess = FileAccess.open(file_path, FileAccess.ModeFlags.READ) + if file: + while not file.eof_reached(): + var line: String = file.get_line() + lines.append(line) + file.close() + else: + class_functions.logger("e", "File not found: %s" % file_path) + return lines + +func write_cfg_file(file_path: String, lines: Array, changes: Dictionary) -> void: + var file: FileAccess = FileAccess.open(file_path, FileAccess.ModeFlags.WRITE) + var current_section: String = "" + var line_count: int = lines.size() + for i in line_count: + var line: String = lines[i] + var trimmed_line: String = line.strip_edges() + if trimmed_line.begins_with("[") and trimmed_line.ends_with("]"): + current_section = trimmed_line.trim_prefix("[").trim_suffix("]")# trimmed_line.trim_prefix("["].trim_suffix("]") + file.store_line(line) + elif "=" in trimmed_line and current_section in changes: + var parts: Array = trimmed_line.split("=", false) + if parts.size() == 2: + var key: String = parts[0].strip_edges() + var original_value: String = parts[1].strip_edges() + if key in changes[current_section]: + var new_value: String = changes[current_section][key] + if new_value != original_value: + file.store_line("%s=%s" % [key, new_value]) + class_functions.logger("i", "Changed %s in section [%s] from %s to %s" % [key, current_section, original_value, new_value]) + else: + file.store_line(line) + else: + file.store_line(line) + else: + file.store_line(line) + else: + file.store_line(line) + if i == line_count - 2: + break + file.close() + +func change_cfg_value(file_path: String, system: String, section: String, new_value: String) -> Array: + var lines: Array = read_cfg_file(file_path) + var parameters: Array =[system, section] + var changes: Dictionary = {} + changes[section] = {system: new_value} + class_functions.logger("i", "Change: System: %s Section %s New Value: %s" % [system, section, new_value]) + write_cfg_file(file_path, lines, changes) + return parameters + +func change_all_cfg_values(file_path: String, systems: Dictionary, section: String, new_value: String) -> Array: + var lines: Array = read_cfg_file(file_path) + var parameters: Array =[systems, section] + var changes: Dictionary = {} + var current_section: String + for line in lines: + var trimmed_line: String = line.strip_edges() + if trimmed_line.begins_with("[") and trimmed_line.ends_with("]"): + current_section = trimmed_line.trim_prefix("[").trim_suffix("]") + if current_section == section: + changes[current_section] = {} + elif "=" in trimmed_line and current_section == section: + var parts: Array = trimmed_line.split("=", false) + if parts.size() >= 2: + var key: String = parts[0].strip_edges() + changes[section][key] = new_value + class_functions.logger("i", "Change: Systems: %s Section %s New Value: %s" % [systems, section, new_value]) + write_cfg_file(file_path, lines, changes) + return parameters + +func get_elements_in_section(file_path: String, section: String) -> Dictionary: + var lines: Array = read_cfg_file(file_path) + var elements: Dictionary = {} + var current_section: String = "" + for line in lines: + var trimmed_line: String = line.strip_edges() + if trimmed_line.begins_with("[") and trimmed_line.ends_with("]"): + current_section = trimmed_line.trim_prefix("[").trim_suffix("]") + elif "=" in trimmed_line and current_section == section: + var parts: Array = trimmed_line.split("=", false) + if parts.size() >= 2: + var key: String = parts[0].strip_edges() + var value: String = parts[1].strip_edges() + elements[key] = value + return elements + +func read_change_regex(file_path: String, key: String, new_value: String, use_quotes: bool = true) -> String: + var file := FileAccess.open(file_path, FileAccess.READ_WRITE) + if file == null: + print("Error: Could not open the file - %s" % file_path) + return "" + var content := file.get_as_text() + file.close() + var pattern := "" + if use_quotes: + pattern = '%s\\s*=\\s*"(.*?)"' % key + else: + pattern = '%s\\s*=\\s*(.*)' % key # For keys without quotes + var regex := RegEx.new() + regex.compile(pattern) + var match := regex.search(content) + if match == null: + print("Key %s not found for match - %s" % [key, match]) + return "" + var current_value := match.get_string(1) + if new_value == current_value: + print (current_value) + return current_value + var updated_content := "" + if use_quotes: + updated_content = regex.sub(content, '%s = "%s"' % [key, new_value]) + else: + updated_content = regex.sub(content, '%s = %s' % [key, new_value]) + file = FileAccess.open(file_path, FileAccess.WRITE) + file.store_string(updated_content) + file.close() + print("File updated successfully") + return new_value diff --git a/tools/configurator/scripts/emulator.gd b/tools/configurator/scripts/emulator.gd new file mode 100644 index 00000000..4eda2798 --- /dev/null +++ b/tools/configurator/scripts/emulator.gd @@ -0,0 +1,10 @@ +extends Resource + +class_name Emulator + +@export var name: String +@export var description: String +@export var launch: String +@export var url: String +@export var system: String +@export var properties: Array[EmulatorProperty] diff --git a/tools/configurator/scripts/emulator_property.gd b/tools/configurator/scripts/emulator_property.gd new file mode 100644 index 00000000..07d7a673 --- /dev/null +++ b/tools/configurator/scripts/emulator_property.gd @@ -0,0 +1,12 @@ +extends Resource + +class_name EmulatorProperty + +@export var borders: bool +@export var abxy_button: bool +@export var cheevos: bool +@export var cheevos_hardcore: bool +@export var ask_to_exit: bool +@export var multi_user_config_dir: String +@export var universal_dyn_input: bool +@export var quick_resume: bool diff --git a/tools/configurator/scripts/helper_text.gd b/tools/configurator/scripts/helper_text.gd new file mode 100644 index 00000000..022642f5 --- /dev/null +++ b/tools/configurator/scripts/helper_text.gd @@ -0,0 +1,21 @@ +extends Label + +@onready var helper_text_node = self + +func _ready(): + # Connect the signal that gets fired on every focus change + get_viewport().connect("gui_focus_changed", _on_focus_changed) + +func _on_focus_changed(selected_element:Control) -> void: + if selected_element != null and selected_element.has_meta("rekku") and class_functions.rekku_state == true: + #helper_text_node.text = selected_element.get_meta("rekku") + %pop_rtl.visible = true + %pop_rtl.text = selected_element.get_meta("rekku") + elif selected_element != null and selected_element.has_meta("description") and class_functions.rekku_state == false: + %pop_rtl.visible = true + var text_newline : String = selected_element.get_meta("description") as String + text_newline = text_newline.replace("\\n", "\n") + %pop_rtl.text = text_newline + +#func replace_newline(text: String) -> String: + #return text.replace("\n", "\n") diff --git a/tools/configurator/scripts/link.gd b/tools/configurator/scripts/link.gd new file mode 100644 index 00000000..5e598d3e --- /dev/null +++ b/tools/configurator/scripts/link.gd @@ -0,0 +1,8 @@ +extends Resource + +class_name Link + +@export var description: String +@export var name: String +@export var url: String +@export var icon: String diff --git a/tools/configurator/scripts/main.gd b/tools/configurator/scripts/main.gd new file mode 100644 index 00000000..95780b8c --- /dev/null +++ b/tools/configurator/scripts/main.gd @@ -0,0 +1,246 @@ +extends Control + +@onready var bios_type:int +var custom_theme: Theme +var log_option: OptionButton +var tab_container: TabContainer +var anim_logo: AnimatedSprite2D +var a_button_texture: Texture2D = load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0042.png") +var b_button_texture: Texture2D = load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0043.png") +var l1_button_texture: Texture2D = load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0797.png") +var r1_button_texture: Texture2D = load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0798.png") +var style_box_original: StyleBox = preload("res://assets/themes/default_theme.tres::StyleBoxFlat_0ahfc") +var font_size: int = 20 + +func _ready(): + _get_nodes() + _connect_signals() + _play_main_animations() + _set_up_globals([]) + custom_theme = get_tree().current_scene.custom_theme + $".".theme = custom_theme + if class_functions.locale == "automatic": + %locale_option.selected = class_functions.map_locale_id(OS.get_locale_language()) + %rd_title.text += class_functions.title + class_functions.logger("i","Started Godot configurator") + #class_functions.display_json_data() + # set current startup tab to match IDE + tab_container.current_tab = 0 + #add_child(class_functions) # Needed for threaded results Not need autoload? + var children = findElements(self, "Control") + for n: Control in children: #iterate the children + if (n.focus_mode == FOCUS_ALL): + n.mouse_entered.connect(_on_control_mouse_entered.bind(n)) #grab focus on mouse hover + #if (n.is_class("BaseButton") and n.disabled == true): #if button-like control and disabled + #n.self_modulate.a = 0.5 #make it half transparent + #combine_tkeys() + change_font(class_functions.font_select) + +func _input(event): + if Input.is_action_pressed("quit1") and Input.is_action_pressed("quit2"): + _exit() + if Input.is_action_pressed("next_tab"): + %r1_button.texture_normal = %r1_button.texture_pressed + elif Input.is_action_pressed("previous_tab"): + %l1_button.texture_normal = %l1_button.texture_pressed + elif Input.is_action_pressed("back_button"): + %b_button.texture_normal = %b_button.texture_pressed + elif Input.is_action_pressed("action_button"): + %a_button.texture_normal = %a_button.texture_pressed + else: + %r1_button.texture_normal = r1_button_texture + %l1_button.texture_normal = l1_button_texture + %a_button.texture_normal = a_button_texture + %b_button.texture_normal = b_button_texture + if event.is_action_pressed("quit"): + _exit() + +func _exit(): + class_functions.logger("i","Exited Godot configurator") + get_tree().root.propagate_notification(NOTIFICATION_WM_CLOSE_REQUEST) + get_tree().quit() + +func _get_nodes() -> void: + tab_container = get_node("%TabContainer") + anim_logo = get_node("%logo_animated") + log_option = get_node("%logs_button") + +func _connect_signals() -> void: + #signal_theme_changed.connect(_conf_theme) + %font_optionbutton.item_selected.connect(change_font) + log_option.item_selected.connect(_load_log) + %borders_button.pressed.connect(_hide_show_buttons.bind(%borders_button,%borders_gridcontainer,%decorations_gridcontainer)) + %button_layout.pressed.connect(_hide_show_buttons.bind(%button_layout,%borders_gridcontainer,%decorations_gridcontainer)) + %decorations_save.pressed.connect(_hide_show_buttons.bind(%decorations_save,%decorations_save.get_parent(),null)) + %decorations_button.pressed.connect(class_functions._hide_show_containers.bind(%decorations_button, %decorations_gridcontainer)) + %systems_button.pressed.connect(class_functions._hide_show_containers.bind(%systems_button, %systems_gridcontainer)) + + class_functions.update_global_signal.connect(_set_up_globals) + +func _load_log(index: int) -> void: + var log_content:String + match index: + 1: + class_functions.logger("i","Loading RetroDeck log") + log_content = class_functions.import_text_file(class_functions.rd_log_folder +"/retrodeck.log") + load_popup("RetroDeck Log", "res://components/popup.tscn", log_content) + 2: + class_functions.logger("i","Loading ES-DE log") + log_content = class_functions.import_text_file(class_functions.rd_log_folder +"/ES-DE/es_log.txt") + load_popup("ES-DE Log", "res://components/popup.tscn",log_content) + 3: + class_functions.logger("i","Loading RetroArch log") + log_content = class_functions.import_text_file(class_functions.rd_log_folder +"/retroarch/logs/log.txt") + load_popup("Retroarch Log", "res://components/popup.tscn",log_content) + +func _play_main_animations() -> void: + anim_logo.play() + + +# TODO Pass GridContainer(might need 2?) as above +# TODO load existing settings or default to enable all +func _hide_show_buttons(button: Button, buttons_gridcontainer: GridContainer, hidden_gridcontainer: GridContainer) -> void: + match button.name: + "borders_button", "button_layout": + buttons_gridcontainer.visible = true + if button.toggle_mode == false: + for i in range(buttons_gridcontainer.get_child_count()): + var child = buttons_gridcontainer.get_child(i) + child.button_pressed=true + for i in range(hidden_gridcontainer.get_child_count()): + var child = hidden_gridcontainer.get_child(i) + if child is Button and child != button: + child.visible=false + elif button.toggle_mode == true and %borders_gridcontainer.visible == true: + buttons_gridcontainer.visible = false + #button.toggle_mode = false + for i in range(hidden_gridcontainer.get_child_count()): + var child = hidden_gridcontainer.get_child(i) + if child is Button: + child.visible=true + child.toggle_mode = false + button.toggle_mode = true + +func findElements(node: Node, className: String, result: Array = []) -> Array: + if node.is_class(className): + result.push_back(node) + for child in node.get_children(): + result = findElements(child, className, result) + return result + +func _on_control_mouse_entered(control: Node): + control.grab_focus() + +func load_popup(title:String, content_path:String, display_text: String): + var popup = load("res://components/popup.tscn").instantiate() as Control + popup.set_title(title) + popup.set_content(content_path) + popup.set_display_text(display_text) + $Background.add_child(popup) + +func _on_bios_button_pressed(): + _play_main_animations() + bios_type = 1 + class_functions.logger("i","Bios Check") + load_popup("BIOS File Check", "res://components/bios_check/bios_popup_content.tscn","") + bios_type = 0 + +func _on_bios_button_expert_pressed(): + _play_main_animations() + bios_type = 2 + class_functions.logger("i","Advanced Bios Check") + load_popup("BIOS File Check", "res://components/bios_check/bios_popup_content.tscn","") + bios_type = 0 + +func _on_exit_button_pressed(): + _play_main_animations() + _exit() + +#func _on_locale_selected(index): + #match index: + #0: + #TranslationServer.set_locale("en") + #_: + #TranslationServer.set_locale("en") + #combine_tkeys() + +#func combine_tkeys(): #More as a test + #pass + #%cheats.text = tr("TK_CHEATS") + " " + tr("TK_SOON") # switched to access as a unique name as easier to refactor + #$Background/MarginContainer/TabContainer/TK_SYSTEM/ScrollContainer/VBoxContainer/HBoxContainer/GridContainer/cheats.text = tr("TK_CHEATS") + " " + tr("TK_SOON") + #%tate_mode.text = tr("TK_TATE") + " " + tr("TK_SOON") + #%hotkey_sound.text = tr("TK_HOTKEYSOUND") + " " + tr("TK_SOON") + #$Background/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/cheevos_container/cheevos_advanced_container/cheevos_hardcore.text = tr("TK_CHEEVOSHARDCORE") + " " + tr("TK_SOON") + #$Background/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/data_mng_container/saves_sync.text = tr("TK_SAVESSYNC") + " " + tr("TK_SOON") + #$Background/MarginContainer/TabContainer/TK_CONFIGURATOR/ScrollContainer/VBoxContainer/system_container/easter_eggs.text = tr("TK_EASTEREGGS") + " " + tr("TK_SOON") + +func _set_up_globals(state: Array) -> void: + #TODO on initial run pass array date? + #print (state) + %update_notification_button.button_pressed = class_functions.update_check + %quick_resume_button.button_pressed = class_functions.quick_resume_status + %retroarch_quick_resume_button.button_pressed = class_functions.quick_resume_status + %sound_button.button_pressed = class_functions.sound_effects + %volume_effects_slider.visible = class_functions.sound_effects + %steam_sync_button.button_pressed = class_functions.steam_sync + mixed_mode(%button_swap_button, class_functions.abxy_state) + mixed_mode(%ask_to_exit_button, class_functions.ask_to_exit_state) + mixed_mode(%border_button, class_functions.border_state) + mixed_mode(%widescreen_button, class_functions.widescreen_state) + mixed_mode(%quick_rewind_button, class_functions.quick_rewind_state) + mixed_mode(%cheevos_button, class_functions.cheevos_state) + mixed_mode(%cheevos_hardcore_button, class_functions.cheevos_hardcore_state) + #if class_functions.cheevos_state == "true": + #%cheevos_enabled_container.visible = true + #elif class_functions.cheevos_state == "false": + #%cheevos_enabled_container.visible = false + +func mixed_mode (button: Button, state: String) -> void: + match [class_functions.button_list]: + [class_functions.button_list]: + if state == "true": + button.button_pressed = true + button.add_theme_stylebox_override("normal", style_box_original) + elif state == "false": + button.button_pressed = false + button.add_theme_stylebox_override("normal", style_box_original) + elif state == "mixed": + mixed_status(button) + +func mixed_status (button: Button) -> void: + button.button_pressed = false + button.toggle_mode = false + var style_box = StyleBoxFlat.new() + style_box.bg_color = Color(0.941, 0.502, 0, 1) + style_box.border_color = Color(0.102, 0.624, 1, 1) + style_box.border_blend = true + style_box.corner_radius_top_left = 25 + style_box.corner_radius_top_right = 25 + style_box.corner_radius_bottom_right = 25 + style_box.corner_radius_bottom_left = 25 + style_box.border_width_left = 15 + style_box.border_width_top = 15 + style_box.border_width_right = 15 + style_box.border_width_bottom = 15 + button.add_theme_stylebox_override("normal", style_box) + +func change_font(index: int) -> void: + var font_file: FontFile + match index: + 1: + font_file = load("res://assets/fonts/munro/munro.ttf") + %TabContainer.add_theme_font_size_override("font_size", class_functions.font_tab_size) + font_size = 25 + 2: + font_file = load("res://assets/fonts/akrobat/Akrobat-Regular.otf") + %TabContainer.add_theme_font_size_override("font_size", class_functions.font_tab_size) + font_size = 25 + 3: + font_file = load("res://assets/fonts/OpenDyslexic3/OpenDyslexic3-Regular.ttf") + %TabContainer.add_theme_font_size_override("font_size", 15) + font_size = 16 + custom_theme = load("res://assets/themes/default_theme.tres") + custom_theme.set_font("font", "Control", font_file) + custom_theme.default_font_size = font_size + $".".theme = custom_theme + data_handler.change_cfg_value(class_functions.config_file_path, "font", "options", str(index)) diff --git a/tools/configurator/scripts/retrodeck.gd b/tools/configurator/scripts/retrodeck.gd new file mode 100644 index 00000000..4f0203ac --- /dev/null +++ b/tools/configurator/scripts/retrodeck.gd @@ -0,0 +1,17 @@ +extends Sprite2D + +@export var rotation_speed: float = 45.0 +@export var speed = 400 +const SCALE_MIN = 0.01 +const SCALE_MAX = 0.35 +const SCALE_SPEED = 0.5 +var scale_direction = 1.0 + +func _process(delta) -> void: + # Rotate the sprite + rotation_degrees += rotation_speed * delta + var new_scale = scale + Vector2(scale_direction, scale_direction) * SCALE_SPEED * delta + if new_scale.x < SCALE_MIN or new_scale.x > SCALE_MAX: + scale_direction *= -1 # Reverse direction if scale limit is reached + else: + scale = new_scale diff --git a/tools/configurator/tk_about.txt b/tools/configurator/tk_about.txt new file mode 100644 index 00000000..8683f08c --- /dev/null +++ b/tools/configurator/tk_about.txt @@ -0,0 +1,8 @@ +ID,URL,Description +rd_web,https://retrodeck.net/,Opens the RetroDECK Website in your default browser +rd_changelog,https://retrodeck.readthedocs.io/en/latest/wiki_rd_versions/version-history/,Opens the RetroDECK change log in your default browser +rd_wiki,https://retrodeck.readthedocs.io/en/latest/,Opens the RetroDECK Wiki in your default browser +rd_credits,https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/,Opens the RetroDECK Credits in your default browser +rd_donate,https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/,Opens Donations in your default browser +rd_contactus,https://github.com/XargonWan/RetroDECK,Opens the RetroDECK contact us section in your default browser +rd_licenses,https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/,Opens the RetroDECK licenses in your default browser diff --git a/tools/configurator/touch_external.sh b/tools/configurator/touch_external.sh new file mode 100755 index 00000000..dac7ac41 --- /dev/null +++ b/tools/configurator/touch_external.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +touch godot_configurator_external diff --git a/tools/configurator/translations/en_US.mo b/tools/configurator/translations/en_US.mo new file mode 100644 index 00000000..17b8a664 Binary files /dev/null and b/tools/configurator/translations/en_US.mo differ diff --git a/tools/configurator/translations/en_US.po b/tools/configurator/translations/en_US.po new file mode 100644 index 00000000..e540d226 --- /dev/null +++ b/tools/configurator/translations/en_US.po @@ -0,0 +1,515 @@ +# LANGUAGE translation for RetroDECKConfigurator for the following files: +# res://main.tscn +# res://scripts/TabContainer.gd +# +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: RetroDECKConfigurator\n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: en_US\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 3.4.2\n" + +#: main.tscn +msgid "GLOBALS" +msgstr "" + +#: main.tscn +msgid "ASK TO EXIT" +msgstr "Ask to EXit" + +#: main.tscn +msgid "BORDERS" +msgstr "" + +#: main.tscn +msgid "BUTTON SWAP\n" +msgstr "" + +#: main.tscn +msgid "MODS" +msgstr "" + +#: main.tscn +msgid "QUICK RESUME" +msgstr "" + +#: main.tscn +msgid "REWIND" +msgstr "" + +#: main.tscn +msgid "TATE MODE" +msgstr "" + +#: main.tscn +msgid "SHADERS" +msgstr "" + +#: main.tscn +msgid "WIDESCREEN" +msgstr "" + +#: main.tscn +msgid "SYSTEMS" +msgstr "" + +#: main.tscn +msgid "RETROARCH" +msgstr "" + +#: main.tscn +msgid "MAME" +msgstr "" + +#: main.tscn +msgid "RUFFLE" +msgstr "" + +#: main.tscn +msgid "MELONDS" +msgstr "" + +#: main.tscn +msgid "PCSX2" +msgstr "" + +#: main.tscn +msgid "DUCKSTATION" +msgstr "" + +#: main.tscn +msgid "PPSSPP" +msgstr "" + +#: main.tscn +msgid "VITA3K" +msgstr "" + +#: main.tscn +msgid "RPCS3" +msgstr "" + +#: main.tscn +msgid "RYUJINX" +msgstr "" + +#: main.tscn +msgid "DOLPHIN" +msgstr "" + +#: main.tscn +msgid "PRIMEHACK" +msgstr "" + +#: main.tscn +msgid "CEMU" +msgstr "" + +#: main.tscn +msgid "XEMU" +msgstr "" + +#: main.tscn +msgid "ES-DE" +msgstr "" + +#: main.tscn +msgid "HELP" +msgstr "" + +#: main.tscn +msgid "LAUNCH" +msgstr "" + +#: main.tscn +msgid "RESET" +msgstr "" + +#: main.tscn +msgid "INSTALL FIRMWARE" +msgstr "" + +#: main.tscn +msgid "TOOLS" +msgstr "" + +#: main.tscn +msgid "CHECK CONNECTION" +msgstr "" + +#: main.tscn +msgid "LOGS" +msgstr "" + +#: main.tscn +msgid "RetroDECK Log" +msgstr "" + +#: main.tscn +msgid "ES_DE Log" +msgstr "" + +#: main.tscn +msgid "Retroarch" +msgstr "" + +#: main.tscn +msgid "BIOS STANDARD" +msgstr "" + +#: main.tscn +msgid "BIOS EXPERT" +msgstr "" + +#: main.tscn +msgid "BACKUP USER DATA" +msgstr "" + +#: main.tscn +msgid "TK_CONTROLS" +msgstr "" + +#: main.tscn +msgid "TK_STEAMCONTEMP" +msgstr "" + +#: main.tscn +msgid "TK_INSTALL" +msgstr "" + +#: main.tscn +msgid "TK_FILETOOLS" +msgstr "" + +#: main.tscn +msgid "TK_USBTOOL" +msgstr "" + +#: main.tscn +msgid "TK_COMPRESSGAMES" +msgstr "" + +#: main.tscn +msgid "TK_MOVEFILES" +msgstr "" + +#: main.tscn +msgid "TK_GENTOOLS" +msgstr "" + +#: main.tscn +msgid "TK_GRIDINSTALL" +msgstr "" + +#: main.tscn +msgid "TK_FAVSTEAM" +msgstr "" + +#: main.tscn +msgid "TK_SCAN" +msgstr "" + +#: main.tscn +msgid "TK_SCUMMVMSCAN" +msgstr "" + +#: main.tscn +msgid "TK_MULTIFILE" +msgstr "" + +#: main.tscn +msgid "SETTINGS" +msgstr "" + +#: main.tscn +msgid "SYSTEM SETTINGS" +msgstr "" + +#: main.tscn +msgid "SOUND EFFECTS" +msgstr "" + +#: main.tscn +msgid "AUTO UPDATES" +msgstr "" + +#: main.tscn +msgid "CHOOSE FONT" +msgstr "" + +#: main.tscn +msgid "Default" +msgstr "" + +#: main.tscn +msgid "Modern" +msgstr "" + +#: main.tscn +msgid "OpenDyslexic3" +msgstr "" + +#: main.tscn +msgid "DEFAULT LANGUAGE" +msgstr "" + +#: main.tscn +msgid "RESET RETRODECK" +msgstr "" + +#: main.tscn +msgid "RESET ALL EMULATORS" +msgstr "" + +#: main.tscn +msgid "ACHIEVEMENTS" +msgstr "" + +#: main.tscn +msgid "RETRO ACHIEVEMENTS" +msgstr "" + +#: main.tscn +msgid "RETRO ACHIEVMENTS USERNAME" +msgstr "" + +#: main.tscn +msgid "username" +msgstr "" + +#: main.tscn +msgid "RETRO ACHIEVMENTS PASSWORD" +msgstr "" + +#: main.tscn +msgid "password" +msgstr "" + +#: main.tscn +msgid "LOGIN" +msgstr "" + +#: main.tscn +msgid "RETRO ACHIEVEMENTS HARDCORE" +msgstr "" + +#: main.tscn +msgid "NETPLAY" +msgstr "" + +#: main.tscn +msgid "TK_NETPLAY" +msgstr "" + +#: main.tscn +msgid "TK_NETPLAYID" +msgstr "" + +#: main.tscn +msgid "RetroDECK" +msgstr "" + +#: main.tscn +msgid "TK_NETPLAYADDRESS" +msgstr "" + +#: main.tscn +msgid "127.0.0.1" +msgstr "" + +#: main.tscn +msgid "TK_NETPLAYCONNECT" +msgstr "" + +#: main.tscn +msgid "FUTURE FEATURES" +msgstr "" + +#: main.tscn +msgid "TK_MULTIUSR" +msgstr "" + +#: main.tscn +msgid "TK_CUSTOMUSR" +msgstr "" + +#: main.tscn +msgid "TK_OFF" +msgstr "" + +#: main.tscn +msgid "TK_STEAMUSR" +msgstr "" + +#: main.tscn +msgid "TK_SAVESSYNC" +msgstr "" + +#: main.tscn +msgid "TK_FTPBTN" +msgstr "" + +#: main.tscn +msgid "TK_MUSIC" +msgstr "" + +#: main.tscn +msgid "TK_EASTEREGGS" +msgstr "" + +#: main.tscn +msgid "ABOUT" +msgstr "" + +#: main.tscn +msgid "ABOUT RETRODECK" +msgstr "" + +#: main.tscn +msgid "WIP" +msgstr "" + +#: main.tscn +msgid "DECORATIONS - Borders, Widescreen" +msgstr "" + +#: main.tscn +msgid "TK_WSCREEN" +msgstr "" + +#: main.tscn +msgid "TK_SHADERS" +msgstr "" + +#: main.tscn +msgid "TK_MODS" +msgstr "" + +#: main.tscn +msgid "TK_TATE" +msgstr "" + +#: main.tscn +msgid "TK_BORDERS" +msgstr "" + +#: main.tscn +msgid "TK_HOTKEYSOUND" +msgstr "" + +#: main.tscn +msgid "TK_BTNLAYOUT" +msgstr "" + +#: main.tscn +msgid "TK_QRESUME" +msgstr "" + +#: main.tscn +msgid "TK_REWIND" +msgstr "" + +#: main.tscn +msgid "TK_CONFIRMEXIT" +msgstr "" + +#: main.tscn +msgid "TK_CHEATS" +msgstr "" + +#: main.tscn +msgid "SAVE OR SELECT ALL?" +msgstr "" + +#: main.tscn +msgid "SYSTEMS - Emulators, Console, Computers" +msgstr "" + +#: main.tscn +msgid "RetroARCH" +msgstr "" + +#: main.tscn +msgid "RetroArch" +msgstr "" + +#: main.tscn +msgid "Dolphin" +msgstr "" + +#: main.tscn +msgid "CITRA" +msgstr "" + +#: main.tscn +msgid "PSPSSPP" +msgstr "" + +#: main.tscn +msgid "Duckstation" +msgstr "" + +#: main.tscn +msgid "DuckStation" +msgstr "" + +#: main.tscn +msgid "Melon DS" +msgstr "" + +#: main.tscn +msgid "MelonDS" +msgstr "" + +#: main.tscn +msgid "CONFIRM" +msgstr "" + +#: main.tscn +msgid "BACK" +msgstr "" + +#: main.tscn +msgid "INFO" +msgstr "" + +#: main.tscn +msgid "REKKU" +msgstr "" + +#: main.tscn +msgid "QUIT" +msgstr "" + +#: scripts/TabContainer.gd +msgid " GLOBALS " +msgstr " Globals " + +#: scripts/TabContainer.gd +msgid " SYSTEMS " +msgstr "" + +#: scripts/TabContainer.gd +msgid " TOOLS " +msgstr "" + +#: scripts/TabContainer.gd +msgid " SETTINGS " +msgstr "" + +#: scripts/TabContainer.gd +msgid " ABOUT " +msgstr "" + +#: scripts/TabContainer.gd +msgid "Hey, there's no description" +msgstr "" diff --git a/tools/configurator/translations/translation_template.pot b/tools/configurator/translations/translation_template.pot new file mode 100644 index 00000000..2c48b26f --- /dev/null +++ b/tools/configurator/translations/translation_template.pot @@ -0,0 +1,509 @@ +# LANGUAGE translation for RetroDECKConfigurator for the following files: +# res://main.tscn +# res://scripts/TabContainer.gd +# +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: RetroDECKConfigurator\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" + +#: main.tscn +msgid "GLOBALS" +msgstr "" + +#: main.tscn +msgid "ASK TO EXIT" +msgstr "" + +#: main.tscn +msgid "BORDERS" +msgstr "" + +#: main.tscn +msgid "BUTTON SWAP\n" +msgstr "" + +#: main.tscn +msgid "MODS" +msgstr "" + +#: main.tscn +msgid "QUICK RESUME" +msgstr "" + +#: main.tscn +msgid "REWIND" +msgstr "" + +#: main.tscn +msgid "TATE MODE" +msgstr "" + +#: main.tscn +msgid "SHADERS" +msgstr "" + +#: main.tscn +msgid "WIDESCREEN" +msgstr "" + +#: main.tscn +msgid "SYSTEMS" +msgstr "" + +#: main.tscn +msgid "RETROARCH" +msgstr "" + +#: main.tscn +msgid "MAME" +msgstr "" + +#: main.tscn +msgid "RUFFLE" +msgstr "" + +#: main.tscn +msgid "MELONDS" +msgstr "" + +#: main.tscn +msgid "PCSX2" +msgstr "" + +#: main.tscn +msgid "DUCKSTATION" +msgstr "" + +#: main.tscn +msgid "PPSSPP" +msgstr "" + +#: main.tscn +msgid "VITA3K" +msgstr "" + +#: main.tscn +msgid "RPCS3" +msgstr "" + +#: main.tscn +msgid "RYUJINX" +msgstr "" + +#: main.tscn +msgid "DOLPHIN" +msgstr "" + +#: main.tscn +msgid "PRIMEHACK" +msgstr "" + +#: main.tscn +msgid "CEMU" +msgstr "" + +#: main.tscn +msgid "XEMU" +msgstr "" + +#: main.tscn +msgid "ES-DE" +msgstr "" + +#: main.tscn +msgid "HELP" +msgstr "" + +#: main.tscn +msgid "LAUNCH" +msgstr "" + +#: main.tscn +msgid "RESET" +msgstr "" + +#: main.tscn +msgid "INSTALL FIRMWARE" +msgstr "" + +#: main.tscn +msgid "TOOLS" +msgstr "" + +#: main.tscn +msgid "CHECK CONNECTION" +msgstr "" + +#: main.tscn +msgid "LOGS" +msgstr "" + +#: main.tscn +msgid "RetroDECK Log" +msgstr "" + +#: main.tscn +msgid "ES_DE Log" +msgstr "" + +#: main.tscn +msgid "Retroarch" +msgstr "" + +#: main.tscn +msgid "BIOS STANDARD" +msgstr "" + +#: main.tscn +msgid "BIOS EXPERT" +msgstr "" + +#: main.tscn +msgid "BACKUP USER DATA" +msgstr "" + +#: main.tscn +msgid "TK_CONTROLS" +msgstr "" + +#: main.tscn +msgid "TK_STEAMCONTEMP" +msgstr "" + +#: main.tscn +msgid "TK_INSTALL" +msgstr "" + +#: main.tscn +msgid "TK_FILETOOLS" +msgstr "" + +#: main.tscn +msgid "TK_USBTOOL" +msgstr "" + +#: main.tscn +msgid "TK_COMPRESSGAMES" +msgstr "" + +#: main.tscn +msgid "TK_MOVEFILES" +msgstr "" + +#: main.tscn +msgid "TK_GENTOOLS" +msgstr "" + +#: main.tscn +msgid "TK_GRIDINSTALL" +msgstr "" + +#: main.tscn +msgid "TK_FAVSTEAM" +msgstr "" + +#: main.tscn +msgid "TK_SCAN" +msgstr "" + +#: main.tscn +msgid "TK_SCUMMVMSCAN" +msgstr "" + +#: main.tscn +msgid "TK_MULTIFILE" +msgstr "" + +#: main.tscn +msgid "SETTINGS" +msgstr "" + +#: main.tscn +msgid "SYSTEM SETTINGS" +msgstr "" + +#: main.tscn +msgid "SOUND EFFECTS" +msgstr "" + +#: main.tscn +msgid "AUTO UPDATES" +msgstr "" + +#: main.tscn +msgid "CHOOSE FONT" +msgstr "" + +#: main.tscn +msgid "Default" +msgstr "" + +#: main.tscn +msgid "Modern" +msgstr "" + +#: main.tscn +msgid "OpenDyslexic3" +msgstr "" + +#: main.tscn +msgid "DEFAULT LANGUAGE" +msgstr "" + +#: main.tscn +msgid "RESET RETRODECK" +msgstr "" + +#: main.tscn +msgid "RESET ALL EMULATORS" +msgstr "" + +#: main.tscn +msgid "ACHIEVEMENTS" +msgstr "" + +#: main.tscn +msgid "RETRO ACHIEVEMENTS" +msgstr "" + +#: main.tscn +msgid "RETRO ACHIEVMENTS USERNAME" +msgstr "" + +#: main.tscn +msgid "username" +msgstr "" + +#: main.tscn +msgid "RETRO ACHIEVMENTS PASSWORD" +msgstr "" + +#: main.tscn +msgid "password" +msgstr "" + +#: main.tscn +msgid "LOGIN" +msgstr "" + +#: main.tscn +msgid "RETRO ACHIEVEMENTS HARDCORE" +msgstr "" + +#: main.tscn +msgid "NETPLAY" +msgstr "" + +#: main.tscn +msgid "TK_NETPLAY" +msgstr "" + +#: main.tscn +msgid "TK_NETPLAYID" +msgstr "" + +#: main.tscn +msgid "RetroDECK" +msgstr "" + +#: main.tscn +msgid "TK_NETPLAYADDRESS" +msgstr "" + +#: main.tscn +msgid "127.0.0.1" +msgstr "" + +#: main.tscn +msgid "TK_NETPLAYCONNECT" +msgstr "" + +#: main.tscn +msgid "FUTURE FEATURES" +msgstr "" + +#: main.tscn +msgid "TK_MULTIUSR" +msgstr "" + +#: main.tscn +msgid "TK_CUSTOMUSR" +msgstr "" + +#: main.tscn +msgid "TK_OFF" +msgstr "" + +#: main.tscn +msgid "TK_STEAMUSR" +msgstr "" + +#: main.tscn +msgid "TK_SAVESSYNC" +msgstr "" + +#: main.tscn +msgid "TK_FTPBTN" +msgstr "" + +#: main.tscn +msgid "TK_MUSIC" +msgstr "" + +#: main.tscn +msgid "TK_EASTEREGGS" +msgstr "" + +#: main.tscn +msgid "ABOUT" +msgstr "" + +#: main.tscn +msgid "ABOUT RETRODECK" +msgstr "" + +#: main.tscn +msgid "WIP" +msgstr "" + +#: main.tscn +msgid "DECORATIONS - Borders, Widescreen" +msgstr "" + +#: main.tscn +msgid "TK_WSCREEN" +msgstr "" + +#: main.tscn +msgid "TK_SHADERS" +msgstr "" + +#: main.tscn +msgid "TK_MODS" +msgstr "" + +#: main.tscn +msgid "TK_TATE" +msgstr "" + +#: main.tscn +msgid "TK_BORDERS" +msgstr "" + +#: main.tscn +msgid "TK_HOTKEYSOUND" +msgstr "" + +#: main.tscn +msgid "TK_BTNLAYOUT" +msgstr "" + +#: main.tscn +msgid "TK_QRESUME" +msgstr "" + +#: main.tscn +msgid "TK_REWIND" +msgstr "" + +#: main.tscn +msgid "TK_CONFIRMEXIT" +msgstr "" + +#: main.tscn +msgid "TK_CHEATS" +msgstr "" + +#: main.tscn +msgid "SAVE OR SELECT ALL?" +msgstr "" + +#: main.tscn +msgid "SYSTEMS - Emulators, Console, Computers" +msgstr "" + +#: main.tscn +msgid "RetroARCH" +msgstr "" + +#: main.tscn +msgid "RetroArch" +msgstr "" + +#: main.tscn +msgid "Dolphin" +msgstr "" + +#: main.tscn +msgid "CITRA" +msgstr "" + +#: main.tscn +msgid "PSPSSPP" +msgstr "" + +#: main.tscn +msgid "Duckstation" +msgstr "" + +#: main.tscn +msgid "DuckStation" +msgstr "" + +#: main.tscn +msgid "Melon DS" +msgstr "" + +#: main.tscn +msgid "MelonDS" +msgstr "" + +#: main.tscn +msgid "CONFIRM" +msgstr "" + +#: main.tscn +msgid "BACK" +msgstr "" + +#: main.tscn +msgid "INFO" +msgstr "" + +#: main.tscn +msgid "REKKU" +msgstr "" + +#: main.tscn +msgid "QUIT" +msgstr "" + +#: scripts/TabContainer.gd +msgid " GLOBALS " +msgstr "" + +#: scripts/TabContainer.gd +msgid " SYSTEMS " +msgstr "" + +#: scripts/TabContainer.gd +msgid " TOOLS " +msgstr "" + +#: scripts/TabContainer.gd +msgid " SETTINGS " +msgstr "" + +#: scripts/TabContainer.gd +msgid " ABOUT " +msgstr "" + +#: scripts/TabContainer.gd +msgid "Hey, there's no description" +msgstr "" diff --git a/tools/retrodeck_function_wrapper.sh b/tools/retrodeck_function_wrapper.sh old mode 100644 new mode 100755